/********** Template CSS **********/
:root {
  --primary: #008ea3;
  --secondary: #fe8800;
  --light: #f5f5f5;
  --dark: #14141f;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

.about-video {
    border-radius: 10px !important;
    overflow: hidden; /* ensures corners clip properly */
}


#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  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: 0px;
}
.btn-primary {
  color: #000;
  background-color: #008ea3;
  border-color: #008ea3;
}
.btn-primary:hover {
  color: white;
  background-color: #19afc0;
  border-color: #19afc0;
}
.btn:hover {
  color: white;
}

.custom-btn-outline {
  border: 2px solid #008ea3;
  color: #008ea3;
  background: transparent;
  transition: all 0.3s ease;
}

.custom-btn-outline:hover {
  background-color: #19afc0;
  border-color: #19afc0;
  color: #fff;
}

.custom-btn-solid {
  background-color: #008ea3;
  border: 2px solid #008ea3;
  color: #fff;
  transition: all 0.3s ease;
}

.custom-btn-solid:hover {
  background-color: #19afc0;
  border-color: #19afc0;
  color: #fff;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #000;
  background-color: #008ea3;
  border-color: #008ea3;
  box-shadow: 0 0 0 0.25rem rgba(14, 139, 189, 0.5);
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(5, 99, 161, 0.5);
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #008ea3;
}
a {
  color: #008ea3;
  text-decoration: none;
}

/* Bigger, premium buttons */
.btn-custom {
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background-color: #008ea3;
  color: white;
  border: none;
}

.btn-primary-custom:hover {
  background: #19afc0;
  /* box-shadow: 0 4px 12px rgba(13,110,253,0.4); */
}

.btn-outline-custom {
  border: 2px solid #19afc0;
  color: black;
  background: transparent;
}

.btn-outline-custom:hover {
  background-color: #19afc0;
  color: white;
  /* box-shadow: 0 4px 12px rgba(13,110,253,0.4); */
}

.text-center h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.text-primary {
  color: #008ea3 !important;
}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #008ea3 !important;
}

