/********** Template CSS **********/
:root {
  --bs-tertiary: #797e88;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-normal {
  font-weight: 400 !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 {
  transition: 0.5s;
}

.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;
}
.bg-primary {
    background-color: #B59666!important;
}
.btn-primary {
    color: #000;
    background-color: #C3a773;
    border-color:#C3a773;
}

.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle {
    color: #000;
    background-color: rgb(11, 0, 37);
    /* border-color: rgb(255,180.3,25.5) */
}
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: #fff;
    background-color: rgb(5, 5, 53);
    /* border-color: rgb(255, 180, 26); */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover {
    color: #fff;
    background-color: #C3a773;
    border-color:#C3a773;
}
/*** Top Bar ***/
.top-bar {
  height: 90px;
  padding: 0 90px;
}

.top-bar h6 {
  letter-spacing: 1px;
}

/*** Nav Bar ***/
.nav-bar {
  padding: 0 90px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 20px 0;
  color: var(--bs-dark);
  font-size: 18px;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  vertical-align: 3px;
  margin-left: 7px;
  transition: transform 0.3s ease;
}

.navbar .nav-item.show .dropdown-toggle::after {
  transform: rotate(135deg);
  vertical-align: 0px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    border-top: 1px solid var(--bs-white);
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
.bg-secondary {
    background-color: #1c202e !important;
}
.btn-secondary {
    color: #fff;
    background-color: #1c202e;
    border-color: #1c202e;
}
.btn-dark {
    color: #fff;
    background-color: #1c202e;
    border-color: #1c202e;
}
.btn-light {
    color: #ffffff;
    background-color: #1c202e;
    border-color: #1c202e;
}
/*** Header Carousel ***/
.header-carousel {
  position: relative;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.header-carousel .carousel-img {
  position: relative;
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bs-dark);
  background: #C3a773;
}

.page-header {
  background: url(../img/subheader.webp) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
  color: white;
}
@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
        color: white;
    }
}
/*** Video ***/
.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--bs-dark);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--bs-dark);
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--bs-dark);
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--bs-white);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: var(--bs-white);
  background: #000000;
  opacity: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 0px;
  top: 5px;
  left: -40px;
  border-top: 2px solid var(--bs-primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 0px;
  bottom: 6px;
  left: -60px;
  border-bottom: 2px solid var(--bs-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;
}

/*** About ***/
/* .about-img {
  position: relative;
}

.about-img::before,
.about-img::after {
  position: absolute;
  content: "";
  width: 33%;
  height: 90px;
  background: var(--bs-white);
}

.about-img::before {
  top: 0px;
  left: 0px;
}

.about-img::after {
  right: 0px;
  bottom: 0px;
} */

/*** Service ***/
.service-title {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.service-item {
  overflow: hidden;
}

.service-item .btn-square {
  width: 65px;
  height: 65px;
}

.service-item a {
  position: relative;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  transition: 0.5s;
}

.service-item a::after {
  position: absolute;
  content: "";
  width: 500%;
  height: 0;
  left: 100%;
  bottom: 3px;
  margin-left: 10px;
  border-bottom: 2px solid var(--bs-primary);
}

/*** Donation ***/
.donation-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}

.donation-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.donation-item .donation-progress {
  width: 80px;
}

.donation-item .progress .progress-bar {
  height: 20px;
  overflow: visible;
  transition: 3s;
}

/*** Banner ***/
.banner .banner-inner {
  position: relative;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}

.banner .banner-inner::before {
  top: 0;
  left: 0;
  border-top: 150px solid var(--bs-primary);
  border-right: 150px solid transparent;
}

.banner .banner-inner::after {
  right: 0;
  bottom: 0;
  border-bottom: 150px solid var(--bs-secondary);
  border-left: 150px solid transparent;
}

/*** Event ***/
.event-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}

.event-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*** Donate ***/
.donate .donate-text {
  position: relative;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}

.donate .donate-text::before {
  top: 0;
  left: 0;
  border-top: 150px solid var(--bs-primary);
  border-right: 150px solid transparent;
}

.donate .donate-text::after {
  right: 0;
  bottom: 0;
  border-bottom: 150px solid var(--bs-secondary);
  border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
  border: none;
  background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group {
  display: flex;
}

.donate .donate-form .btn-group .btn {
  margin: 0;
  padding: 0;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--bs-tertiary);
  background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group .btn-check:checked + .btn {
  border: none;
  background: var(--bs-white);
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}

.team-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.team-item .team-detail span {
  letter-spacing: 2px;
}

/*** Testimonial ***/
.testimonial-title {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-img {
  position: relative;
  padding: 45px 0 45px 90px;
}

.testimonial-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(50% + 45px);
  height: 100%;
  background: var(--bs-primary);
  z-index: -1;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
  width: 45px;
  height: 45px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
  color: var(--bs-secondary);
  background: var(--bs-white);
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-nav {
    top: 6.3rem;
  }
}

/*** Footer ***/
/* .footer {
  color: var(--bs-tertiary);
  background: linear-gradient(rgba(5, 19, 17, 0.95), rgba(5, 19, 17, 0.95)),
    url(../img/bg-footer.jpg) center center no-repeat;
  background-size: cover;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--bs-tertiary);
  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);
} */
/* Table Content  */

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.faqs .row {
  position: relative;
}

.faqs .row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(50% - 0.5px);
  background: #eee;
}

.faqs #accordion-1 {
  padding-right: 15px;
}

.faqs #accordion-2 {
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  .faqs .row::after {
    display: none;
  }

  .faqs #accordion-1,
  .faqs #accordion-2 {
    padding: 0;
  }

  .faqs #accordion-2 {
    padding-top: 15px;
  }
}

