@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	text-decoration: none;
	color: rgb(var(--white));
}
body{
	font-family: var(--secondary-font);
}
:root {
	--primary-font: "Poppins", sans-serif;
	--secondary-font: "Inter", sans-serif;
	--navy-blue: 0, 55, 131;
	--red: 239, 51, 64;
	--light-gray: 240, 244, 248;
	--white: 255, 255, 255;
    /* Typography Sizes - Mobile First (Base) */
    --button-font: 12px;
    --fs-card-heading: 50px;
    --fs-hero-title: 25px;
    --fs-section-title: 27px;
    --fs-product-title: 20px;
    --fs-subheading: 18px;
    --fs-body: 15px;
    --fs-label: 14px;
    --fs-button: 15px;
	--section-pad-top: 60px;
    --section-pad-bottom: 60px;

}
/* Tablet (768px and up) */
@media (min-width: 768px) {
    :root {
        --button-font: 16px;
        --fs-card-heading: 60px;
        --fs-hero-title: 48px;
        --fs-section-title: 40px;
        --fs-product-title: 24px;
        --fs-subheading: 20px;
        --fs-body: 17px;

        --section-pad-top: 60px;
        --section-pad-bottom: 60px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    :root {
        --button-font: 16px;
        --fs-card-heading: 80px;
        --fs-hero-title: 50px;
        --fs-section-title: 48px;
        --fs-product-title: 28px;
        --fs-subheading: 22px;
        --fs-body: 20px;

        --section-pad-top: 60px;
        --section-pad-bottom: 60px;

    }

    p {
        font-size: var(--fs-body);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 65px;
    }

    h2 {
        font-size: 50px;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: var(--fs-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.heading{
	font-family: var(--primary-font);
}

/* nabvar */
.navbar {
    padding: 20px 0;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar-brand img {
    max-width: 180px;
    border-radius: 10px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.navbar-nav .mega-menu-link li {
    margin: 0 15px;
}

#menu-primary-menu li a {
    text-decoration: none !important;
    color: #eeefef !important;
    padding: 0px 15px !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    background-color: rgb(var(--navy-blue));
    color: white;
    font-size: 14px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
    border-left: 6px solid rgb(var(--red));
    background-color: white;
    color: rgb(var(--navy-blue));
}

.offcanvas {
    background: #0b1d2d !important;
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    background-color: transparent !important;
}
.quote-btn{
    background: rgb(var(--navy-blue));
    color: rgb(var(--white));
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: .4s;
	margin-left: 20px;
}
.quote-btn a{
	margin-right: 10px;
    transition: .4s;
}
.quote-btn:hover a{
    color: rgb(var(--white));
}
.quote-btn:hover {
    background: rgb(var(--red));
    color: rgb(var(--white));
}
/* mobile drawer */
#mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}	
	.mobile-drawer-menu-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mobile-drawer-menu-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #222;
}
	
   .mobile-drawer-menu-wrapper ul.mega-menu {
        display: block !important;
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

	#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background-color: transparent;
    padding: 0px;
}
/* hero banner*/
.hero-section {
    background: url(../twentythirteen/images/banner.webp);
	background-position: center;
    background-size: cover;
    padding: 60px 0 0;
}
.red-text{
	color: rgb(var(--red));
}
.blue-text{
	color: rgb(var(--navy-blue));
}
.review-images img {
    object-fit: cover;
    max-width: 120px;
}
.first-btn{
	margin-left: 0;
}
.line{
    position: relative;
    width: 70px;
    height: 4px;
    background: rgb(var(--red));
	margin: 15px 0;
}

.line::after{
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 15px;
    height: 4px;
    background: rgb(var(--navy-blue));
}
.outline {
    background: transparent;
	color: rgb(var(--navy-blue));
    border: 2px solid rgb(var(--navy-blue));
}
.outline a{
	color: rgb(var(--navy-blue));
}
.review-images{
	padding: 31px 0;
}
/* product section */

.product-range-section{
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
    background: rgb(var(--white));
}

.section-tag{
    display:inline-block;
    font-family:var(--primary-font);
    font-size:13px;
    font-weight:700;
    color:rgb(var(--red));
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:10px;
}

.section-title{
    font-family:var(--primary-font);
    font-size:var(--fs-section-title);
    font-weight:700;
    color:rgb(var(--navy-blue));
    line-height:1.2;
}

.btn-products{
    border:2px solid rgba(var(--navy-blue),.2);
    color:rgb(var(--navy-blue));
    background:#fff;
    border-radius:12px;
    padding:12px 22px;
    font-weight:600;
    transition:.3s;
}

.btn-products:hover{
    background:rgb(var(--navy-blue));
    color:#fff;
}

.product-card{
    background:rgb(var(--white));
    border:1px solid rgba(var(--navy-blue),0.08);
    border-radius:18px;
    padding:20px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(var(--navy-blue),0.08);
}

.product-card:hover .product-icon i{
    color: rgb(var(--red));
}

.product-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
	border: 1px solid rgb(0 55 131 / 15%);
}

.product-icon i{
    color:rgb(var(--navy-blue));
    font-size:26px;
}

.product-card h3{
    font-family:var(--primary-font);
    font-size: var(--fs-body);
    font-weight:600;
    color:rgb(var(--navy-blue));
    min-height:52px;
    margin-bottom:15px;
}

.product-image{
    height:120px;
    width:auto;
    object-fit:contain;
    margin-bottom:15px;
}
.para-style{
    font-size:14px;
    color:#6c757d;
    line-height:1.7;
    margin-bottom:20px;
}
.card-link{
    color:rgb(var(--navy-blue));
    font-weight:600;
    text-decoration:none;
}
.card-link:hover{
    color:rgb(var(--red));
}
/* service manufacturing */
.manufacturing-section{
    background: rgb(var(--navy-blue));
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}
.manufacturing-title{
    /* font-family: var(--primary-font); */
    font-size: var(--fs-product-title);
    font-weight: 700;
    color: rgb(var(--white));
    margin-bottom: 15px;
}
.manufacturing-title span{
    color: rgb(var(--red));
}
.manufacturing-text{
    font-family: var(--secondary-font);
    font-size: var(--fs-body);
    color: rgba(var(--white),.75);
    margin-bottom: 0;
}
.feature-box h6{
    font-family: var(--primary-font);
    font-size: var(--fs-label);
    font-weight: 600;
    color: rgb(var(--white));
    line-height: 1.6;
    margin: 0;
}
.feature-box img{
	width: 50px;
    margin-bottom: 10px;
}
/* why us */
.facility-section{
    padding: var(--section-pad-top) 0;
    background:#fff;
}

.section-tag{
    font-size:14px;
    font-weight:700;
    color:rgb(var(--navy-blue));
    text-transform:uppercase;
}
.feature-item{
    position:relative;
}

.feature-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:15%;
    width:1px;
    height:70%;
    background:rgba(var(--navy-blue),0.08);
}

.usp-box{
    text-align:center;
    padding:10px;
}

.usp-box svg{
    width:60px;
    height:60px;
    margin-bottom:15px;
}

.usp-box h6{
    font-family:var(--primary-font);
    font-size:var(--fs-label);
    color:rgb(var(--navy-blue));
    line-height:1.6;
    font-weight:600;
    margin:0;
}

/* Content */

.facility-title{
    font-family:var(--primary-font);
    font-size:var(--fs-product-title);
    /* color:rgb(var(--navy-blue)); */
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.facility-desc{
    font-size:var(--fs-body);
    color:#667085;
    line-height:1.8;
    margin-bottom:30px;
}

.btn-facility{
    display:inline-flex;
    align-items:center;
    background:rgb(var(--red));
    color:rgb(var(--white));
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-size:var(--fs-button);
    font-weight:600;
    transition:.3s;
}

.btn-facility:hover{
    background:rgb(var(--navy-blue));
    transform:translateY(-3px);
}

/* Images */

.facility-main{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.facility-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.facility-main::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(195, 232, 244, 0.3)
    );
    transform: rotate(-45deg);
    transition: 0.8s ease;
    opacity: 0;
    z-index: 2;
}

.facility-main:hover::before{
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.facility-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.facility-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.facility-card span{
    position:absolute;
    bottom:0px;
    left:0;
    width:100%;
    text-align:center;
    background:rgba(255,255,255,.9);
    padding:8px;
    font-size:var(--fs-label);
    font-weight:600;
}
/* quality section */
.quality-assurance-section{
    padding: 0;
    background:#f8fbff url('images/laboratory.webp') no-repeat right center;
    background-size: contain;
}
.quality-wrapper{
    overflow:hidden;
}
.quality-certifications{
    flex:1.3;
    padding:40px;
    border-right:1px solid rgba(var(--navy-blue),0.08);
}
.quality-label{
    font-family:var(--primary-font);
    font-size:var(--fs-label);
    font-weight:700;
    color:rgb(var(--navy-blue));
    margin-bottom:25px;
    text-transform:uppercase;
}
.quality-label span{
    color:rgb(var(--red));
}
.certification-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}
.cert-card{
    background:#fff;
    border-radius:14px;
    padding:18px 10px;
    text-align:center;
    border:1px solid rgba(var(--navy-blue),0.08);
    transition:.3s;
}
.cert-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(var(--navy-blue),0.08);
}
.cert-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:12px;
}
.cert-card h6{
    font-family:var(--primary-font);
    font-size:12px;
    font-weight:700;
    color:rgb(var(--navy-blue));
    line-height:1.5;
    margin:0;
}
.quality-content{
    flex:1;
    padding:40px;
}
.quality-content h3{
    font-family:var(--primary-font);
    font-size:var(--fs-product-title);
    font-weight:700;
    color:rgb(var(--navy-blue));
    line-height:1.4;
    margin-bottom:15px;
}
.quality-content p{
    font-size:var(--fs-body);
    color:#667085;
    line-height:1.8;
    margin-bottom:0;
}
.quality-image{
	max-width: 32%;
}
.quality-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* contact section */
.partner-section{
    padding: var(--section-pad-top) 0;
    background: rgb(var(--navy-blue));
    position: relative;
    overflow: hidden;
}
.partner-title{
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    color: rgb(var(--white));
    font-weight: 700;
    line-height: 1.2;
}
.partner-title span{
    color: rgb(var(--red));
}
.partner-desc{
    font-size: var(--fs-body);
    color: rgba(var(--white), .8);
    margin-top: 15px;
}
.partner-feature{
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(var(--white), .12);
}
.partner-feature svg{
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}
.partner-feature h6{
    color: rgb(var(--white));
    font-size: var(--fs-label);
    line-height: 1.6;
    margin: 0;
}
/* Form Card */
.quote-form-box{
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}
.quote-form-box h3{
    text-align: center;
    color: rgb(var(--navy-blue));
    font-size: var(--fs-product-title);
    font-weight: 700;
    margin-bottom: 25px;
}
.quote-form-box h3 span{
    color: rgb(var(--red));
}
/* CF7 Styling */
.cf7-quote-form .form-control,
.cf7-quote-form input,
.cf7-quote-form select,
.cf7-quote-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px 15px;
    margin-bottom:15px;
    font-size:14px;
}
.cf7-quote-form textarea{
    height:120px;
    resize:none;
}
.cf7-quote-form input[type="submit"]{
    background: rgb(var(--red));
    color:rgb(var(--white));
    border:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}
