:root {
  --heading-color: #000;
  --heading-font: "DM Sans", sans-serif;
  --body-font: "DM Sans", sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
.card-bg{
    border: 2px solid white;
    border-radius:16px;
    box-shadow: 6px 10px 20px 1px rgba(0, 0, 0, 0.17); 
    background: linear-gradient(135deg, 
      #eaf4ff 0%,     /* pale blue */
      #f3f8fc 40%,    /* soft light */
      #f9fbfd 70%,    /* near white */
      #fdfcf9 100%    /* warm off-white */
    );
}
/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
.btn.readmore {
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 16px;
  line-height: 150%;
  /* smooth shadow animation */
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* start with no shadow */
}

.btn.readmore:hover {
  color: var(--bs-primary);
  background: var(--bs-white);
  /* add shadow on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}
/* Read More button */
.btn-readmore{--c-primary:var(--bs-primary);--c-secondary:var(--bs-secondary);display:inline-flex;align-items:center;gap:10px;padding:10px 20px;border-radius:16px;background:var(--c-primary);color:#fff;text-decoration:none;font:500 16px/1.4 inherit;border:2px solid var(--c-primary);transition:background-color .25s,color .25s,border-color .25s,box-shadow .25s,transform .25s;box-shadow:0 4px 12px rgba(0,0,0,.15)}
.btn-readmore .btn-text{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.btn-readmore .btn-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:var(--c-secondary);color:#fff;font-size:.65rem;font-weight:bold;transition:transform .25s,box-shadow .25s;box-shadow:0 4px 8px rgba(25,135,84,.4),0 0 4px rgba(25,135,84,.3)}
.btn-readmore:hover{background:transparent;color:var(--c-primary);border-color:var(--c-primary);box-shadow:0 8px 20px rgba(0,0,0,.2);transform:translateY(-2px)}
.btn-readmore:hover .btn-icon{transform:translateX(3px);box-shadow:0 6px 12px rgba(25,135,84,.5),0 0 6px rgba(25,135,84,.4)}
.btn-readmore:focus-visible{outline:none;box-shadow:0 0 0 3px color-mix(in srgb,var(--c-primary) 35%,transparent)}

/* Small screens */
@media (max-width: 420px) {.btn-readmore {gap: 8px;padding: 8px 12px;}}

/* Ultra-small: icon-only */
@media (max-width: 320px) {.btn-readmore .btn-text { display: none; } .btn-readmore { padding: 8px; }}
    
.btn-readmore--dark{background:#fff;color:var(--bs-primary);border-color:var(--bs-primary);box-shadow:none}
.btn-readmore--dark .btn-icon{box-shadow:0 6px 12px rgba(25,135,84,.55),0 0 8px rgba(25,135,84,.45)}
.btn-readmore--dark:hover{background:var(--bs-primary);color:#fff;box-shadow:0 8px 20px rgba(0,0,0,.35)}
.btn-readmore--dark:hover .btn-icon{box-shadow:0 8px 16px rgba(25,135,84,.6),0 0 10px rgba(25,135,84,.5)}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 10px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
  transition: 1s;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
}

.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 15px;
  position:relative;
}
.navbar-light .navbar-nav .nav-link.active{
     color: var(--bs-primary) !important;
}
.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--bs-primary) !important;
}
.navbar-light .navbar-nav .nav-item a.active::before {
 content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--bs-secondary);
  border-radius: 50%;
}


@media (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 0;
    position:relative;
  }

  .navbar .navbar-nav .nav-item {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position:relative;
  }

  .navbar .navbar-nav .nav-btn {
    display: flex;
    justify-content: start;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    background: var(--bs-light);
    border-radius: 16px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .nav-btn {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-light);
    border-radius: 16px;
    justify-content:space-evenly;
  }

  .navbar .navbar-nav .nav-btn {
    width: 100%;
    display: flex;
    margin-left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 0px;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
  }
}

/* === MULTILEVEL DROPDOWN FIX === */

