@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* Colors */
:root {
 
  --color-primary: #a1cd36;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
    font-family: "Noto Sans", sans-serif;
color:#222;
}

a{
  text-decoration: none;
}

a:hover {
  
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  background-color:rgba(1, 41, 76);
}

.header.sticked {
   background-color:rgba(1, 41, 76);
  padding: 5px 0;
 
}

.header .logo img {
  max-height: 85px;
}



/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    text-decoration:none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    color:#fff;
    font-family: "Montserrat", sans-serif;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #a1cd36;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background:#fff;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color:#111;
    font-size:16px;
    font-weight:600;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #a1cd36;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background:#fff;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #111;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-secondary);
  background-image: url("../images/banner/banner4.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 60px 0;
  color:#fff
}

.hero .hero-title h1 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 2.8em;
  font-weight: 700;
  line-height:1.3;
  color: #fff;
}
.hero .hero-title h5 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 1.3em;
  font-weight: 600;
  line-height:1.3;
  color: #fff;
}


/* From Uiverse.io by BHARGAVPATEL1244 */ 
button1 {
 outline: none;
 cursor: pointer;
 border: none;
 padding: 0.7rem 3.5rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 font-weight: 600;
 font-size: 16px;
 border-radius: 500px;
 overflow: hidden;
 background: #fff;
 color:#111;
}

button1 span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

button1:hover span {
 color: black;
}

button1::before,
button1::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