.faqs .card {
  margin-bottom: 15px;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
}

.faqs .card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.faqs .card:last-child {
  margin-bottom: 0;
}

.faqs .card-header {
  padding: 0;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
}

.faqs .card-header a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
  color: #121518;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: 0.3s;
  background: #fff;
}

.faqs .card-header a::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: #C3a773;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  transition: 0.3s;
}

.faqs .card-header a[aria-expanded="true"] {
  color: #C3a773 !important;
  background: #1c202e !important;
  border-color: #1c202e !important;
}

.faqs .card-header a[aria-expanded="true"]::after {
  content: "\2212";
  color: #C3a773;
}

.faqs .card-body {
  padding: 16px 20px;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  box-shadow: none !important;
}


/*=========================
      Premium Footer
=========================*/

.footer{
    background:#1C202E;
    color:#fff;
    padding:80px 0 0;
}

.footer h3,
.footer h4{
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
}

.footer p{
    color:rgba(255,255,255,.75);
    line-height:30px;
}

.footer-logo{
    font-size:34px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

.footer-logo span{
    color:#B59666;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.footer-contact i{
    color:#B59666;
    width:20px;
    font-size:17px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    padding:8px 0;
    transition:.35s;
}

.footer-links a i{
    color:#B59666;
    margin-right:10px;
}

.footer-links a:hover{
    color:#B59666;
    padding-left:8px;
}

.footer-divider{
    border-left:1px solid rgba(181,150,102,.25);
    padding-left:60px;
}

.footer-newsletter{
    position:relative;
    margin-top:25px;
}

.footer-newsletter input{
    width:100%;
    height:60px;
    background:#252A3A;
    border:1px solid rgba(181,150,102,.25);
    border-radius:50px;
    color:#fff;
    padding:0 70px 0 25px;
}

.footer-newsletter input::placeholder{
    color:#cfcfcf;
}

.footer-newsletter input:focus{
    border-color:#B59666;
    box-shadow:none;
    outline:none;
}

.footer-newsletter button{
    position:absolute;
    top:7px;
    right:8px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#B59666;
    color:#fff;
    transition:.4s;
}

.footer-newsletter button:hover{
    background:#fff;
    color:#1C202E;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#252A3A;
    border:1px solid rgba(181,150,102,.30);
    color:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:#B59666;
    color:#fff;
    transform:translateY(-4px);
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(181,150,102,.25);
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.70);
}

.footer-bottom a{
    color:#B59666;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#fff;
}

@media(max-width:991px){

.footer-divider{
    border-left:none;
    padding-left:15px;
    margin-top:50px;
}

}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #B59666;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

.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: #C3a773;
  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: #C3a773;
  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/test-parallel.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: #1c202e;
    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: #1c202e;
    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: #F97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Icon Circle Styling - contact buttons only */
  .btn-custom .icon-circle {
    background-color: #fff;
    color: #085684;
    width: 35px;
    height: 35px;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .btn-custom:hover .icon-circle {
    background-color: #F97316 !important;
    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: #C3a773;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.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%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#why-choose-us .icon-circle {
    margin: 0 auto;
}
.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 #F97316 !important;
}

/*** Footer Redesign ***/
.footer {
    background: #1c202e;
    padding: 60px 0 30px;
    color: #aaa;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.footer-contact p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: #C3a773;
    width: 16px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #C3a773;
    color: #fff;
}

.footer-divider {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 40px;
}

@media (max-width: 991px) {
    .footer-divider {
        border-left: none;
        padding-left: 15px;
        margin-top: 40px;
    }
}

.footer h4 {
    color: #B59666;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #C3a773;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.footer-links a i {
    color: #C3a773;
    font-size: 12px;
}

.footer-links a:hover {
    color: #C3a773;
    padding-left: 4px;
}

.footer-newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    overflow: hidden;
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
}

.footer-newsletter input::placeholder {
    color: #888;
}

.footer-newsletter button {
    background: #C3a773;
    border: none;
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #1c202e;
    border-left: 1px solid #C3a773;
}

/*** Product Cards ***/
.card-img-top {
    height: 251px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card {
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #efefef !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background: #fff !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.13) !important;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.card-body {
    padding: 18px 20px 20px !important;
    border-top: 3px solid #C3a773;
}
.card-title {
    font-weight: 700;
    font-size: 15.5px;
    color: #1c202e;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.card-text {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}
.card .d-flex.gap-2 .btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

/*** Why Choose Us ***/
#why-choose-us .bordered-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
#why-choose-us .bordered-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #B59666;
    margin: 8px auto 0;
    border-radius: 2px;
}
.card-hover {
    transition: all .35s ease;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
    border-color: #B59666;
}
.card-hover:hover .icon-circle {
    background-color: #1C202E !important;
    color: #fff !important;
    transform: rotate(8deg);
}
.card-hover h5 {
    color: #1C202E;
    margin-bottom: 15px;
    font-weight: 700;
}
.card-hover p {
    line-height: 1.7;
}

/*** Sidebar Product Buttons ***/
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { margin-bottom: 10px; }
.custom-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-align: left;
    text-decoration: none;
    color: white;
    background-color: #1c202e;
    border: 2px solid #C3a773;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}
.custom-btn:hover {
    color: #ffffff;
    background-color: #C3a773;
    border-color: #C3a773;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.custom-btn i.fa-chevron-right {
    font-size: 14px;
    color: inherit;
    margin-right: 15px !important;
    transition: margin-right 0.3s ease;
}
.custom-btn:hover i.fa-chevron-right {
    color: #ffffff;
    margin-right: 20px !important;
}