/* Base submenu hidden state */
.navbar .dropdown-menu .dropdown-submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  /* min-width: 220px; */
  background: var(--bs-light);
  border-radius: 10px;
  border: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none; /* keep hidden initially */
  z-index: 1000;
}

/* Show submenu on hover of its parent */
.navbar .dropdown-menu > .dropend:hover > .dropdown-submenu {
  display: block; /* show submenu */
}

/* Optional: add small slide effect for submenu */
.navbar .dropdown-menu .dropdown-submenu {
  animation: fadeSlide 0.3s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keep dropdown arrow indicator for parent item */
.dropend > .dropdown-item::after {
  float: none;
  margin-left: 0.5rem;
  content: "\f105"; /* Font Awesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
}

/* MOBILE: make submenu full width below parent */
@media (max-width: 991px) {
  /* Submenu stays hidden unless .show is added via JS */
  .navbar .dropdown-menu .dropdown-submenu {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--bs-light);
    margin-left: 0;
    border-radius: 0;
  }

  /* Show submenu when .show added */
  .navbar .dropdown-menu .dropdown-submenu.show {
    display: block;
  }

  /* Prevent parent link click navigating immediately */
  .navbar .dropdown-menu .dropdown-toggle::after {
    float: right;
    margin-top: .4rem;
  }
}


body.act_home a.act_home, 
body.act_about a.act_about,
body.act_qualitypolicy a.act_qualitypolicy,
body.act_products a.act_products,
body.act_gallery a.act_gallery,
body.act_career a.act_career,
body.act_certifications a.act_certifications,
body.act_contact a.act_contact
{
    color: var(--bs-primary) !important;
}

body.act_home .nav-item a.act_home::before, 
body.act_about .nav-item a.act_about::before,
body.act_qualitypolicy .nav-item a.act_qualitypolicy::before,
body.act_products .nav-item a.act_products::before,
body.act_gallery .nav-item a.act_gallery::before,
body.act_career .nav-item a.act_career::before,
body.act_certifications .nav-item a.act_certifications::before,
body.act_contact .nav-item a.act_contact::before{
 content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--bs-secondary);
  border-radius: 50%;
  color: var(--bs-primary) !important;
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
  width: 100%;
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--bs-light);
  color: var(--bs-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  right: 50%;
  transform: translateX(-50%);
  margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-secondary);
  color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.header-carousel .header-carousel-item .carousel-caption img{
    width: 100%;
    max-width:100%;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
  
  .header-carousel .header-carousel-item .carousel-caption img{
    width: 100%;
    max-width:400px;
    display:block;
    margin:0 auto;
  }
  
  .header-carousel .header-carousel-item {
    height: 1300px;
  }
}

@media (max-width: 767px) {
  .header-carousel .header-carousel-item {
    height: 950px;
  }
  .header-carousel .header-carousel-item .carousel-caption img{
    width: 100%;
    max-width:300px;
    display:block;
    margin:0 auto;
  }
  .header-carousel .owl-nav .owl-prev {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}
/*** Carousel Hero Header End ***/




/*** Carousel Hero Header new css ***/
/* Make the header item full screen height dynamically */
.header-carousel .header-carousel-item {
  width: 100%;
  height: 100vh; /* full screen height */
  position: relative;
}

/* Image cover styles */
.header-carousel .header-carousel-item .header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* key for cover */
  object-position: center; /* keep centered */
  z-index: 1;
}

/* Caption overlay stays above image */
.header-carousel .header-carousel-item .carousel-caption {
  position: relative; /* let flex center work */
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* optional overlay */
  display: flex;
  align-items: center;
  padding: 2rem;
}

/* Adjust height for small devices if needed */
@media (max-width: 767px) {
  .header-carousel .header-carousel-item {
    height: 100vh; /* still full screen */
  }
}    

/*** Carousel Hero Header new css End ***/