.navbar-light .navbar-brand img {
  max-height: 98px;
  transition: 0.5s;
  /* width: 180px; */
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: #008ea3;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
/* ===== FORCE HERO SECTION RESPONSIVE ===== */

/* =====================================================
   HERO SECTION RESPONSIVE (FINAL CLEAN VERSION)
   ===================================================== */

#heroCarousel {
  width: 100%;
  max-width: 380px;
  margin: auto;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.hero-header {
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero-header .pt-lg-5,
.hero-header .mt-lg-5 {
  padding-top: 0;
  margin-top: 0;
}

/* Tablet */
@media (max-width: 768px) {
  #heroCarousel { max-width: 260px; }
}

/* Mobile */
@media (max-width: 576px) {

  .hero-header {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-header h1 { font-size: 24px; }
  .hero-header h1 span { font-size: 20px; }
  .hero-header h2 { font-size: 14px; }
  .hero-header p  { font-size: 13px; }

  #heroCarousel { max-width: 200px; }

  #heroCarousel .carousel-item img {
    border-width: 4px;
  }

  .hero-header .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-header .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* ================= HERO MOBILE PERFECT LAYOUT ================= */
@media (max-width: 576px) {

  /* Section spacing */
  .hero-header {
    padding-top: 70px;
    padding-bottom: 35px;
  }

  /* Center everything */
  .hero-header .text-lg-start {
    text-align: center !important;
  }

  /* Heading balance */
  .hero-header h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-header h1 span {
    font-size: 18px;
  }

  .hero-header h2 {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .hero-header p {
    font-size: 13px;
    padding: 0 8px;
  }

  /* === BUTTON FIX (IMPORTANT) === */
  .hero-header .d-flex {
    flex-direction: column;   /* buttons one below other */
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-header .btn {
    width: 85%;               /* full width buttons */
    max-width: 260px;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
  }

  /* Carousel size */
  #heroCarousel {
    max-width: 180px;
    margin-top: 15px;
  }
}
/* ===== HERO BUTTON SPACING FIX ===== */

.hero-buttons {
  display: flex;
  gap: 14px;   /* spacing between buttons on desktop */
}

.hero-btn {
  min-width: 170px;
  text-align: center;
}

/* MOBILE STACK */
@media (max-width: 576px) {

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .hero-btn {
    width: 85%;
    max-width: 280px;
  }
}

/* Hero Section End */ 



/*** Hero Header ***/
.hero-header {
  background:
    linear-gradient(rgba(20, 20, 31, 0.7), rgba(20, 20, 31, 0.7)),
    url(../img/bacground-parallel.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  /* background: var(--primary); */
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/* Remove extra side spacing on small screens */
@media (max-width: 576px) {

    .container,
    .container-xxl {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .row.g-4 {
        --bs-gutter-x: 12px;  /* reduce left-right gap */
        --bs-gutter-y: 12px;  /* reduce top-bottom gap */
    }

    .service-item {
        padding: 12px;
    }

    .service-item h5 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .service-item i {
        font-size: 28px !important;
        margin-bottom: 12px;
    }
}
@media (max-width: 576px) {
  .container, .container-xxl {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .row.g-4 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }
}



/* package products  */
.package-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.35s ease;
}

.package-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.img-box {
  height: 230px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.package-item:hover img {
  transform: scale(1.1);
}

.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  text-align: center;
}

.content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #555;
}

.btn-group-custom {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.btn-custom {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 25px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) { .img-box { height: 200px; } }
@media (max-width: 768px) { .img-box { height: 180px; } }
@media (max-width: 480px) {
  .img-box { height: 160px; }
  .btn-group-custom { flex-direction: column; }
  .btn-custom { width: 100%; }
}

/* package products end  */



/*** Booking ***/
.booking {
  background:
    linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
    url(../img/booking.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .btn {
  background: #ffffff;
  color: var(--primary);
  border-radius: 20px;
  border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
  background: var(--primary);
  color: #ffffff;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  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 {
  letter-spacing: 1px;
  box-shadow: none;
  color: #008ea3;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: #008ea3;
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Extra css for custom designs */
.bg-primary {
  background-color: #008ea3 !important;
}
.border-primary {
  border-color: #008ea3 !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: #008ea3;
  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: #008ea3;
  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: #008ea3;
  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-top: 30px;
}

/* .btn-custom {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color: #008EA3;
    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: #008ea3;
  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: #008ea3;
  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: #008ea3;
  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: #085684;
  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 #008ea3 !important;
}

/* about start  */
.about-img { position: relative; }

.about-video {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
}

.about-img-inner {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #020024;
  color: #2fd1ff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  white-space: nowrap;
}

.about-heading { font-size: 30px; }
.about-text { font-size: 15px; line-height: 1.7; }

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

/* FIX BLUE LINE OVERFLOW */
.section-title.text-start::after {
  max-width: 120px;
}

/* TABLET */
@media (max-width: 991px) {
  .about-video { max-height: 420px; }
  .about-img-inner { width: 110px; height: 110px; bottom: -15px; left: -15px; }
  .about-heading { font-size: 26px; }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-video { max-height: 300px; }
  .about-img-inner { width: 85px; height: 85px; bottom: -10px; left: 10px; border-width: 4px; }
  .about-experience { top: 10px; left: 10px; font-size: 12px; padding: 5px 12px; }
  .about-heading { font-size: 22px; }
  .about-btn { width: 100%; text-align: center; }

  .section-title.text-start::after {
    width: 60px !important;
  }
}

/* about end  */

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-buttons .btn-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.contact-buttons .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

/* Icon Circle */
.contact-buttons .icon-circle {
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #1e3c72;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* WhatsApp Button */
.contact-buttons .btn-custom:nth-child(1) {
    background: linear-gradient(135deg, #008ea3, #008ea3);
}
.contact-buttons .btn-custom:nth-child(1) .icon-circle {
    color: #25d366;
}

/* Mail Button */
.contact-buttons .btn-custom:nth-child(2) {
    background: linear-gradient(135deg, #008ea3, #008ea3);
}
.contact-buttons .btn-custom:nth-child(2) .icon-circle {
    color: #008ea3;
}

/* Call Button */
.contact-buttons .btn-custom:nth-child(3) {
    background: linear-gradient(135deg, #008ea3, #008ea3);
}
.contact-buttons .btn-custom:nth-child(3) .icon-circle {
    color: #008ea3;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
