/********** Template CSS **********/
:root {
  --primary: #c0392b;
  --light: #f5f0f0;
  --dark: #3d3d3d;
}
a {
    color: #fff;
    text-decoration: none;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background: #071e52 !important;
  border-color: #071e52 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
  font-weight: 600;
}

.font-secondary {
  font-family: "Poppins", sans-serif;
}

/*** Carousel Buttons ***/
.btn-carousel-left {
  background: #071e52;
  color: #fff;
  border: 2px solid #071e52;
  transition: 0.3s;
}

.btn-carousel-left:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-carousel-right {
  background: #0e76d3;
  color: #fff;
  border: 2px solid #0e76d3;
  transition: 0.3s;
}

.btn-carousel-right:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.navbar .navbar-nav .nav-link {
  padding: 30px 15px;
  color: var(--dark);
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #0e76d3;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: calc(100% - 15px);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Top Bar ***/
.top-bar {
  font-size: 13px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  background: #0e76d3;
}

@media (min-width: 992px) {
  .top-bar {
    display: block;
  }
}

.top-bar-left {
  background: #071e52;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 50px 10px 30px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  flex: 1;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-left a:hover {
  color: #0e76d3;
}

.top-bar-left i {
  color: #0e76d3;
}

.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.top-bar-right {
  background: #0e76d3;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 30px 10px 50px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -30px;
  position: relative;
  z-index: 1;
}

.top-bar .btn-social {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.3s;
}

.top-bar .btn-social:hover {
  color: #c0392b;
  background: #fff;
  border-color: #fff;
}

/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  /* background: url(../img/bg-header-top.png) center center repeat-x; */
  z-index: 1;
}

.header-carousel::after,
.page-header::after {
  height: 19px;
  top: auto;
  bottom: 0;
  background: url(../img/bg-header-bottom.png) center center repeat-x;
}

.header-carousel .owl-carousel-item {
  position: relative;
  height: 100vh;
  min-height: 500px;
}

.header-carousel .owl-carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: image-zoom 10s ease-in-out infinite;
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
  }
  25% {
    width: 115%;
    height: 115%;
  }
  50% {
    width: 130%;
    height: 130%;
  }
  75% {
    width: 120%;
    height: 120%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.header-carousel .owl-carousel-item h1 {
  font-size: 2.5rem;
}

.header-carousel .owl-carousel-item p {
  font-size: 15px !important;
  font-weight: 400 !important;
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    height: 60vh;
    min-height: 320px;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 1.6rem;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: #0e76d3;
  border-color: #0e76d3;
}

.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/about-us-banner.png) center center no-repeat;
  background-size: 100% 100%;
  min-height: 350px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.btn-read-more {
  background: #071e52;
  color: #fff;
  border: 2px solid #071e52;
  transition: 0.3s;
}

.btn-read-more:hover {
  background: transparent;
  color: #071e52;
  border-color: #071e52;
}

.about-rotate-wrap {
  width: 420px;
  height: 420px;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  animation: slowRotate 12s linear infinite;
}

.about-rotate-wrap:hover {
  animation-play-state: paused;
}

.about-rotate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-img .video-circle-wrap {
  display: inline-block;
  border-radius: 50%;
  transition: 0.3s;
}

.about-img .video-circle-wrap video {
  border: 12px solid #071e52;
  transition: border-color 0.3s;
}

.about-img .video-circle-wrap:hover video {
  border-color: #0e76d3;
}

.about-section {
  background: #f8faff;
  border-top: 4px solid #0e76d3;
}

.about-tag {
  display: inline-block;
  background: #0e76d3;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
}

.about-heading {
  color: #071e52;
  border-left: 4px solid #0e76d3;
  padding-left: 15px;
}

.about-btn-primary {
  background: #0e76d3;
  color: #fff;
  border: 2px solid #0e76d3;
  transition: 0.3s;
}

.about-btn-primary:hover {
  background: #071e52;
  border-color: #071e52;
  color: #fff;
}