/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2));*/
  background: url(../img/cable-lugs-connectors-products.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0 0px 0;
  transition: 0.5s;
  min-height:300px;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Product Section Start ***/

/* Accessibly hide headings used for landmarks */
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}
#products .owl-carousel .owl-stage-outer{overflow:visible;padding-top:24px}
#products .product-card{position:relative;border:1px solid #e0e0e0;border-radius:16px;background:#fff;transition:transform .35s,box-shadow .35s;overflow:hidden;z-index:1}
#products .product-card:hover{transform:translateY(-10px);box-shadow:0 12px 28px rgba(0,0,0,.15),0 4px 12px rgba(0,0,0,.1);z-index:3}
#products .product-card::before{content:"";position:absolute;top:0;left:0;right:0;height:1px;pointer-events:none}
#products .product-hover-btn{position:absolute;top:12px;right:12px;background:var(--bs-secondary);color:#fff;font-size:1rem;border-radius:50%;width:25px;height:25px;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(.6);transition:all .3s;box-shadow:0 4px 12px rgba(0,0,0,.15);pointer-events:none}
#products .product-card:hover .product-hover-btn{opacity:1;transform:scale(1)}
#products .product-figure{margin:0}
#products .product-figure img{display:block;width:100%;height:auto}
#products .product-title{margin:0;padding:12px 14px;width:100%;text-align:center;background:var(--bs-primary);color:#fff;font-size:18px;line-height:1.3;border-radius:16px;transition:background-color .3s,color .3s}
#products .product-card:hover .product-title,#products .product-link:focus .product-title{background:var(--bs-secondary);color:#fff}

/* Title bar (footer pill inside the card) */
#products .product-title{
  margin:0;
  padding:12px 14px;
  width:100%;
  text-align:center;
  background-color:var(--bs-primary);  /* blue */
  color:#fff;
  font-size:18px;
  line-height:1.3;
  border-radius:16px;                  /* all four corners rounded */
  transition:background-color .3s ease, color .3s ease;
}

/* Hover/focus → green */
#products .product-card:hover .product-title,
#products .product-link:focus .product-title{
  background-color:var(--bs-secondary); /* green */
  color:#fff;
}

/*** Product Section End ***/

/*** Why Choose Us Section Start ***/
#whychooseus {
  /*background: url(../img/product-bg.jpg) center center no-repeat;*/
  /*background-attachment: fixed;*/
  /* padding: 40px 0; */
  /* margin-top: 80px; */
  background-size: cover;
}
#whychooseus .col-11 {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  #whychooseus .col-11 {
    width: 100%;
  }
}
#whychooseus h3 {
  font-weight: 700 !important;
}
#whychooseus h3 span {
  color: #ffffff !important;
}
#whychooseus .content-box {
  /*padding: 40px;*/
  text-align:center;
  /*max-width: 1300px;*/
  margin: auto;
  display: block;
}
#whychooseus .prod-content-card {
  background: url(../img/product-content-card.jpg) center center no-repeat;
  box-shadow: 6px 10px 20px 1px rgba(0, 0, 0, 0.17);
  background-size: 100% 100%;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 380px;
  position: relative;
  z-index: 0;
  margin: auto;
  height: 100%;
  transition: all 0.5s linear;
  transform: translateY(0px);
  border: 2px solid white;
}
#whychooseus .prod-content-card:hover {
  box-shadow: 6px 10px 20px 1px rgba(255, 255, 255, 0.1725490196);
  /*background: var(--bs-primary);*/
  opacity: 90%;
}
@media (min-width: 768px) {
  #whychooseus .prod-content-card:hover {
    transform: translateY(-15px);
  }
}
#whychooseus .prod-content-card:hover .content h5{
  color:var(--bs-dark);
}
#whychooseus .prod-content-card:hover .content icon {
  background: var(--bs-secondary);
}
#whychooseus .prod-content-card:hover .content .icon {
  /*background-color: #60b122;*/
  border:1px solid var(--bg-secondary);
}
#whychooseus .prod-content-card .content:hover .icon img {
  filter: brightness(0) invert(1);
}