.cf7-quote-form input[type="submit"]:hover{
    transform:translateY(-2px);
}
.partner-feature:last-child{
    border-right:none;
}
/* footer section */
.footer-section {
    background: rgb(var(--white));
    padding: 70px 0 30px;
    color: rgb(var(--navy-blue));
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.envelope {
    overflow-wrap: anywhere;
}
.premium-agency-attribution-anchor {
    text-decoration: none;
    color: rgb(var(--navy-blue));
}
.premium-agency-attribution-anchor:hover {
    text-decoration: underline;
}
.footer-logo {
    max-width: 220px;
    margin-bottom: 30px;
}
.footer-about{
        border-right: 1px solid rgba(var(--navy-blue), .13);
}
.footer-about p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 360px;
}
.footer-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 25px;
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}
.footer-links a,
.footer-contact a {
    color: rgb(var(--navy-blue));
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: #d9d9d9;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgb(var(--navy-blue));
}
.footer-contact i {
    margin-top: 5px;
    font-size: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(var(--navy-blue),.13);
    margin-top: 50px;
    padding-top: 30px;
}
.footer-bottom p {
    margin: 0;
    font-size: var(--fs-label);
    color: rgb(var(--navy-blue));
}
.icons-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.icons-contain{
    color: rgb(var(--navy-blue));
    padding: 10px 13px;
    border: 1px solid rgb(var(--navy-blue));
    border-radius: 50px;
    background-color: rgb(var(--light-gray));
}

