/*** Spinner Start ***/
/*** 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;
}
/*** 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);
}

.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);
}
.btn-outline-primary {
  color: #A61D21;
  border-color: #A61D21;
}
.btn-outline-primary:hover {
  color: #000;
  background-color: #A61D21;
  border-color: #A61D21;
}
/* Topper  */
.top-header {
  background: #A61D21;
  height: 70px; /* SAME HEIGHT */
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.top-container {
  max-width: 1320px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.top-item i {
  font-size: 26px;
  color: white;
}

.top-item small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.top-value {
  font-size: 14px;
  font-weight: bold;
}

.top-badge img {
  height: 50px; /* badge height */
}
/* end topper 
 */
/*** Navbar Start ***/
.nav-bar {
  background: white;
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #A61D21;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.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 a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}
.text-white {
  color: white !important;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #A61D21;
}
.dropdown .dropdown-menu a:hover {
  background: #A61D21;
  color: var(--bs-white);
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

@media (min-width: 1200px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 700px;
  }
}

.header-carousel .header-carousel-item .carousel-caption .container {
  transform: translateY(-60px); /* adjust value as needed */
}

@media (max-width: 1199px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 1200px;
  }
}

.header-carousel .owl-nav .owl-prev {
  display: none;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -60px;
  right: 50%;
  transform: translateY(-50%);
  margin-right: -60px;
  border-radius: 60px;
  background: #A61D21;
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: carousel-next-btn;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  transition: 1s;
}

@keyframes carousel-next-btn {
  0% {
    margin-top: 35%;
  }
  50% {
    margin-bottom: 70%;
  }
  100% {
    margin-top: 35%;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.carousel-caption .ticket-form {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@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%;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/page-header.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
/* ABOUT SECTION */

.about .about-img .about-img-inner {
  width: 200px; /* ⬅ reduce size */
  height: 200px; /* ⬅ reduce size */
}

.about .about-img .about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about {
  /* background: #f9fafb; */
}

/* LEFT MEDIA */
.about-img {
  position: relative;
}

.about-video {
  height: 100%;
  object-fit: cover;
}

/* INNER CIRCLE IMAGE */
.about-img-inner {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 120px;
  height: 120px;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EXPERIENCE BADGE */
.about-experience {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #A61D21;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
}

/* RIGHT CONTENT */
.about-content-box {
  padding-left: 10px;
}

.about-heading {
  font-size: 28px;
  font-weight: 700;
}

.sub-title {
  color: #A61D21;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

/* TEXT */
.about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FEATURE LIST (NO GAP FIX) */
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  line-height: 1.4;
}

.about-feature i {
  font-size: 18px;
  color: #A61D21;
  line-height: 1;
}

.about-feature span {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* REMOVE BOOTSTRAP EXTRA SPACE */
.about-content-box .row {
  margin-bottom: 0 !important;
}

.about-content-box .col-md-6 {
  margin-bottom: 0 !important;
}

/* CTA BUTTON */
.about-btn {
  margin-top: 10px;
}
.about-feature.premium {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.about-feature.premium i {
  color: #f97316;
  font-size: 16px;
}

.about-feature.premium:last-child {
  border-bottom: none;
}

.about-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-top: 10px;
}

/*** About End ***
/*** Feature Start ***/
.feature .feature-item {
  position: relative;
  border-radius: 10px;
  background: var(--bs-light);
}

.feature-item .feature-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin-top: 0;
  margin-right: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
  position: relative;
  z-index: 5;
}
/*** Feature End ***/

/*** Service Start ***/
/* .service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
} */

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item .service-text {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.service-item .service-img {
  transition: 0.5s;
}

.service-item:hover .service-img {
  transform: scale(1.2) rotate(7deg);
}

/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--bs-white);
  z-index: 5;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  background: var(--bs-primary);
  border-radius: 10px;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-dark);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item:hover:after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.team .team-item .team-content .team-icon {
  background: var(--bs-light);
  border-radius: 10px;
  display: flex;
  display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-primary);
}

.team .team-item .team-content p {
  color: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-content p {
  color: var(--bs-body);
}
/*** Team End ***/

/*** Footer Start ***/
/*** Footer ***/
.footer {
  color: var(--bs-tertiary);
  background: linear-gradient(90deg, black, black);
  background-size: cover;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: white;
  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: var(--bs-light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*** Footer End ***/

.bg-primary {
  background-color: #A61D21 !important;
}
.text-primary {
  color: #A61D21 !important;
}
.btn-primary {
  color: white;
  background-color: #A61D21 !important;
  border-color: white;
}
.btn.btn-primary {
  color: white;
  border: none;
  font-weight: bold;
}
.border-primary {
  border-color: #A61D21 !important;
}

/* Table Content  */
.card {
  width: 90%; /* This makes the card take up 90% of the screen width */
  max-width: 1200px; /* Optional: Sets a maximum width for very large screens */
  background-color: #fbfbfb;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.card h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.section:last-child {
  border-bottom: none;
}

.section h3 {
  color: #555;
  margin-top: 0;
  font-size: 1em;
}

.section p,
.section li {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
}

.section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.simple-section-title {
  text-align: left; /* or center */
  margin-bottom: 20px;
}

.simple-section-title h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.simple-section-title .underline {
  display: block;
  height: 3px;
  background: #A61D21;
  margin-top: 6px;
}

/* End Table Content  */

/* Start table data  */
.table-data {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.table-data th {
  background-color: #f5f5f5;
  color: black;
  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: #000;
}

.unique {
  background-color: #f2f2f2;
  font-weight: bold;
}

.unique-2 {
  /* font-style: italic; */
}

.table-data tr:hover {
  background-color: #f1f1f1;
}

.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: "➤"; /* arrow bullet */
  position: absolute;
  left: 0;
  color: #A61D21;
  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;
}

/*** Subscribe Start ***/
.parallel-window {
  background:
    linear-gradient(rgb(0, 0, 0, 0.3), rgb(0 0 0 / 60%)),
    url(../img/flange-banner.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallel-window .subscribe-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.parallel-window .subscribe-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.parallel-window .subscribe-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/* Table Styling */
.table-data {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 15px;
}

.table-data th,
.table-data td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
}

.table-data th {
  background-color: #A61D21;
  color: #fff;
  font-weight: 600;
}

.table-data tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;

}

/* .btn-custom {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color:  #A61D21;
    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;
  } */

.btn-custom:hover {
  background-color: #A61D21;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Icon Circle Styling */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #085684;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-custom:hover .icon-circle {
  background-color: #A61D21;
  color: #fff;
  transform: rotate(10deg);
}

@media (max-width: 767px) {
  .btn-custom {
    flex: 100%;
    min-width: unset;
  }
}

/* ss material data */

.steel-composition-section {
  max-width: 1100px;
  /* margin: 20px auto; */
  /* padding: 25px; */
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  /* margin-top: 90px; */
}

.steel-intro {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.new-font-style {
  color: #A61D21;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
}

.steel-list {
  list-style: none;
  padding-left: 0;
}

.steel-list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
  display: flex;
  align-items: center;
}

.steel-list li i {
  color: #A61D21;
  margin-right: 8px;
  font-size: 14px;
}

.table-data ideal,
.steel-code-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table-data ideal th,
.table-data ideal td,
.steel-code-table th,
.steel-code-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.table-data ideal th,
.steel-code-table th {
  background: #3949ab;
  color: white;
}

.steel-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.steel-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.steel-text {
  margin-bottom: 15px;
}

/* top scroll */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle i {
  font-size: 28px;
}

.scroll-indicator {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* transform: rotate(180deg); */
  font-weight: 600;
  letter-spacing: 1px;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 4px;
}
/* end top scroll */

.border-bottom {
  border-bottom: 1px solid #A61D21 !important;
}

/* flange box for all products  */
.product-highlight {
  margin-top: 30px;
  padding: 22px;
  background: #ffffff;
  border-left: 5px solid #A61D21;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-highlight h4 {
  font-size: 20px;
  font-weight: 700;
  color: #A61D21;
  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: #A61D21;
  font-weight: bold;
}

.ss-flange-wrapper {
  /* padding: 60px 0; */
  background: #ffffff;
}

.ss-flange-box {
  max-width: 1100px;
  margin: auto;
  background: #fefefe;
  background: ;
  border: 2px solid #A61D21;
  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: #A61D21;
  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: #A61D21;
  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  */

.ferrule-config {
    max-width: 950px;
    padding: 30px 0;
}

.ferrule-title {
    color:#A61D21;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.table-wrapper {
    overflow-x: auto;
}

.ferrule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.ferrule-table td {
    border: 1px solid #dcdcdc;
    padding: 12px 15px;
    vertical-align: top;
}

.ferrule-table td:first-child {
    width: 30%;
    font-weight: 600;
    background: #f5f7fb;
    color: #A61D21;
}

.ferrule-table tr:nth-child(even) {
    background: #fafafa;
}