.about-name {
  color: #0e76d3;
}

.about-img-border {
  background: #e8f0fb;
  border: 3px solid #0e76d3;
}

/*** Classes ***/
/* Product Card */

.product-card {
  background: #ffffff;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #0e76d3;
  box-shadow: 0 10px 25px rgba(7, 30, 82, 0.1);
}

/* Product Image */

.product-img {
  padding: 15px;
  background: #f4f7fc;
  text-align: center;
}

.product-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Product Content */

.product-content {
  padding: 20px;
}

.product-content h4 {
  color: #071e52;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Buttons */

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-buttons a {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* View More */

.btn-view {
  background: #071e52;
  color: #ffffff;
  border: 1px solid #071e52;
}

.btn-view:hover {
  background: #0e76d3;
  border-color: #0e76d3;
  color: #ffffff;
}

/* Get Quote */

.btn-quote {
  background: #ffffff;
  color: #071e52;
  border: 1px solid #071e52;
}

.btn-quote:hover {
  background: #071e52;
  color: #ffffff;
}
/*** Products ***/
.product-section-tag {
  display: inline-block;
  background: #0e76d3;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 3px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(7, 30, 82, 0.1);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eef8;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #071e52, #0e76d3); */
  border-radius: 12px 12px 0 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(7, 30, 82, 0.16);
  border-color: #0e76d3;
}

.product-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f4f7fc;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 30, 82, 0.55) 0%,
    transparent 55%
  );
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0e76d3;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  color: #071e52;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 17px;
}

.product-card-desc {
  color: #666;
  font-size: 13.5px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.product-card-divider {
  height: 1px;
  background: #e8eef8;
  margin-bottom: 16px;
}

.product-card-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.product-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #fff;
  font-weight: 600;
  background: #071e52;
  padding: 3px 10px;
  border-radius: 20px;
}

.product-card-meta span i {
  color: #0e76d3;
  font-size: 11px;
}

.product-card-btn {
  background: #071e52;
  color: #fff;
  border: 2px solid #071e52;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  transition: 0.3s;
  flex: 1;
  text-align: center;
}

.product-card-btn:hover {
  background: #0e76d3;
  border-color: #0e76d3;
  color: #fff;
}

.product-card-btn-outline {
  background: transparent;
  color: #071e52;
  border: 2px solid #071e52;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  transition: 0.3s;
  flex: 1;
  text-align: center;
}

.product-card-btn-outline:hover {
  background: #071e52;
  color: #fff;
}

/*** Industry Cards ***/
.industry-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 12px rgba(7, 30, 82, 0.07);
}

.industry-card:hover {
  border-color: #0e76d3;
  box-shadow: 0 8px 30px rgba(7, 30, 82, 0.12);
  transform: translateY(-5px);
}

.industry-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
}

.industry-card:hover .industry-img {
  transform: scale(1.03);
}

.industry-body {
  padding: 24px;
  text-align: center;
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #071e52;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: 0.3s;
}

.industry-card:hover .industry-icon {
  background: #0e76d3;
}

.industry-icon i {
  color: #fff;
  font-size: 22px;
}