button1::before {
 content: "";
 background: #a1cd36;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

button1:hover::before {
 transform: translate3d(100%, 0, 0);
}

.cta-home-hero{
  margin-top:30px;
}
/* Section */
.customers-section{
    background: #fff;
  padding: 80px 0 80px;
}

.section-title{
    font-weight:700;
    font-size:1.6em;
    margin-bottom:5px;
    text-transform:uppercase;
    color: rgba(1, 41, 76);

}
.section-subtitle{
  font-size:16px;
  font-weight:400;
  line-height:1.6;
}



/* Card */
.card-customer{
    background:#f5f5f5f5;
    padding:35px 25px;
    border-radius:10px;
  
    transition:all 0.35s ease;
    height:100%;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.card-customer:hover{
    transform:translateY(-8px);
 box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Icon Circle */
.icon-circle{
    width:70px;
    height:70px;
    background:#a1cd36;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:38px;
    transition:all 0.4s ease;
}

/* Hover icon animation */
.card-customer:hover .icon-circle{
 background-color: rgba(1, 41, 76);
 color:#fff;
    transform:scale(1.1) rotate(8deg);
}

.card-customer h3{
   font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.25px;
}
/* Button */
.btn-about{
    background:rgba(1, 41, 76);
    color:#fff;
    padding:10px 28px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    transition:all .3s ease;
}

.btn-about:hover{
    background:#a1cd36;
    color:#111;
}

/* Cards */
.about-card{
    background:#f8f9fb;
    padding:25px;
    border-radius:10px;
    height:100%;
    transition:all .35s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

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

/* Icon */
.about-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#012b4e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
    transition:all .3s ease;
    font-weight:700;
}

.about-card:hover .about-icon{
    background:#a1cd36;
    transform:scale(1.1);
    color:#111;
    
}

.about-card h5{
    font-weight:600;
    margin-bottom:10px;
    font-size:18px;
}

.about-card p{
    font-size:14px;
    font-weight:400;
    line-height:1.67;
    margin-bottom:0;
}
.about-home{
  padding:70px 0 70px;
  
}
.img-rounded img{
  border-radius:1rem;
}
.home-about-title h4{
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 10px;
  text-transform: uppercase;
  color:rgba(1, 41, 76);;
}
.home-about-title h2{
  font-weight: 700;
  font-size: 1.8em;
  margin-bottom: 10px;
}
p{
  font-size: 16px;
  line-height: 1.65;
  font-weight:400;
}
/* .product-categories {
  background-color: rgba(1, 41, 76);
  padding: 50px 0 50px;
} */
.product-categories{
  padding:80px 0 80px;
  background: linear-gradient(135deg,#012b4e,#0b3c63);
  color:#fff;
}

/* Glass card */
.category-box{
  padding:40px 30px;
  border-radius:14px;
  text-align:center;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 8px 32px rgba(0,0,0,0.25);

  transition:all .35s ease;
  height:100%;
}

.category-box:hover{
  transform: translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.12);
}

/* Big chemistry icon */
.category-icon{
  height:50px;
  margin-bottom:20px;
  filter: brightness(0) invert(1); /* makes icon white */
}

.category-box h5{
  font-weight:600;
  font-size:17px;
  letter-spacing:0.5px;
  text-transform:capitalize;
  line-height:1.4;
}
a .category-box h5{
  color:#fff;
}
.products-list{
  text-align:center;
  margin-bottom:50px;
}
.products-list h3{
  font-weight:700;
  font-size:1.6em;
  margin-bottom:10px;
}
.gap-space{
  margin-bottom:20px;
}

.custom-synthesis{
background:#f7fafc;
padding:80px 0 80px;
}

.synthesis-features{
list-style:none;
padding:0;
margin-top:20px;
}

.synthesis-features li{
margin-bottom:10px;
padding-left:20px;
position:relative;
font-weight:500;
}

.synthesis-features li::before{
content:"✔";
position:absolute;
left:0;
color:#0b63c7;
font-size:14px;
}
.cta-banner{
  width: 100%;
    background-color:#ddd;  
  background-image: url("../images/banner/clinical-research-Picsart-BackgroundRemover.png");
  background-size: cover;
  background-position: top center;
  position: relative;
  padding: 80px 0 80px 0;
  color: rgba(1, 41, 76);
}
.cta-section-t{
  /* background-color: rgba(1, 41, 76); */
  padding: 20px;
}
.cta-section-t h2{
  font-weight: 800;
  font-size: 2.6em;
  line-height:1.3;

  margin-bottom: 10px;
}
.cta-section-t h4{
  font-weight: 600;
  font-size: 1.2em;
  line-height:1.3;
  
  margin-bottom: 20px;
}
.call div{
  margin-bottom:15px;
  font-size:18px;
  font-weight:600;
}
.call div a{
  color:rgba(1, 41, 76);
}


.process-wrapper{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:5px;
}

.process-card{

width: 240px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  height:100%;
}

.process-card:hover{
transform:translateY(-6px);
}

.step{

width:40px;
height:40px;
border-radius:50%;
background:#a1cd36;
color:#111;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:auto;
margin-bottom:10px;
}

/* Arrow */

.arrow{
width:80px;
height:60px;
}

.arrow svg{
width:100%;
height:100%;
}

.arrow path{

stroke:#012b4e;
stroke-width:2;
fill:none;
stroke-dasharray:8;
stroke-dashoffset:200;

animation:arrowMove 2s linear infinite;

}

@keyframes arrowMove{

from{
stroke-dashoffset:200;
}

to{
stroke-dashoffset:0;
}

}

/* Mobile */

@media (max-width:992px){

.process-wrapper{
flex-direction:column;
}

.arrow{
transform:rotate(90deg);
}

}
.process{
  text-align:center;
  margin-bottom:30px;
}
.process h3{
  font-weight: 700;
  font-size: 1.8em;
  margin-bottom: 5px;
  text-transform:capitalize;
  color: rgba(1, 41, 76)
}
.process-section{
  padding:80px 0 80px;
}
.process-card h5{
  font-weight: 800;
  font-size: 1.15em;
  line-height: 1.3;
  margin-bottom:5px;
}
.process-card p{
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom:5px;
}
.footer-section{

background-color: rgba(1, 41, 76);
color:#cbd5e1;
padding:60px 0 60px;
}

.contact-text a{
color:#cbd5e1;
text-decoration:none;
transition:0.3s;
}

.contact-text a:hover{
color:#38bdf8;
}

.footer-desc{

font-size:15px;
line-height:1.7;
max-width:380px;
}

/* Titles */

.footer-title{

color:#fff;
margin-bottom:22px;
font-weight:600;
}

/* Links */

.footer-links{

list-style:none;
padding:0;
}

.footer-links li{

margin-bottom:10px;
}

.footer-links a{

text-decoration:none;
color:#cbd5e1;
transition:0.3s;
}

.footer-links a:hover{

color:#38bdf8;
padding-left:5px;

}

/* Contact */

.contact-text{

font-size: 16px;
  font-weight: 500;
}

/* Social Icons */

.social-icons a{

display:inline-flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
border-radius:50%;
margin-right:10px;
color:white;
font-size:20px;
transition:0.3s;

}

.social-icons a:hover{

background:#a1cd36;
color:#111;
transform:translateY(-3px);

}

/* Divider */

.footer-line{

border-color:#334155;
margin-top:30px;
margin-bottom:20px;

}

.contact-cards-section{

margin-bottom:50px;

}

/* Glass Card */

.glass-card{

background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

border-radius:16px;

padding:25px 20px;

text-align:center;

border:1px solid rgba(255,255,255,0.2);

box-shadow:0 15px 35px rgba(0,0,0,0.15);

transition:0.35s;
height:100%;

}

/* Hover */

.glass-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.25);

}

/* Icon */

.icon-box{

width:50px;
height:50px;

border-radius:50%;

background:#a1cd36;

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

margin:0 auto 18px;

color:#111;
font-size:22px;

}

/* Text */

.glass-card h5{

font-weight:600;
margin-bottom:5px;
color:#fff;
font-size:18px;

}

.glass-card p{

margin:0;
color:#fff;
line-height:1.7;
font-weight:500;
font-size:17px;

}

.small-text{

font-size:14px;
margin-top:5px;

}
.offer-section{
background:#fff;
padding:80px 0 80px;
}





/* Feature Cards */

.feature-card{

display:flex;
align-items:center;

gap:15px;

padding:18px 20px;

background:white;

border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,0.06);

transition:0.3s;

height:100%;

}