/* breadcrumb */
.breadcrumb-section{
    padding: 100px 0 80px;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#212121c9, #0c152970), url(images/breadcrumb.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
}
.breadcrumb-content h3{
    font-size: var(--fs-product-title);
    font-weight: 600;
    color: rgb(var(--white));
    margin-bottom: 5px;
}
.breadcrumb-content ul.breadcumb li {
    display: inline-block;
    vertical-align: middle;
}
.breadcrumb-content ul.breadcumb span.sep {
    margin-left: 10px;
    margin-right: 10px;
    color: #fe8221;
}
.breadcumb li a {
    color: #fe8221;
    font-size: 18px;
}
.breadcrumb-content ul.breadcumb li{
    color: rgb(var(--white));
}

/* innerpages */

/* about */
.section-pad{
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
}
.hightlight-bold{
    font-size: 52px;
    font-weight: 600;
}
.single-features-style-two{
    border: 1px solid #E8E8E8;
    min-height: 306px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
}

/* product list  */
.therapi-section{
	padding: var(--section-pad-top) 0 var(--section-pad-bottom);
}
.product-list-section {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: rgb(var(--light-gray));
}

.product-list-section > h2:first-child {
    margin-bottom: 10px;
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    font-weight: 700;
    line-height: 1.2;
}

.product-list-section > h2:nth-child(2) {
    margin-bottom: 30px;
    color: #555;
    font-family: var(--secondary-font);
    font-size: var(--fs-subheading);
    font-weight: 500;
    line-height: 1.5;
}
.product-list-table-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgb(var(--white));
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 55, 131, 0.08);
}

#example {
    width: 100% !important;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(var(--white));
    font-family: var(--secondary-font);
}

#example thead {
    background: rgb(var(--navy-blue));
}

#example thead th {
    padding: 18px 20px;
    color: rgb(var(--white));
    background: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: var(--fs-label);
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    vertical-align: middle;
    border: none;
}

#example thead th:first-child {
    width: 80px;
    text-align: center;
}

#example thead th:nth-child(2) {
    width: 32%;
}

#example thead th:nth-child(3) {
    width: auto;
}

#example tbody td {
    padding: 18px 20px;
    color: #444;
    background: rgb(var(--white));
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    font-weight: 400;
    line-height: 1.65;
    vertical-align: top;
    border-bottom: 1px solid #e7ebef;
}

#example tbody td:first-child {
    width: 80px;
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

#example tbody td:nth-child(2) {
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: var(--fs-label);
    font-weight: 600;
    line-height: 1.5;
}

#example tbody td:nth-child(3) {
    color: #555;
    line-height: 1.7;
}

#example tbody tr {
    transition: background-color 0.25s ease, transform 0.25s ease;
}

#example tbody tr:hover td {
    background: rgba(var(--navy-blue), 0.025);
}

#example tbody tr:hover td:nth-child(2) {
    color: rgb(var(--red));
}
#example tbody tr:last-child td {
    border-bottom: none;
}
#example thead tr th:first-child {
    border-top-left-radius: 16px;
}

#example thead tr th:last-child {
    border-top-right-radius: 16px;
}

.product-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-table-responsive::-webkit-scrollbar {
    height: 6px;
}

.product-table-responsive::-webkit-scrollbar-track {
    background: #eef1f4;
}

.product-table-responsive::-webkit-scrollbar-thumb {
    background: rgb(var(--navy-blue));
    border-radius: 20px;
}

.product-table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--red));
}

/* blogs page */

.blog-page-section {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: rgb(var(--light-gray));
}

.blog-page-header {
    max-width: 850px;
    margin: 0 auto 50px;
}

.blog-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: rgb(var(--red));
    font-family: var(--primary-font);
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-page-title {
    margin: 0 0 15px;
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    font-weight: 700;
    line-height: 1.2;
}

.blog-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-family: var(--secondary-font);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    background: rgb(var(--white));
    border-radius: 16px;
    border: 1px solid rgba(var(--navy-blue), 0.06);
    box-shadow: 0 8px 30px rgba(0, 55, 131, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 55, 131, 0.13);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9edf1;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(var(--navy-blue), 0.08);
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: var(--fs-label);
}
.blog-card-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-height: 270px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-date {
    color: #777;
    font-family: var(--secondary-font);
    font-size: 12px;
}

.blog-category {
    position: relative;
    padding-left: 10px;
    color: rgb(var(--red));
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
}

.blog-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: rgb(var(--red));
    border-radius: 50%;
    transform: translateY(-50%);
}

