/* CSS Document */
.logo-class {
  height: auto;
  width: 250px;
}
.wrapper {
  width: 100%;
	overflow: visible;
}
h1, h2, h3, h4 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
p, a {
  font-family: Poppins;
}
strong {
  font-weight: bold;
}
.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  margin-right: 15px;
  padding-right: 15px;
}
.navbar-nav .nav-link:last-child {
  border-right: none;
}
.navbar-nav .nav-link.active {
  color: #2b95df !important; /* Light blue active link */
  border-bottom: 4px solid #2b95df;
  padding-bottom: 20px;
}
.navbar-brand {
  margin-right: 70px;
}
.nav-item {
  margin-right: 25px;
}
.nav-link {
  background: #e31e25 !important;
  color: #ffffff !important;
  padding: 9px 17px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15) !important;
  font-size: 15px !important;
}
.nav-link:hover {
  background: #5c5c5c !important;
}
.navbar-brand span {
  font-size: 14px;
  display: block;
  color: #a8c67a;
  margin-top: -5px;
}
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#navbarNav {
  margin-top: 0px;
	overflow: visible !important;
}
.navbar .container {
  margin-bottom: 15px;
}
/* Mobile */
@media (max-width: 480px) {
  .navbar-nav .nav-link {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* Tablet */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* Small laptops / Notepad */
@media (max-width: 1024px) {
  .navbar-nav .nav-link {
    width: 100%;
    margin-bottom: 10px;
  }
}
.dropdown-menu a{
	padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;font-weight: 600;
	color: #000000!important;
    text-decoration: none!important;
}
.dropdown-menu  li
{
	width: 288px;
}

.navbar {
   position: relative;
  z-index: 99999;
}

.dropdown-menu {
  z-index: 999999;
  position: absolute !important;
}

.navbar-nav .nav-link {
  display: block !important;
}
/* Fix dropdown hover + click color */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #D7D7D7 !important;
    color: #ffffff !important;
}

.navbar .dropdown-menu .dropdown-item:active,
.navbar .dropdown-menu .dropdown-item.active {
    background-color: #D7D7D7 !important;
    color: #ffffff !important;
}
.about-section {
  margin-top: 50px;
  background-color: #fff;
}
/* Text styling */
.about-text p {
  color: #000000;
  line-height: 1.7;
  text-align: justify;
  font-size: 13px;
}
.about-title {
  font-weight: 700;
  position: relative;
  display: block; /* changed from inline-block */
  width: -moz-fit-content; /* cross-browser fit-content fallback */
  width: fit-content;
  margin: 0 auto 1rem; /* center the entire heading block */
  padding: 0 15px;
  text-align: center;
}
.about-title::before, .about-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 183px;
  height: 2px;
  background-color: #e31e25;
}
.about-title::before {
  left: -187px;
}
.about-title::after {
  right: -187px;
}
.industries-section {
  background-color: #f5f5f5;
  padding: 70px 0;
  text-align: center;
}
.industries-section h2 {
  font-size: 42px;
  line-height: 42px;
  font-weight: bold;
  letter-spacing: 0px;
  margin-bottom: 30px;
  color: #000;
}
.industry-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 25px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-size: 52px;
  color: #e31e25;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.industry-icon {
  font-size: 40px;
  color: #3399cc;
  margin-bottom: 10px;
}
.industry-title {
  font-weight: 600;
  color: #5b5b5b;
  font-size: 16px;
}
body > h1 {
  font-size: 12px;
  text-align: center;
  padding: 4px;
  color: #333;
  background-color: #fff;
}
.services-section {
  background: #f5f5f5;
  margin-top: 50px;
  padding: 50px;
}
/* Base Card */
.service-card {
  padding: 40px 25px;
  border-radius: 40px 40px 120px 40px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.service-card p {
  font-size: 12px;
  margin-top: 15px;
}
/* Red Card */
.red-card {
  background: #C62828;
  color: #ffffff;
}
.red-card h5, .red-card p {
  color: #ffffff;
}
/* White Card */
.white-card {
  background: #ffffff;
  color: #333;
}
/* Icon Box Default (for white card) */
.icon-box {
  width: 65px;
  height: 65px;
  background: rgba(198, 40, 40, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.icon-box i {
  font-size: 28px;
  color: #C62828;
}
/* Icon Box for Red Card */
.white-icon {
  background: rgba(255, 255, 255, 0.2);
}
.white-icon i {
  color: #ffffff;
}
/* Hover Effect */
.service-card:hover {
  transform: translateY(-12px);
}
footer {
  background-color: #ffffff;
  color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #000000;
}
footer p, footer a {
  color: #000000;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  color: rgb(198, 40, 40);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.contact-item i {
  font-size: 20px;
  color: #e31e25;
  margin-right: 10px;
  margin-top: 4px;
}
.contact-item i:after {
  content: "";
  display: block;
  width: 70px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: var(--mfn-contactbox-line);
  position: absolute;
  left: -30px;
  bottom: 0;
}
.social-icons a {
  color: #e31e25;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #5b5b5b;
}
hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}
/* SUB HEADER */
.hero-section {
  background: url('your-image.jpg') center center/cover no-repeat;
  position: relative;
  color: white;
  text-align: left;
	position: relative;
  z-index: 1;
}
.hero-overlay {
  position: relative;
  left: 0;
  width: 100%;
  height: 155px;
  background: url("../images/product-bg.jpg")center center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.breadcrumb-item.active {
  color: #ddd;
}
.swiper-slide {
  display: flex;
}
/* Section */
.expertise-section {
  position: relative;
  padding: 80px 0;
  background: url('images/bg.jpg') center/cover no-repeat;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b5b5b;
}
/* Title */
.section-header h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}
.divider {
  width: 60px;
  height: 3px;
  background: #e53935;
  margin: 10px auto 0;
}
/* Glass Card */
.expertise-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 12px;
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .4s;
  color: #00000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 250px;
}
.expertise-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
}
/* Image */
.expertise-card img {
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: .4s;
}
.expertise-card:hover img {
  transform: scale(1.1);
}
/* Title */
.expertise-card h4 {
  color: #000000;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 25px;
}
/* Text */
.expertise-card p {
  font-size: 13px;
  line-height: 1.6;
  flex-grow: 1;
}
/* Button */
.expertise-card a {
  background: #e31e25 !important;
  color: #ffffff !important;
  padding: 9px 17px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15) !important;
  font-size: 15px !important;
  width: 123px;
}
.expertise-card a:hover {
  background: #5b5b5b;
}
/* View button */
.view-btn {
  background: #e31e25;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
}
.view-btn:hover {
  background: #5b5b5b;
}
.clients-section {
  background-color: #d7d7d7;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
  overflow: hidden;
}
.clients-section h2 {
  font-weight: 700
}
;
.client-logo img {
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  border-radius: 4px;
}
.slick-prev, .slick-next {
  background-color: #cfcfcf !important;
  border-radius: 30px;
  height: 41px !important;
  width: 41px !important;
}
.slick-prev:before, .slick-next:before {
  color: #ffffff !important;
  font-size: 18px;
}
.slick-slide img {
  padding-left: 50px;
}
.product-img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  object-fit: contain;
	border: 1px solid #ccc;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
	background-color: #FFFFFF;
}
.btn-red {
  background: #e31e25 !important;
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, .2);
  padding: 10px 20px !important;
  font-size: 16px !important;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: table;
  margin: 20px auto 25px;
  z-index: 1;
  position: relative;
  font-weight: 600;
}
.btn-grey {
  background: #000000 !important;
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, .2);
  padding: 10px 20px !important;
  font-size: 16px !important;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: table;
  margin: 20px auto 25px;
  z-index: 1;
  position: relative;
  font-weight: 600;
}
.btn-red:hover {
  background: #5c5c5c !important;
  color: white;
}
.btn-grey:hover {
  background: #5c5c5c !important;
  color: white;
}
.prd-title {
  color: #000000;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 25px;
}
.row .d-flex a{
 text-decoration: none!important;
}

.contact-section {
  background: #d7d7d7;
  margin-top: 50px;
  margin-bottom: 50px;
border: 1px solid #efffff;
    border-radius: 10px;
}
.contact-section h5 {
	font-weight:700;
}
.info-box {
  border-radius: 12px;
  padding: 40px;
  color: #333;
}
.form-box {
  border-radius: 12px;
  padding: 40px;
}
.icon {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px #d3d3d3;
  color: #e31e25 !important;
  display: flex;
  font-size: 22px;
  font-weight: 600;
  padding: 22px 0;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  min-width: 60px;
  margin-bottom: 15px;
  margin-right: 21px;
}
.icon:hover {
  background: #5c5c5c;
  color: #fff;
  transition: all .5s;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px; /* spacing between icon and text */
  margin-bottom: 20px;

}