.feature-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.feature-card i{

width:52px;
height:52px;

background-color: rgba(1, 41, 76);

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

border-radius:8px;

color:#fff;

font-size:22px;

}

.feature-card p{
margin:0;
font-size:15px;
font-weight:500;
} 
.company-about{
background-color: rgba(1, 41, 76);
  padding:80px 0 80px;
  color:#fff;
}
.company-about1{
background-color: rgba(1, 41, 76);
  padding:60px 0 60px;
  color:#fff;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(1, 41, 76);;
  --bs-btn-border-color: rgba(1, 41, 76);;
}
.company-title h1{
margin-bottom: 5px;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3;
}
.company-title p{
margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.2px;;
}
.company-title{
  margin-top: 7em;
}
.ab-gap{
  margin-top:6em;
}
.policy-box{
background:#ffffff;
border-left:5px solid #012b4e;
padding:30px;
border-radius:6px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.section-padding{
  padding:60px 0 60px;
}
.feature-card1{

display:flex;
align-items:center;

gap:15px;

padding:12px 20px;

background:white;

border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,0.06);

transition:0.3s;

box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
margin-bottom:10px;

}

.feature-card1:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.feature-card1 i{

width: 42px;
height:42px;

background-color: rgba(1, 41, 76);

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

border-radius:8px;

color:#fff;

font-size:20px;

}
.feature-card1 h5{
font-weight: 500;
  margin-bottom: 10px;
  font-size: 17px;
  line-height:1.3;
  text-transform:capitalize
}
.services-section h2{
  font-weight: 600;
  font-size: 1.6em;
  margin-bottom: 30px;
  line-height:1.4;
}
.form-custom{
  padding:80px 0 80px;
  background-color:#f5f5f5f5;
}
.services-custom{
   padding:40px 0 80px;
}
.form-title h4{
font-weight: 600;
  font-size: 1.6em;
  margin-bottom: 10px;
  line-height: 1.4;
}
.form-title{
  margin-bottom:40px;
}
.form-label {
  margin-bottom: .5rem;
  font-size: 15px;
  font-weight: 500;
}
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid rgb(1, 41, 76);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(1, 41, 76,0.6);
  outline: 0;
  box-shadow: 0 0 0 .15rem rgb(1, 41, 76,0.6);
}
.form-select:focus {
  border-color: rgb(1, 41, 76,0.6);
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(1, 41, 76,0.6);
}
.conditions-details{
  padding:70px 0 70px;
}
.conditions1 h2, .conditions1 h3 {
font-weight: 600;
  font-size: 1.35em;
  margin-bottom: 10px;
  color:rgba(1, 41, 76);
}
.clients-section{
background:#f7f9fc;
}


.client-card{
position:relative;
overflow:hidden;
border-radius:10px;
}

.client-card img{
width:100%;
height:260px;
object-fit:cover;
transition:transform .4s;
}

.client-card:hover img{
transform:scale(1.1);
}

.card-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
display:flex;
align-items:flex-end;
padding:20px;
}

.card-overlay h4{
color:#fff;
font-size:20px;
font-weight:600;
margin:0;
}