.blog-card-title {
    margin: 0 0 12px;
    font-family: var(--primary-font);
    font-size: var(--fs-product-title);
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a {
    color: rgb(var(--navy-blue));
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title a {
    color: rgb(var(--red));
}

.blog-excerpt {
    margin-bottom: 20px;
    color: #666;
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: rgb(var(--red));
    font-size: var(--fs-label);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.blog-read-more span {
    font-size: 18px;
    line-height: 1;
}

.blog-read-more:hover {
    gap: 13px;
    color: rgb(var(--navy-blue));
}

.blog-contact-sidebar {
    position: sticky;
    top: 30px;
}

.blog-contact-box {
    padding: 30px 25px;
    background: rgb(var(--navy-blue));
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 55, 131, 0.15);
}

.contact-small-title {
    display: block;
    margin-bottom: 8px;
    color: rgb(var(--red));
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.blog-contact-box h2 {
    margin: 0 0 12px;
    color: rgb(var(--white));
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-contact-box > p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--secondary-font);
    font-size: 14px;
    line-height: 1.7;
}

.blog-contact-form .wpcf7 {
    width: 100%;
}

.blog-contact-form p {
    margin: 0;
}

.blog-contact-form label {
    display: block;
    margin-bottom: 5px;
    color: rgb(var(--white));
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 500;
}

.blog-contact-form input:not([type="submit"]),
.blog-contact-form textarea,
.blog-contact-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    color: #333;
    background: rgb(var(--white));
    border: 1px solid transparent;
    border-radius: 7px;
    outline: none;
    font-family: var(--secondary-font);
    font-size: 13px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.blog-contact-form input:not([type="submit"]):focus,
.blog-contact-form textarea:focus,
.blog-contact-form select:focus {
    border-color: rgb(var(--red));
    box-shadow: 0 0 0 3px rgba(var(--red), 0.12);
}


.blog-contact-form input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    color: rgb(var(--white));
    background: rgb(var(--red));
    border: none;
    border-radius: 7px;
    font-size: var(--button-font);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.blog-contact-form input[type="submit"]:hover {
    background: #d92735;
    transform: translateY(-2px);
}

.blog-contact-form .wpcf7-not-valid {
    border-color: rgb(var(--red)) !important;
}

.blog-contact-form .wpcf7-not-valid-tip {
    margin-top: -10px;
    margin-bottom: 10px;
    color: #ffb3b8;
    font-size: 11px;
}

.blog-contact-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px !important;
    color: rgb(var(--white));
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    font-size: 12px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    color: rgb(var(--navy-blue));
    background: rgb(var(--white));
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    color: rgb(var(--white));
    background: rgb(var(--red));
}

.no-posts {
    padding: 60px 30px;
    text-align: center;
    background: rgb(var(--white));
    border-radius: 16px;
}

.no-posts h2 {
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
}

.no-posts p {
    color: #666;
}
/* counter */
.counter::after{
    content: "+";
}
/* quality policy page */
.quality-policy-section{
	padding-top: var(--section-pad-top);
/*     padding-bottom: var(--section-pad-bottom); */
}
.quality-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.quality-item i{
    color: rgb(var(--red));
    font-size: 20px;
    margin-top: 4px;
}

.quality-item span{
    font-size: var(--fs-body);
    color: #333;
    line-height: 1.7;
}

/* third party */
.tp-hero, .tp-intro, .tp-explained, .tp-services, .tp-why, .tp-selection, .tp-products, .tp-faq, .tp-cta {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
}
.tp-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(var(--red));
}
.tp-section-heading {
    margin-bottom: 30px;
}
.tp-section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}
.tp-section-heading h2,.tp-why h2 {
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--navy-blue));
    margin-bottom: 20px;
}
.tp-section-heading h2 span, .tp-intro h2 span, .tp-why h2 span, .tp-hero h1 span, .tp-cta h2 span {
    color: rgb(var(--red));
}
.tp-section-heading p {
    color: #626a73;
    max-width: 750px;
}
.tp-hero {
    background: rgb(var(--light-gray));
    position: relative;
    overflow: hidden;
}
.tp-hero h1 {
    font-family: var(--primary-font);
    font-size: var(--fs-hero-title);
    line-height: 1.15;
    font-weight: 700;
    color: rgb(var(--navy-blue));
    margin-bottom: 25px;
}
.tp-hero-text {
    max-width: 680px;
    color: #555;
}
.tp-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}
.tp-btn, .tp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-size: var(--button-font);
    font-weight: 600;
    transition: all .3s ease;
}
.tp-btn {
    background: rgb(var(--red));
    color: #fff;
}
.tp-btn:hover {
    background: rgb(var(--navy-blue));
    color: #fff;
    transform: translateY(-2px);
}
.tp-btn-outline {
    border: 1px solid rgb(var(--navy-blue));
    color: rgb(var(--navy-blue));
}
.tp-btn-outline:hover {
    background: rgb(var(--navy-blue));
    color: #fff;
}.tp-hero-image {
    position: relative;
    padding: 15px;
}
.tp-hero-image::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: rgb(var(--red));
    opacity: .1;
}
.tp-hero-image img {
    position: relative;
    width: 100%;
    display: block;
    border-radius: 25px;
    object-fit: cover;
}
.tp-intro {
    background: #fff;
}
.tp-section-image img {
    width: 100%;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}