#whychooseus .prod-content-card:hover .content .icon {
  background: var(--bs-secondary)!important;
}
#whychooseus .prod-content-card .content {
  position: relative;
  z-index: 999;
}
#whychooseus .prod-content-card .content h5 {
  text-align: center;
  font-weight: 400;
  color: var(--bs-dark);
  margin: 8px auto;
}
#whychooseus .prod-content-card .content p {  
  
  margin: 8px auto;
}
#whychooseus .prod-content-card .content i {  
  
  margin: 0px auto;
}
#whychooseus .prod-content-card .content .icon {
  width: 80px;
  height: 80px;
  transition: all 1s ease-out;
  border-radius: 25px;
  /*background-color: #0056b3;*/
  border:2px solid var(--bs-secondary);
  border-radius:50%;
  padding: 12px;
  margin: auto;
  display: block;
}
#whychooseus .prod-content-card .content .icon img {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
  
}

/*** Why Choose Us Section End ***/

/******* Call to Action ********/
/*******************************/
.call-to-action2 {
  position: relative;
  padding: 0px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  width:100%    ;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 6px 10px 20px 1px rgba(0, 0, 0, 0.17);
}
@media(min-width:992px){
    .call-to-action2 {
        height: 400px;      
    }
}
.service-page .call-to-action2 {
  margin-top: 45px;
}
.parallax-section {
  background-image: url('../img/cta-bg.webp'); 
  /*background-image: url("../img/cta-bg-1440.png");*/
  /*min-height: 300px;*/
  /*background-attachment: fixed;*/
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border: 2px solid white;
}
/* Overlay
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); 
  z-index: 1;
} */
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 10px;
}
.call-to-action2 h2 {
  font-size: var(--heading-3);
  font-weight: var(--font-bold);
  line-height: var(--lh-5);
  color: var(--white-clr);
}

.call-to-action2 p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .call-to-action2 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .call-to-action2 {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
}
@media (max-width: 465px) {
  .call-to-action2 {
    padding: 80px 0;
  }
}

/*** Contact Start ***/
.contact .contact-img {
  position: relative;
}

.contact .contact-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  animation-name: image-efects;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 0.5s;
}

@keyframes image-efects {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
  }

  50% {
    border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
  }

  75% {
    border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.contact .contact-img .contact-img-inner {
  position: relative;
  z-index: 9;
}

.contact-icon{
  width:60px;height:60px;flex:0 0 60px;display:grid;place-items:center;
  border-radius:50%;background:#fff;border:2px solid var(--bs-secondary);
  color:var(--bs-primary);box-shadow:0 6px 14px rgba(0,0,0,.08);
  transition:transform .25s,box-shadow .25s
}
.card-bg:hover .contact-icon{transform:translateY(-2px);box-shadow:0 10px 20px rgba(0,0,0,.16)}
.contact-icon i{font-size:1.75rem}
/* Dividers + links for light backgrounds */
.contact-divider{border-color:rgba(0,0,0,.12);opacity:0.1}
.contact-link{color:inherit;text-decoration:none}
.contact-link:hover{color:var(--bs-primary);text-decoration:underline}
.contact-logo{max-width:200px;height:auto;object-fit:contain}
@media (max-width:575.98px){.contact-logo{max-width:170px}}

/*** Contact End ***/



/*** About Start ***/
/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid var(--bs-secondary);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.left::after {
    right: -13px;
}

.timeline-item.right::after {
    left: -13px;
}

.timeline-text {
    padding: 20px 30px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--heading-color);
    
}

.timeline-text p {
    
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left::after, 
    .timeline-item.right::after {
        left: 18px;
    }
}

/* About Section Styles */

.service-item h5.section-title {
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 15px;
    
}