.industry-card h5 {
  color: #071e52;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}

.industry-card p {
  color: #777;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/*** Why Choose Us ***/
.why-choose-card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 12px rgba(7, 30, 82, 0.07);
}

.why-choose-card:hover {
  border-color: #0e76d3;
  box-shadow: 0 8px 30px rgba(7, 30, 82, 0.1);
  transform: translateY(-5px);
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #071e52;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: 0.3s;
}

.why-choose-card:hover .why-choose-icon {
  background: #0e76d3;
}

.why-choose-icon i {
  color: #fff;
  font-size: 22px;
}

.why-choose-card h5 {
  color: #071e52;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.why-choose-card p {
  color: #777;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/*** FAQ ***/
.faq-item {
  border: 1px solid #e8eef8;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-wrapper {
  text-align: left !important;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: none;
  text-align: left !important;
  color: #071e52;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  gap: 12px;
}

.faq-btn span:not(.faq-icon):not(.faq-q-icon) {
  flex: 1;
  text-align: left !important;
}

.faq-item,
.faq-item *,
.faq-body,
.faq-btn {
  text-align: left !important;
}

.faq-btn:not(.collapsed) {
  background: #071e52;
  color: #fff;
}

.faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
  color: #0e76d3;
}

.faq-icon {
  font-size: 13px;
  color: #0e76d3;
  transition: 0.3s;
  min-width: 14px;
}

.faq-body {
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #e8eef8;
  text-align: left !important;
}

.faq-q-icon {
  color: #0e76d3;
  font-size: 13px;
  margin-right: 8px;
  min-width: 14px;
}

.faq-btn:not(.collapsed) .faq-q-icon {
  color: #87ceeb;
}

.why-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid #e8eef8;
  border-radius: 8px;
  overflow: hidden;
}

.why-stat-box {
  flex: 1;
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid #e8eef8;
  background: #f4f7fc;
}

.why-stat-box:last-child {
  border-right: none;
}

.why-stat-box h3 {
  color: #071e52;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.why-stat-box span {
  font-size: 12px;
  color: #0e76d3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e8eef8;
  border-radius: 8px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}

.why-feature-item:hover {
  border-color: #0e76d3;
  box-shadow: 0 4px 20px rgba(7, 30, 82, 0.08);
  transform: translateY(-3px);
}

.why-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 8px;
  background: #071e52;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.why-feature-item:hover .why-feature-icon {
  background: #0e76d3;
}

.why-feature-icon i {
  color: #fff;
  font-size: 17px;
}

.why-feature-item h6 {
  color: #071e52;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 14px;
}

.why-feature-item p {
  color: #777;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.team-item .team-text {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  border: 17px solid var(--light);
  border-radius: 250px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  border-color: var(--primary);
}

/* Start table data  */
.table-data {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.table-data th {
  background-color: #071e52;
  color: white;
  text-align: left;
  padding: 12px 15px;
  font-weight: bold;
  border: 1px solid #ddd;
}

.table-data td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 14px;
  color: #222;
  background-color: #fff;
}

.unique {
  background-color: #f2f2f2;
  font-weight: bold;
}

.unique-2 {
  /* font-style: italic; */
}

.table-data tr:hover td {
  background-color: #d6e8f7;
  color: #071e52;
}

.product-description {
  background:
    linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)),
    url(../img/fastners-back.jpg);
  color: white;
}

/* Add responsiveness to the table */
@media screen and (max-width: 768px) {
  .ideal {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table {
    width: 100%;
    border: 0;
  }
  th,
  td {
    text-align: center;
    padding: 10px;
  }
  th {
    background-color: #f9f9f9;
  }
}

/* Small mobile screens (portrait view) */
@media screen and (max-width: 480px) {
  th,
  td {
    padding: 6px;
    font-size: 12px;
  }
}

/* End Table date  */
/* end table data  */

/* SS Flanges Application & Uses  */
.wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Left (Application & Uses) */
.mcb-wrap-0ub6j3kh3 {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 15px;
}

/* Right (Contact Us) */
.mcb-wrap-qv6hjy8l2 {
  flex: 0 0 35%;
  max-width: 35%;
  padding: 15px;
  margin-left: auto; /* Push it to the right */
}

/* Headings */
.column_attr h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  border-bottom: 2px solid #085684;
  padding-bottom: 8px;
}

/* UL List Styling */
.column_attr ul {
  list-style: none;
  padding-left: 0;
}

.column_attr ul li {
  padding: 8px 0;
  font-size: 16px;
  color: #444;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.column_attr ul li:before {
  content: "âœ”";
  color: #085684;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
}