.tp-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    margin-top: 25px;
    border-left: 4px solid rgb(var(--red));
    background: rgb(var(--light-gray));
    border-radius: 8px;
}
.tp-highlight strong {
    color: rgb(var(--navy-blue));
    font-family: var(--primary-font);
    font-size: 24px;
}
.tp-highlight span {
    color: #555;
}
.tp-explained {
    background: rgb(var(--light-gray));
}
.tp-info-card {
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border-radius: 18px;
    border-bottom: 4px solid transparent;
    transition: all .3s ease;
}
.tp-info-card:hover {
    transform: translateY(-7px);
    border-bottom-color: rgb(var(--red));
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}
.tp-card-number {
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    color: rgba(var(--red), .18);
    line-height: 1;
    margin-bottom: 18px;
}
.tp-info-card h3, .tp-service-card h3, .tp-feature h3, .tp-step h3 {
    font-family: var(--primary-font);
    font-size: var(--fs-product-title);
    font-weight: 700;
    color: rgb(var(--navy-blue));
    margin-bottom: 12px;
}
.tp-info-card p, .tp-service-card p, .tp-feature p, .tp-step p {
    color: #626a73;
    font-size: var(--fs-body);
}
.tp-services {
    background: #fff;
}
.tp-service-card {
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #e4e9ef;
    border-radius: 20px;
    transition: all .3s ease;
}
.tp-service-card:hover, .tp-service-card.featured {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}
.tp-service-card.featured {
    border-top: 4px solid rgb(var(--red));
}
.tp-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: rgb(var(--navy-blue));
    color: #fff;
    font-weight: 700;
}
.tp-service-card ul {
padding: 0;
    margin: 20px 0 0;
    list-style: none;
}
.tp-service-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    font-family: var(--secondary-font);
}
.tp-service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(var(--red));
    font-weight: 700;
}
.tp-why {
    background: rgb(var(--light-gray));
}
.tp-feature {
    height: 100%;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    transition: all .3s ease;
}
.tp-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}
.tp-feature > span {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(var(--red));
}
.tp-selection {
    background: #fff;
}
.tp-steps {
    max-width: 950px;
    margin: 45px auto 0;
}
.tp-step {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #e2e6ea;
}
.tp-step > span {
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(var(--navy-blue));
    color: #fff;
    font-weight: 700;
}
.tp-step h3 {
    margin-top: 5px;
}
.tp-products {
    background: rgb(var(--light-gray));
}
.tp-product-card {
    position: relative;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}
.tp-product-card img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}
.tp-product-card:hover img {
    transform: scale(1.06);
}
.tp-product-card figcaption {
    padding: 15px;
    text-align: center;
    font-family: var(--primary-font);
    font-size: var(--fs-label);
    font-weight: 600;
    color: rgb(var(--navy-blue));
}
/* ========================================= FAQ ========================================= */
.tp-faq {
    background: #fff;
}
.tp-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}
.tp-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid #e2e6ea;
    border-radius: 10px !important;
    overflow: hidden;
}
.tp-accordion .accordion-button {
    font-family: var(--primary-font);
    font-size: var(--fs-subheading);
    font-weight: 600;
    color: rgb(var(--navy-blue));
    background: #fff;
    box-shadow: none;
}
.tp-accordion .accordion-button:not(.collapsed) {
    color: rgb(var(--red));
    background: rgb(var(--light-gray));
}
.tp-accordion .accordion-body {
    color: #626a73;
    font-size: var(--fs-body);
    line-height: 1.8;
}
.tp-cta {
    background: rgb(var(--navy-blue));
}
.tp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.tp-cta h2 {
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}
.tp-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
}
.tp-cta .tp-eyebrow {
    color: #fff;
}
.tp-btn-light {
    flex-shrink: 0;
    background: rgb(var(--red));
    color: #fff;
}
.tp-btn-light:hover {
    background: #fff;
    color: rgb(var(--navy-blue));
}

/* contact page */
.contact-hero {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: rgb(var(--light-gray));
    text-align: center;
}

.contact-hero-content {
    max-width: 850px;
    margin: auto;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(var(--red));
}

.contact-hero h1 {
    margin-bottom: 20px;
    font-family: var(--primary-font);
    font-size: var(--fs-hero-title);
    line-height: 1.15;
    font-weight: 700;
    color: rgb(var(--navy-blue));
}

.contact-hero p {
    max-width: 750px;
    margin: auto;
    color: #626a73;
}

.contact-main {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: #fff;
}

.contact-info-wrapper {
    height: 100%;
}

.contact-info-wrapper h2,
.contact-form-heading h2,
.contact-map-heading h2 {
    margin-bottom: 18px;
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    line-height: 1.2;
    font-weight: 700;
    color: rgb(var(--navy-blue));
}

.contact-intro {
    margin-bottom: 30px;
    color: #626a73;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e8ecf0;
}

.contact-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: rgba(var(--navy-blue), .08);
    color: rgb(var(--navy-blue));

    font-size: 18px;
}

.contact-info-card h3 {
    margin: 0 0 5px;
    font-family: var(--primary-font);
    font-size: var(--fs-subheading);
    font-weight: 700;
    color: rgb(var(--navy-blue));
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    font-family: var(--secondary-font);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: #626a73;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: rgb(var(--red));
}

.contact-quick-cta {
    margin-top: 25px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgb(var(--light-gray));
    border-left: 4px solid rgb(var(--red));
}

.contact-quick-cta p {
    margin-bottom: 8px;
    color: #555;
}

.contact-quick-cta a {
    color: rgb(var(--navy-blue));
    font-weight: 700;
    text-decoration: none;
}

.contact-quick-cta a i {
    margin-left: 7px;
    color: rgb(var(--red));
}

.contact-form-wrapper {
    height: 100%;
    padding: 40px;
    border-radius: 22px;
    background: rgb(var(--light-gray));
}

.contact-form-heading {
    margin-bottom: 25px;
}

.contact-form-heading p {
    color: #626a73;
}

.oxi-contact-form form {
    margin: 0;
}

.oxi-contact-form form p {
    margin: 0 0 16px;
}

.oxi-contact-form input[type="text"],
.oxi-contact-form input[type="email"],
.oxi-contact-form input[type="tel"],
.oxi-contact-form input[type="number"],
.oxi-contact-form textarea,
.oxi-contact-form select {
    width: 100%;
    padding: 14px 17px;
    border: 1px solid #dce2e8;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #333;
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    transition: all .3s ease;
}