.service-item h2.display-6 {
    
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-item p {
    
    line-height: 1.8;
    margin-bottom: 20px;
    
}

.service-item h6 {
    color: var(--bs-primary);
    font-weight: 600;
    margin-top: 25px;
    
}

.about-item-image1 img {
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience {
    padding: 80px 0;
}

.section-header h5 {
    color: var(--bs-primary) !important;
    font-weight: 600;
    margin-bottom: 15px;
    
}

.section-header h2 {
    
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    
    line-height: 1.8;
    margin: 0 auto;
    
}


/* About Section */
.about .image-wrapper {
    position: relative;
}
    .about .image-wrapper .experience-badge {
    position: absolute;
    top: 5%;
    right: 5%;
    background-color: var(--bs-secondary);
    color: #fff;
    text-align: center;
    min-width: 200px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    animation: 3s ease-in-out 0s infinite normal none running experience-float;
}
@media (max-width:768px){
    .about .image-wrapper .experience-badge {
        top: 100%;
    }
}
.about .image-wrapper .experience-badge h3 {
    font-family:"DM Sans", sans-serif;
    color: #fff;
    font-size: 2.5rem;
    line-height: 2.3rem;
    margin: 0px;
}
.about .image-wrapper .experience-badge h3 span {
    font-family:"DM Sans", sans-serif;
    font-size: 1.3rem;
      display: inline-block;
      margin-top: 0.25rem;
      font-weight: 700;
}
.about-img {position: relative; overflow: hidden;}
.about-img::after {position: absolute; content: ""; width: 100%;height: 100%; top: 0; left: 0; background: url(../img/bg-about-img.png) top left no-repeat;background-size: contain;}

/*** About End **/


/*** Product Page Start ***/
/* Product Section Styles */

/*.inner_sec p {*/
/*    line-height: 1.8;*/
/*    margin-bottom: 20px;*/
    
/*}*/

.inner_sec h3 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bs-secondary);
    display: inline-block;
}

.inner_sec ul {
    list-style: none;
    padding: 0;
}

.inner_sec ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    
    
}