/* Contact Buttons */
.column_button a {
  display: block;
  text-align: center;
  background: #085684 !important;
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.column_button a:hover {
  background: #06406b !important;
}

/* Icons inside buttons */
.column_button i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .mcb-wrap-0ub6j3kh3,
  .mcb-wrap-qv6hjy8l2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* End Ss Flanges Application & Uses */

/* Custom column  */
.columns-container {
  display: flex;
  gap: 20px; /* space between columns */
  flex-wrap: wrap; /* responsive wrap */
}

.column {
  flex: 1; /* equal width */
  min-width: 250px; /* minimum width for responsiveness */
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.custom-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.custom-list li::before {
  content: "\276F"; /* arrow bullet */
  position: absolute;
  left: 0;
  color: #0e76d3;
  font-weight: bold;
}

.custom-list li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.custom-list li a:hover {
  color: #007bff;
}
/* End Custom Column  */

.header-4 {
  margin-top: 25px;
  font-size: 1.5rem;
}
.adjust {
  line-height: 27px;
  letter-spacing: 1px;
}

.red-border {
  border: 4px solid #4e4c43;
  border-radius: 40px;
  padding: 4px;
  box-shadow: 0 6px 15px rgba(6, 163, 218, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.red-border:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.image-item {
  text-align: center;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.image-item img {
  width: 100%;
  height: 160px; /* small fixed height */
  object-fit: contain; /* show full image (no cutting) */
  display: block;
  background: white; /* light background behind image */
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-item:hover .image-wrapper::after {
  opacity: 1;
}

.image-item h3 {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.border-bottom {
  border-bottom: 1px solid#071e52 !important;
}

/* flange box for all products  */
.product-highlight {
  margin-top: 30px;
  padding: 22px;
  background: #ffffff;
  border-left: 5px solid #071e52;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-highlight h4 {
  font-size: 20px;
  font-weight: 700;
  color: #071e52;
  margin-bottom: 15px;
}

.product-highlight ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.product-highlight ul li {
  font-size: 15px;
  color: #222;
  padding-left: 20px;
  position: relative;
}

.product-highlight ul li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  color: #071e52;
  font-weight: bold;
}

.ss-flange-wrapper {
  /* padding: 60px 0; */
  background: #ffffff;
}

.ss-flange-box {
  max-width: 1100px;
  margin: auto;
  background: #fefefe;
  border: 2px solid #071e52;
  padding: 40px 40px 40px 120px;
  position: relative;
}

.ss-flange-image {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.ss-flange-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-flange-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #071e52;
  margin-bottom: 20px;
}

.ss-flange-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 10px;
}

.ss-flange-content p strong {
  color: #000;
}

.ss-flange-content .highlight {
  color: #007b8f;
  font-weight: 700;
}
.btn-custom {
  flex: 1;
  min-width: 220px;
  text-align: center;
  background-color: #071e52;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
/* End Flange Box  */

/* General Sidebar Styling for the link containers */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar h3 {
  color: #071e52;
  border-left: 4px solid #0e76d3;
  padding-left: 10px;
}

.new-font-style {
  color: #071e52;
}

.table-data thead tr {
  background: #071e52;
  color: #fff;
}

.table-data thead th {
  padding: 10px 12px;
  font-size: 13px;
}

.table-data tbody tr:nth-child(even) td {
  background: #eef3fb;
  color: #222;
}

.table-data tbody tr:nth-child(odd) td {
  background: #fff;
  color: #222;
}

.table-data tbody td {
  padding: 9px 12px;
  font-size: 13px;
  color: #222;
  border-bottom: 1px solid #e8eef8;
}

.ss-flange-wrapper h2 {
  color: #071e52;
}

.product-highlight h4 {
  color: #0e76d3;
}

.product-highlight ul {
  list-style: none;
  padding: 0;
}

.product-highlight ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: #444;
}

.product-highlight ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0e76d3;
  position: absolute;
  left: 0;
  top: 6px;
}

.custom-circle-list li::before {
  background: #0e76d3;
}

.custom-list li::before {
  color: #0e76d3;
}

/* Custom Button Styling with new colors */
.custom-btn {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  text-align: left;
  text-decoration: none;
  color: white;
  background-color: #071e52;
  border: 2px solid #071e52;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.custom-btn:hover {
  color: #ffffff;
  background-color: #0e76d3;
  border-color: #0e76d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(7, 30, 82, 0.15);
}

/* Icon Styling */
.custom-btn i.fa-chevron-right {
  font-size: 14px;
  color: inherit;
  margin-right: 15px !important;
  transition: margin-right 0.3s ease;
}

/* Icon on Hover */
.custom-btn:hover i.fa-chevron-right {
  color: #ffffff;
  margin-right: 20px !important;
}
.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: black;
}
.custom-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0e76d3;
  position: absolute;
  left: 0;
  top: 1px;
}
/*** WhatsApp Float ***/
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    color: #fff;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    border-color: #0e76d3;
    background: #0e76d3;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0e76d3 !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright a {
    color: #ffffff;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: #0e76d3 !important;
}


/* =========================
   COPYRIGHT FOOTER
   ========================= */

.copyright-footer {
    width: 100%;
    height: 68px;
    display: flex;
    background: #071e52;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.copyright-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 44px;
}

.copyright-left p,
.copyright-right p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.copyright-left a,
.copyright-right a {
    color: #0e76d3;
    text-decoration: none;
}

.copyright-left a:hover,
.copyright-right a:hover {
    color: #ffffff;
}


/* Right side */
.copyright-right {
    width: 320px;
    background: #0e76d3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 44px 0 70px;
    position: relative;
}


/* Slanted / diagonal edge */
.copyright-right::before {
    content: "";
    position: absolute;
    left: -55px;
    top: 0;
    width: 100px;
    height: 100%;
    background: #0e76d3;
    transform: skewX(42deg);
    transform-origin: top;
}

.copyright-right p {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    color: #ffffff;
}

.copyright-right a {
    color: #ffffff;
    font-weight: 700;
    margin-left: 4px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .copyright-footer {
        height: auto;
        flex-direction: column;
    }

    .copyright-left,
    .copyright-right {
        width: 100%;
        min-height: 60px;
        justify-content: center;
        padding: 15px 20px;
    }

    .copyright-right::before {
        display: none;
    }
}

/* =========================
   FOOTER BLUE COLOR FIX
   ========================= */

.footer {
    background-color: #071e52 !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Footer headings */
.footer h3 {
    color: #ffffff !important;
}

/* Footer text */
.footer p,
.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Footer links */
.footer .btn.btn-link {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer .btn.btn-link:hover {
    color: #0e76d3 !important;
}

/* Social icons */
.footer .btn.btn-social {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: transparent !important;
}

.footer .btn.btn-social:hover {
    color: #ffffff !important;
    background-color: #0e76d3 !important;
    border-color: #0e76d3 !important;
}

/* Footer input */
.footer .form-control {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Newsletter button */
.footer .btn-primary {
    background-color: #0e76d3 !important;
    border-color: #0e76d3 !important;
    color: #ffffff !important;
}

.footer .btn-primary:hover {
    background-color: #071e52 !important;
    border-color: #0e76d3 !important;
}

/* Gallery */
.footer .bg-light {
    background-color: #ffffff !important;
}

/* =========================
   COPYRIGHT
   ========================= */

.copyright-footer {
    background-color: #071e52 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.copyright-left {
    background-color: #071e52 !important;
}

.copyright-right {
    background-color: #0e76d3 !important;
}

.copyright-right::before {
    background-color: #0e76d3 !important;
}

.copyright-left p,
.copyright-right p {
    color: #ffffff !important;
}

.copyright-left a,
.copyright-right a {
    color: #ffffff !important;
}

.copyright-left a:hover,
.copyright-right a:hover {
    color: #ffffff !important;
}