.oxi-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.oxi-contact-form input:focus,
.oxi-contact-form textarea:focus,
.oxi-contact-form select:focus {
    border-color: rgb(var(--navy-blue));
    box-shadow: 0 0 0 3px rgba(var(--navy-blue), .08);
}

.oxi-contact-form input::placeholder,
.oxi-contact-form textarea::placeholder {
    color: #9299a1;
}

.oxi-contact-form input[type="submit"] {
    width: auto;
    min-width: 150px;
    padding: 14px 32px;
    border: 0;
    border-radius: 50px;
    background: rgb(var(--red));
    color: #fff;
    font-family: var(--secondary-font);
    font-size: var(--button-font);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.oxi-contact-form input[type="submit"]:hover {
    background: rgb(var(--navy-blue));
    transform: translateY(-2px);
}

.oxi-contact-form .wpcf7-not-valid {
    border-color: rgb(var(--red)) !important;
}

.oxi-contact-form .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 12px;
    color: rgb(var(--red));
}

.oxi-contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;
    border-radius: 8px;
}

.contact-map-section {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: rgb(var(--light-gray));
}

.contact-map-heading {
    margin-bottom: 30px;
}

.contact-map {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.contact-cta {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: rgb(var(--navy-blue));
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-cta h2 {
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.contact-cta .contact-eyebrow {
    color: #fff;
}

.contact-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.8);
}

.contact-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.contact-btn,
.contact-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 13px 25px;
    border-radius: 50px;
    font-family: var(--secondary-font);
    font-size: var(--button-font);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.contact-btn {
    background: rgb(var(--red));
    color: #fff;
}

.contact-btn:hover {
    background: #fff;
    color: rgb(var(--navy-blue));
}

.contact-btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.contact-btn-outline:hover {
    background: #fff;
    color: rgb(var(--navy-blue));
}

/* vetinary product list page */
.product-catalog-section {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
    background: #f7f9fc;
}

.product-catalog-heading {
    max-width: 850px;
    margin: 0 auto 45px;
}

.catalog-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--secondary-font);
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgb(var(--red));
}

.product-catalog-heading h1 {
    margin: 0 0 15px;
    font-family: var(--primary-font);
    font-size: var(--fs-section-title);
    line-height: 1.2;
    font-weight: 700;
    color: rgb(var(--navy-blue));
}

.product-catalog-heading h1 span {
    color: rgb(var(--red));
}

.product-catalog-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
}

.pharma-table-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(15, 35, 65, 0.07);
    box-sizing: border-box;
}

.pharma-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.filter-heading h3 {
    margin: 0 0 4px;
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    color: rgb(var(--navy-blue));
}

.filter-heading span {
    font-family: var(--secondary-font);
    font-size: 13px;
    color: #8a96a5;
}

.pharma-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-bottom: 28px;
}

.search-group {
    position: relative;
    flex: 2 1 280px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #8b98a9;
    font-size: 20px;
    line-height: 1;
    pointer-events: none;
}

.search-group input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 45px;
    border: 1px solid #dfe6ee;
    border-radius: 10px;
    outline: none;
    background: #f8fafc;
    color: #27364a;
    font-family: var(--secondary-font);
    font-size: 14px;
    box-sizing: border-box;
    transition: all .25s ease;
}

.search-group input::placeholder {
    color: #9aa5b4;
}

.search-group input:focus {
    background: #ffffff;
    border-color: rgb(var(--navy-blue));
    box-shadow: 0 0 0 3px rgba(var(--navy-blue), .08);
}

.filter-item {
    flex: 1 1 165px;
}

.filter-item select {
    width: 100%;
    height: 50px;
    padding: 0 38px 0 15px;
    border: 1px solid #dfe6ee;
    border-radius: 10px;
    outline: none;
    background-color: #f8fafc;
    color: #334155;
    font-family: var(--secondary-font);
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .25s ease;
}

.filter-item select:focus {
    background-color: #ffffff;
    border-color: rgb(var(--navy-blue));
    box-shadow: 0 0 0 3px rgba(var(--navy-blue), .08);
}

.reset-filter-btn {
    height: 50px;
    padding: 0 20px;
    border: 1px solid #dfe6ee;
    border-radius: 10px;
    background: #ffffff;
    color: #475569;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s ease;
}

.reset-filter-btn span {
    display: inline-block;
    margin-right: 5px;
    font-size: 17px;
}

.reset-filter-btn:hover {
    background: rgb(var(--navy-blue));
    border-color: rgb(var(--navy-blue));
    color: #ffffff;
}

.table-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    margin-bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--navy-blue), .06),
        rgba(var(--red), .025)
    );
    border: 1px solid #e7edf4;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.table-label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--secondary-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: rgb(var(--red));
}

.table-title-bar h2 {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    color: rgb(var(--navy-blue));
}

.product-count {
    flex: 0 0 auto;
    min-width: 85px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5ebf2;
    text-align: center;
}

.product-count strong {
    display: block;
    font-family: var(--primary-font);
    font-size: 20px;
    line-height: 1;
    color: rgb(var(--navy-blue));
}

.product-count span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #8b96a5;
}

.pharma-table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border: 1px solid #e7edf4;
    border-radius: 0 0 14px 14px;
    -webkit-overflow-scrolling: touch;
}

.pharma-table-scroll::-webkit-scrollbar {
    height: 7px;
}

.pharma-table-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.pharma-table-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.pharma-table-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.pharma-product-table {
    width: 100%;
    min-width: 1050px;
    margin: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff;
}

.pharma-product-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 16px 17px !important;
    background: rgb(var(--navy-blue)) !important;
    color: #ffffff !important;
    border: 0 !important;
    font-family: var(--secondary-font);
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .7px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: left;
}