.inner_sec ul li i {
    color: var(--bs-primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.inner_sec ul li span {
    line-height: 1.6;
}

.inner_sec ul li strong {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Product Box Styles */
/* a11y */
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

/* container */
#productsBox{padding:0 30px;border-radius:16px;margin:auto}

/* card */
.box-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:2.5rem;margin:.75rem 0 1.25rem;padding:1.25rem;background:#fff;border:1px solid #e9ecef;border-radius:16px;box-shadow:0 .5rem 1rem rgba(0,0,0,.08);transition:transform .3s,box-shadow .3s,border-color .3s,background-color .3s,color .3s}
.box-row:hover{transform:translateY(-5px);background:var(--bs-primary);border-color:var(--bs-primary);box-shadow:0 8px 25px rgba(0,0,0,.12);color:#fff}

/* title */
.box-title{flex:1 1 300px;min-width:200px}
.box-title h5{margin:8px 0 0;font-weight:400;color:var(--bs-dark);transition:color .3s}
.box-title a{text-decoration:none}
.box-row:hover .box-title h5,.box-row:hover .box-title a{color:#fff}

/* thumb */
.box-thumb{width:100px;aspect-ratio:1/1;object-fit:cover;cursor:zoom-in;background:#fff;border:2px solid #e9ecef;border-radius:.375rem;transition:transform .3s,border-color .3s,background-color .3s}
.box-row:hover .box-thumb{transform:scale(1.05);border-color:var(--bs-secondary)!important;background:#fff}

/* pdf icon */
.box-actions .bi-file-pdf{color:#d93025;transition:transform .3s,color .3s}
.box-row:hover .box-actions .bi-file-pdf{transform:scale(1.1);color:#fff}

/* desktop */
@media(min-width:768px){.box-row{padding:1rem 3rem}}

/* mobile: default = hover look + stack + center */
@media(max-width:767.98px){
  #productsBox .wow{visibility:visible!important;animation-name:none!important}
  #productsBox .box-row{background:var(--bs-primary)!important;border-color:var(--bs-primary)!important;color:#fff!important;box-shadow:0 8px 25px rgba(0,0,0,.12)!important;transform:none!important;flex-direction:column!important;align-items:center!important;text-align:center!important;gap:12px!important}
  #productsBox .box-thumb-link,#productsBox .box-title,#productsBox .box-actions{width:auto!important;margin:0 auto!important}
  #productsBox .box-title{flex:0 0 auto!important;min-width:0!important}
  #productsBox .box-title h5,#productsBox .box-title a{color:#fff!important;margin:0!important;display:inline-block}
  #productsBox .box-thumb{border-color:var(--bs-secondary)!important;background:#fff!important;transform:none!important}
  #productsBox .box-actions .bi-file-pdf{color:#fff!important;transform:none!important}

  /* legacy markup support */
  #productsBox .custom-flex-box{background:var(--bs-primary)!important;border-color:var(--bs-primary)!important;color:#fff!important;box-shadow:0 8px 25px rgba(0,0,0,.12)!important;transform:none!important;display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center!important;gap:12px!important}
  #productsBox .custom-flex-box>div{width:auto!important}
  #productsBox .custom-flex-box .w-50{width:auto!important;flex:0 0 auto!important}
  #productsBox .custom-flex-box h5{color:#fff!important;margin:0!important;display:inline-block}
  #productsBox .custom-flex-box img{background:#fff!important;border-color:var(--bs-secondary)!important}
  #productsBox .custom-flex-box .d-flex{justify-content:center!important}
}

/* related links */
#relatedProducts .related-links a{display:inline-block;background:var(--bs-default);color:var(--bs-primary);font-size:14px;text-decoration:none;padding:8px 16px;margin:0 8px 8px 0;border-radius:6px;transition:.3s}
#relatedProducts .related-links a:hover{background:var(--bs-secondary);color:#fff!important}
/*** Product Page End ***/

/*** Certifications Start ***/
#certifications .certifications-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    height: 100%;
}

/*#certifications .certifications-item:hover {*/
/*    background: var(--bs-primary);*/
/*    color: #ffffff;*/
/*}*/

#certifications .certifications-item * {
    transition: .5s;
}

#certifications .certifications-item:hover * {
    color: var(--bs-primary) !important;
}
#certifications .certifications-item.card-bg:hover{
    border: 2px solid white;
    border-radius:16px;
    box-shadow: 6px 10px 20px 1px rgba(0, 0, 0, 0.17); 
    background: linear-gradient(135deg, 
     #fdfcf9  0%,     /* pale blue */
     #f9fbfd 40%,    /* soft light */
     #f3f8fc 70%,    /* near white */
     #eaf4ff 100%    /* warm off-white */
    );
}
/* Primary card (dark variant) */
.card-bg-dark{
  position:relative;background:var(--bs-primary);color:#fff;
  border:1px solid rgba(255,255,255,.2);border-radius:16px;
  box-shadow:0 .75rem 1.5rem rgba(0,0,0,.12);
  transition:transform .3s,box-shadow .3s,background-color .3s
}
.card-bg-dark h4,.card-bg-dark p{color:#fff}
.card-bg-dark:hover{transform:translateY(-6px);box-shadow:0 1.25rem 2rem rgba(0,0,0,.18)}

/* Left-of-title icon (60×60, white bg, green border, primary icon) */
.card-title-row{display:flex;align-items:center;gap:1rem}
.card-lead-icon{
  width:60px;height:60px;display:grid;place-items:center;flex:0 0 60px;
  border-radius:50%;background:#fff;border:2px solid var(--bs-secondary);
  color:var(--bs-primary);box-shadow:0 6px 14px rgba(0,0,0,.1);
  transition:transform .25s,box-shadow .25s,border-color .25s,color .25s
}
.card-lead-icon i{font-size:1.75rem;line-height:1}
.card-bg-dark:hover .card-lead-icon{transform:translateY(-2px);box-shadow:0 10px 20px rgba(0,0,0,.18)}

/* Mobile tweak */
@media (max-width:767.98px){
  .card-title-row{gap:.75rem}
}

/*** Certifications End ***/


/* faq1 start*/
/* container */
#quality-accordian-sec{position:relative;width:100%;overflow:hidden}

/* icon pill (uses your existing <span> wrapper) */
#quality-accordian-sec span{width:60px;height:60px;margin-right:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:32px;background:var(--bs-secondary);color:var(--txt-clr,#000);text-align:center}
#quality-accordian-sec span img{width:40px;height:40px;filter:brightness(0) invert(1)!important}

/* accordion core */
.accordion-button{font-size:1.2rem;line-height:28px;border-top-left-radius:16px!important;border-bottom-right-radius:16px!important;box-shadow:none;color: var(--bs-dark);}
.accordion-button:focus{z-index:3;border-color:#fff;outline:0;box-shadow:none}
.accordion-button::after{display:none}
.accordion-item{background-color:var(--bs-light)!important;border-radius:16px!important;overflow:hidden}
.accordion-button:not(.collapsed) {color:var(--bs-primary);;}
/* header visual (your gradient card look) */
button.buttonHorOrg.accordion-button{border:2px solid #fff;border-radius:16px;box-shadow:6px 10px 20px 1px rgba(0,0,0,.17);background:linear-gradient(135deg,#eaf4ff 0,#f3f8fc 40%,#f9fbfd 70%,#fdfcf9 100%)}
button.buttonHorOrg.accordion-button:hover{background:linear-gradient(135deg,#fdfcf9 0,#f9fbfd 40%,#f3f8fc 70%,#eaf4ff 100%)}

/* toggle icons (Font Awesome) */
.toggle-icon{margin-left:auto;color:var(--bs-secondary)!important}
.toggle-icon-plus{display:none;color:var(--bs-dark)!important;margin-left:.25rem}
.accordion-button.collapsed .toggle-icon{display:none}
.accordion-button.collapsed .toggle-icon-plus{display:inline-block}

/* small fixes */
.rotate180{transform:rotate(180deg)}
@media(max-width:767.98px){#qualityPolicy .wow{visibility:visible!important;animation-name:none!important}}
/* Right-align whichever icon is visible */
.accordion-button{display:flex;align-items:center}
.accordion-button .toggle-icon,
.accordion-button .toggle-icon-plus{margin-left:auto}

/* Visibility swap */
.accordion-button .toggle-icon-plus{display:none}
.accordion-button.collapsed .toggle-icon{display:none}
.accordion-button.collapsed .toggle-icon-plus{display:inline-block}
/* Accordian end*/



/*** Footer Start ***/
.tagline{font:italic 400 1.125rem/1.3 "DM Serif Text","Times New Roman",Times,serif;letter-spacing:.3px;color:var(--bs-primary)}
@media (min-width:992px){.tagline{font-size:1.25rem}}

.footer {
  background: var(--bs-dark);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
  position: relative;
  overflow: hidden;
}

.footer .footer-item .footer-instagram img {
  transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
  transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
  background: var(--bs-light);
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-white);
}
/*** Footer End ***/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
#footer {
  color: var(--default-color);
  background-color: #ffffff;
  font-size: 14px;
  position: relative;
}

#footer .footer-top {
  padding-top: 50px;
}

#footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

#footer .footer-about .logo img {
  max-height: 70px;
  margin-right: 6px;
}

#footer .footer-about .logo span {
  color: var(--heading-color);
  
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

#footer .footer-about p {
  font-size: 14px;
  
}

#footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--bs-primary), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--bs-primary), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

#footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  display:inline;
}

#footer .footer-links {
  margin-bottom: 0px;
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

#footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-links ul a {
  color: var(--bs-dark);
  display: inline-block;
  line-height: 1;
}

#footer .footer-links ul a:hover {
  color: var(--bs-primary);
}

#footer .footer-contact p {
  margin-bottom: 5px;
}

#footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

#footer .copyright p {
  margin-bottom: 0;
}

#footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*** Footer New End ***/

/*** copyright Start ***/
#footer .copyright {
  background: var(--bs-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** copyright end ***/