.contact-info h2{
font-weight:600;
font-size:28px;
margin-bottom:10px;
color: rgba(1, 41, 76);
}

.contact-info p{
font-size:16px;
line-height:1.75;
margin-bottom:10px;
}
.contact-card{
  background-color:#f5f5f5f5;
  padding:30px;
  border-radius:1em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.contact-icon{
font-size:20px;
color:rgba(1, 41, 76);
margin-right:10px;
}
.form-control{
padding:12px;
border-radius:6px;
}

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

.btn-submit{
background:#0ea5e9;
border:none;
padding:12px 30px;
font-weight:600;
color:#fff;
border-radius:6px;
}

.btn-submit:hover{
background:#0284c7;
}
.is-invalid {
    border-color: #dc3545 !important;
}
.is-valid {
    border-color: #198754 !important;
}
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
}
.is-invalid ~ .invalid-feedback {
    display: block;
}
.alert {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.375rem;
}
.contact-page-section{
  padding:80px 0 80px;
  
}
/*product page */
/* .page-title{
font-weight:600;
margin-bottom:20px;
}

.sidebar{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.sidebar a{
display:block;
padding:8px 0;
text-decoration:none;
color:#333;
font-size:15px;
}

.sidebar a:hover{
color:#0d6efd;
}

.product-card{
border:1px solid #eee;
border-radius:10px;
transition:0.2s;
}

.product-card:hover{
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.structure-img{
height:120px;
object-fit:contain;
} */
 .procut-categories{
  padding:80px 0 80px;
 }

.list-group-item.active {
  z-index: 2;
 color: #fff;
  background-color: rgb(1, 41, 76);
  font-weight: 500;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  border-color: rgb(1, 41, 76);
}


.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 12px 20px;;
  font-size: 14px;
  font-weight:500;
  color: rgb(1, 41, 76);
  text-decoration: none;
   text-align: left;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

/* .sidebar {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.content-area {
    height: 100vh;
    overflow-y: auto;
} */
 .table-striped > tbody > tr:nth-of-type(2n+1) > * {
  --bs-table-accent-bg: #f5f5f5f5;
  color: #111;
  font-weight: 400;
}

/*home-search*/
.btn-primary {
  --bs-btn-color: #111;
  --bs-btn-bg: #a1cd36;
  --bs-btn-border-color: #a1cd36;
  font-size:1em;font-weight:600;
}
.submit-bg{
  background-color: #a1cd36;
    border-color: #a1cd36;
  color:#111;
}
  .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 41, 76);
            z-index: 9999;
            overflow-y: auto;
        }
        
        .search-modal.active {
            display: block;
        }
        
        .modal-header {
            position: sticky;
            top: 0;
            border-bottom: rgba(1, 41, 76);
            background:rgba(1, 41, 76);;
            padding: 20px;
            border-bottom: 2px solid rgba(1, 41, 76);
            z-index: 100;
        }
        
        .modal-close {
            position: absolute;
            right: 20px;
            top: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
        }
        
        .modal-close:hover {
            color: #fff;
        }
        
        .search-results {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .result-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .result-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-2px);
            border-color: rgba(1, 41, 76);
            color:#fff;
        }
        
        .product-cat {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }
        
        .product-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(1, 41, 76);
            margin-bottom: 5px;
        }
        
        .product-cas {
            color: #28a745;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .product-category {
            display: inline-block;
            background: #e9ecef;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #495057;
            margin-bottom: 8px;
        }
        
        .product-detail {
            color: #6c757d;
            font-size: 0.9rem;
            border-top: 1px solid #e9ecef;
            padding-top: 8px;
            margin-top: 8px;
        }
        
        .highlight {
            background-color: #fff3cd;
            font-weight: 600;
        }
        
        .no-results {
            text-align: center;
            padding: 50px;
            color: #6c757d;
        }
        
        .search-stats {
            margin-bottom: 20px;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        #modalSearchInput {
            font-size: 1.2rem;
            padding: 15px;
            border: 2px solid rgba(1, 41, 76);
            border-radius: 10px;
            width: 100%;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        #modalSearchInput:focus {
            outline: none;
            border-color: rgba(1, 41, 76) ;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        }
        .form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
 
  font-size: 1rem;
  border-radius: .5rem;
  font-weight: 500;
}
.no-results{
  color:#fff;
}
.copyright a{
color: #cbd5e1;
}