.pharma-product-table thead th:first-child {
    border-radius: 0 !important;
}
.pharma-product-table tbody td {
    padding: 17px !important;
    background: #ffffff;
    border: 0 !important;
    border-bottom: 1px solid #edf1f5 !important;
    color: #536174 !important;
    font-family: var(--secondary-font);
    font-size: 13px !important;
    line-height: 1.7;
    vertical-align: middle !important;
}

.pharma-product-table tbody tr:nth-child(even) td {
    background: #fbfcfe;
}

.pharma-product-table tbody tr {
    transition: all .2s ease;
}

.pharma-product-table tbody tr:hover td {
    background: rgba(var(--navy-blue), .035) !important;
}

.pharma-product-table tbody td:first-child {
    width: 65px;
    color: #8995a5 !important;
    font-weight: 600;
}

.pharma-product-table tbody td:nth-child(2) {
    min-width: 220px;
    color: rgb(var(--navy-blue)) !important;
    font-weight: 700;
    line-height: 1.5;
}

.pharma-product-table tbody td:nth-child(3) {
    min-width: 350px;
    color: #596779 !important;
}

.pharma-product-table tbody td:nth-child(4) {
    min-width: 100px;
    font-weight: 700;
    color: #334155 !important;
}

.pharma-product-table tbody td:nth-child(5) {
    min-width: 100px;
    color: #334155 !important;
    font-weight: 600;
}

.pharma-product-table tbody td:nth-child(6) {
    min-width: 90px;
    color: rgb(var(--red)) !important;
    font-weight: 700;
}

.pharma-product-table td br {
    line-height: 2;
}

.no-product-result {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #e7edf4;
    border-top: 0;
}

.no-result-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--navy-blue), .08);
    color: rgb(var(--navy-blue));
    font-size: 25px;
}

.no-product-result h4 {
    margin: 0 0 8px;
    font-family: var(--primary-font);
    color: rgb(var(--navy-blue));
}

.no-product-result p {
    margin: 0;
    color: #8a96a5;
    font-size: 14px;
}
.pharma-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0 3px;
    color: #8b96a5;
    font-family: var(--secondary-font);
    font-size: 12px;
}

/* terms & condition */
.terms-section{
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
    background: rgb(var(--light-gray));
}

.terms-header{
    max-width: 850px;
    margin: 0 auto 50px;
}

.terms-wrapper{
    display: grid;
    gap: 24px;
}

.terms-card{
    background: rgb(var(--white));
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border-left: 5px solid rgb(var(--red));
    transition: all .3s ease;
}

.terms-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.terms-card h3{
    color: rgb(var(--navy-blue));
    font-size: var(--fs-subheading);
    margin-bottom: 15px;
    font-weight: 700;
}

.terms-card p{
    margin-bottom: 0;
    color: #555;
}

/* privacy policy */
.privacy-section{
    padding: var(--section-pad-top) 0 var(--section-pad-bottom);
    background: rgb(var(--light-gray));
}

.privacy-header{
    max-width: 850px;
    margin: 0 auto 50px;
}
.privacy-wrapper{
    display: grid;
    gap: 24px;
}

.privacy-card{
    background: rgb(var(--white));
    border-radius: 18px;
    padding: 30px;
    border-right: 5px solid rgb(var(--red));
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.privacy-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.privacy-card h3{
    font-size: var(--fs-subheading);
    color: rgb(var(--navy-blue));
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-card p{
    margin-bottom: 0;
    color: #555;
}

.privacy-list{
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.privacy-list li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
}

.privacy-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(var(--navy-blue), .1);
    color: rgb(var(--navy-blue));
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 18px;
}
/* sequence */
#sequence {
    position: fixed;
    bottom: 0;
    z-index: 99999999999;
	background: #1D1D1D;
}
#sequence a {
    width: 33.3%;
    float: left;
    text-align: center;
    font-weight: bold;
    color: #fff !important;
    padding: 10px 0;
}
@media(max-width:1400px){
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link,.quote-btn a {
        font-size: 13px;
    }
}
@media(min-width:1200px){
    .privacy-wrapper{
        gap: 30px;
    }
    
    .terms-wrapper{
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
}
@media (min-width: 1024px) {

    #example thead th {
        padding: 20px 22px;
        font-size: 15px;
    }

    #example tbody td {
        padding: 20px 22px;
        font-size: 15px;
    }

}
@media(max-width:992px){
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
        color: rgb(var(--white));
    }
    .pharma-table-wrapper {
        padding: 22px;
        border-radius: 18px;
    }
    .pharma-filter-bar {
        gap: 10px;
    }
    .search-group {
        flex: 1 1 100%;
    }
    .filter-item {
        flex: 1 1 calc(33.333% - 10px);
    }
    .reset-filter-btn {
        flex: 1 1 auto;
    }
    .contact-form-wrapper {
        padding: 35px;
    }
    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .contact-cta p {
        margin-left: auto;
        margin-right: auto;
    }
    .tp-hero {
        text-align: center;
    }
    .tp-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .tp-hero-buttons {
        justify-content: center;
    }
    .tp-hero-image {
        max-width: 650px;
        margin: 0 auto;
    }
    .tp-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .tp-cta p {
        margin-left: auto;
        margin-right: auto;
    }
    .quality-item{
        text-align: left;
    }
    .quote-btn{
        margin: auto;
    }
    .feature-item::after{
        display:none;
    }
    
    .facility-title{
        margin-top:20px;
    }
    
    .facility-card img{
        height:140px;
    }
    
    .partner-feature{
        border-right:none;
        border-bottom:1px solid rgba(var(--white), .12);
    }
    
    .quote-form-box{
        padding:25px;
    }
    
    .quality-wrapper{
        flex-direction:column;
    }
    
    .quality-certifications,
    .quality-content{
        padding:30px;
        border-right:none;
    }
    
    .quality-image{
        width:100%;
        min-height:220px;
    }
    
    .certification-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
/* Large screens */
@media (min-width:992px){
    
    .row.g-4 > .col-lg{
        flex:1 0 0;
    }
    
    .product-card{
        padding:25px 18px;
    }
}
@media (max-width:767px){
    .product-catalog-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .product-catalog-heading {
        margin-bottom: 30px;
    }
    .product-catalog-heading h1 {
        font-size: 30px;
    }
    .pharma-table-wrapper {
        padding: 15px;
        border-radius: 15px;
    }
    .pharma-filter-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 18px;
    }
    .filter-heading h3 {
        font-size: 19px;
    }
    .reset-filter-btn {
        width: 100%;
    }
    .filter-item {
        flex: 1 1 100%;
    }
    .table-title-bar {
        align-items: flex-start;
        flex-direction: column;
        padding: 17px;
    }
    .table-title-bar h2 {
        font-size: 15px;
    }
    .product-count {
        width: 100%;
        box-sizing: border-box;
    }
    .pharma-table-scroll {
        border-radius: 0 0 12px 12px;
    }
    .pharma-product-table {
        min-width: 950px;
    }
    .pharma-product-table thead th {
        padding: 14px !important;
        font-size: 11px !important;
    }
    .pharma-product-table tbody td {
        padding: 14px !important;
        font-size: 12px !important;
    }
    .navbar-brand img {
            max-width: 106px;
            border-radius: 10px;
        }
    .footer-bottom p {
    font-size: 14px;
    }
    .contact-hero,
    .contact-main,
    .contact-map-section,
    .contact-cta {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-hero h1 {
        font-size: 34px;
    }
    .contact-info-wrapper h2,
    .contact-form-heading h2,
    .contact-map-heading h2,
    .contact-cta h2 {
        font-size: 30px;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .contact-map {
        height: 350px;
        border-radius: 15px;
    }
    .contact-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    .tp-hero, .tp-intro, .tp-explained, .tp-services, .tp-why, .tp-selection, .tp-products, .tp-faq, .tp-cta {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .tp-hero h1 {
        font-size: 34px;
    }
    .tp-section-heading h2, .tp-intro h2, .tp-why h2, .tp-cta h2 {
        font-size: 30px;
    }
    .tp-hero-buttons {
        flex-direction: column;
    }
    .tp-btn, .tp-btn-outline {
        width: 100%;
    }
    .tp-highlight {
        align-items: flex-start;
        flex-direction: column;
    }
    .tp-step {
        gap: 15px;
    }
    .tp-step > span {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
    }
    .tp-product-card img {
        height: 160px;
    }
    .tp-product-card figcaption {
        font-size: 13px;
        padding: 12px 7px;
    }
    .product-card{
        padding:15px;
    }

    .product-card h3{
        font-size:16px;
        min-height:auto;
    }

    .product-image{
        height:90px;
    }

    .product-card p{
        font-size:13px;
    }
    .product-list-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .product-list-section > h2:first-child {
        margin-bottom: 8px;
        font-size: var(--fs-section-title);
    }

    .product-list-section > h2:nth-child(2) {
        margin-bottom: 20px;
        font-size: var(--fs-subheading);
    }

    .product-list-table-wrapper {
        border-radius: 10px;
    }

    #example {
        min-width: 760px;
    }

    #example thead th {
        padding: 14px 15px;
        font-size: 12px;
    }

    #example tbody td {
        padding: 14px 15px;
        font-size: 12px;
        line-height: 1.6;
    }

    #example thead th:first-child,
    #example tbody td:first-child {
        width: 55px;
    }

    #example thead th:nth-child(2) {
        width: 250px;
    }

    #example thead th:nth-child(3) {
        width: 450px;
    }

    #example thead tr th:first-child {
        border-top-left-radius: 10px;
    }

    #example thead tr th:last-child {
        border-top-right-radius: 10px;
    }
}
@media(min-width:768px){
.terms-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
    .privacy-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:576px){
    .quality-assurance-section{
        background-image: none;
    }
    .footer-about {
        border-right: none; 
    }
    .certification-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }
    
    .cert-card{
        padding:15px 8px;
    }
    
    .cert-card img{
        width:50px;
        height:50px;
    }
    
    .cert-card h6{
        font-size:11px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {

    .product-list-table-wrapper {
        border-radius: 12px;
    }

    #example thead th {
        padding: 16px 17px;
        font-size: 14px;
    }

    #example tbody td {
        padding: 16px 17px;
        font-size: 14px;
        line-height: 1.6;
    }

    #example {
        min-width: 850px;
    }

    #example thead th:first-child {
        width: 65px;
    }

    #example thead th:nth-child(2) {
        width: 280px;
    }

}
@media (max-width: 480px) {
    .tp-hero h1 {
        font-size: 30px;
    }
    .tp-section-heading h2, .tp-intro h2, .tp-why h2, .tp-cta h2 {
        font-size: 27px;
    }
    .tp-info-card, .tp-service-card {
        padding: 25px 20px;
    }
    .tp-product-card img {
        height: 135px;
    }
    .review-images img{
		max-width: 80px;
	}
    .contact-hero h1 {
        font-size: 30px;
    }
    .contact-info-wrapper h2,
    .contact-form-heading h2,
    .contact-map-heading h2,
    .contact-cta h2 {
        font-size: 27px;
    }
    .contact-info-card {
        gap: 12px;
    }
    .contact-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }
    .contact-map {
        height: 300px;
    }
    .pharma-table-wrapper {
        padding: 12px;
    }
    .product-catalog-heading h1 {
        font-size: 27px;
    }
    .catalog-eyebrow {
        font-size: 11px;
    }
    .product-catalog-heading p {
        font-size: 14px;
        line-height: 1.7;
    }
    .table-title-bar {
        padding: 15px;
    }
}