img {
  max-width: 100%;
  width: 100%;
  height: auto;
  loading: lazy;
}

.brand-red {
  color: #ce3227;
}

.btn-danger {
  background-color: #ce3227;
}

body {
  background-color: #0c1013;
  font-family: "Work Sans", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
}

/* Accessibility Improvements */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 1000;
  color: white;
  background: #ce3227;
  padding: 8px;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced Form Styling */
.form-control:focus {
  border-color: #ce3227;
  box-shadow: 0 0 0 0.2rem rgba(206, 50, 39, 0.25);
}

.form-select:focus {
  border-color: #ce3227;
  box-shadow: 0 0 0 0.2rem rgba(206, 50, 39, 0.25);
}

/* Loading States */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Alert Styling */
.alert {
  border-radius: 8px;
  border: none;
}

.alert-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: #75b798;
  border-left: 4px solid #198754;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: #ea868f;
  border-left: 4px solid #dc3545;
}

/* Enhanced Button States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(206, 50, 39, 0.25);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced Navigation */
.navbar {
  transition: background-color 0.3s ease;
  background-color: transparent;
  border: none;
}

.navbar.scrolled {
  background-color: rgba(12, 16, 19, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ce3227;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  cursor: pointer;
}

.back-to-top::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid white;
  transform: translateY(-2px);
}

.back-to-top:hover {
  background: #b02a37;
  color: white;
  transform: translateY(-2px);
}

.back-to-top:hover::before {
  border-bottom-color: white;
}

/* Enhanced Card Hover Effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Focus Indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #ce3227;
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn-danger {
    background-color: #000;
    border: 2px solid #fff;
  }
  
  .card {
    border: 2px solid #fff;
  }
}

nav {
  display: flex;
  justify-content: space-between;
}
nav a {
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  text-decoration: none;
  color: white;
  font-weight: 700;
  margin-right: 60px;
}
nav a:last-child {
  margin-right: 0;
}

.navbar {
  padding: 10px 20px;
}
.navbar .navbar-toggler {
  border: none;
  color: white;
  font-size: 24px;
}
.navbar .navbar-nav .nav-link {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}
.navbar .navbar-nav .nav-link:hover {
  color: #ce3227;
}
.navbar .btn-danger {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .navbar .btn-danger {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .navbar {
    padding: 0;
  }
  .navbar .container-fluid {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .navbar-collapse {
    position: absolute;
    left: 0;
    top: 70px;
    background-color: rgba(0, 0, 0, 0.968627451);
    padding: 10px;
    width: 100%;
  }
}
.burger {
  background: transparent;
  outline: 0;
  box-shadow: unset;
  color: white;
  border: 0;
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .burger {
    display: none;
  }
}

.hero {
  height: 696px;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 0;
  }
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 3, 3, 0.76);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 700px;
  max-width: 670px;
  width: 100%;
  margin-top: 140px;
}
.hero-content h1 {
  margin-bottom: 30px;
}
.hero-content p {
  margin-bottom: 20px;
  font-weight: 300;
}

.btn-service {
  max-width: 165px;
  height: 60px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-column,
.two-column {
  gap: 0 20px;
}
.three-column .item,
.two-column .item {
  text-align: center;
  background-color: #505050;
  border-radius: 10px;
  height: 144px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.expertise-component .expertise-content img,
.expertise-component .service-content img,
.service-component .expertise-content img,
.service-component .service-content img {
  max-width: fit-content;
}
@media only screen and (max-width: 576px) {
  .expertise-component .expertise-content,
  .expertise-component .service-content,
  .service-component .expertise-content,
  .service-component .service-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.expertise-component .expertise-content .expertise-right,
.expertise-component .service-content .expertise-right,
.service-component .expertise-content .expertise-right,
.service-component .service-content .expertise-right {
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .expertise-component .expertise-content .expertise-right,
  .expertise-component .service-content .expertise-right,
  .service-component .expertise-content .expertise-right,
  .service-component .service-content .expertise-right {
    padding-left: 0;
    margin-top: 30px;
  }
}

.expertise-component img {
  max-width: 100%;
  height: auto;
}

.our-service-subtext {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .our-service-subtext {
    margin-bottom: 20px;
  }
}

.our-service-content img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .our-service-content {
    flex-direction: column-reverse;
  }
  .our-service-content .item {
    margin-bottom: 20px;
  }
  .our-service-content:nth-child(odd) {
    flex-direction: column;
  }
}

.our-customer-component .item {
  text-align: center;
  background-color: #505050;
  border: 1px solid #383838;
  border-radius: 10px;
  height: 144px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  margin-bottom: 25px;
}

/* Customer/Client Items Styling - only for specific items, not customer component */
.our-customer-component .item.pb-4 {
  text-align: left;
  background-color: transparent;
  border: 1px solid #383838;
  border-radius: 8px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.our-customer-component .item.pb-4:hover {
  border-color: #ce3227;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 50, 39, 0.2);
}

.our-customer-component .item.pb-4 h4 {
  color: #ce3227;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.our-customer-component .item.pb-4 p {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.4;
  flex-grow: 1;
}

@media only screen and (max-width: 768px) {
  .our-customer-component .item.pb-4 {
    padding: 10px;
    margin-bottom: 15px;
    height: auto;
    min-height: 100px;
  }
  
  .our-customer-component .item.pb-4 h4 {
    font-size: 1rem;
  }
  
  .our-customer-component .item.pb-4 p {
    font-size: 0.9rem;
  }
}

.our-serice-space-right {
  padding-right: 80px;
}
@media only screen and (max-width: 768px) {
  .our-serice-space-right {
    padding-right: 0;
  }
}

.our-serice-space-left {
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .our-serice-space-left {
    padding-left: 0;
  }
}

.contact-us-address p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .contact-us-address {
    margin-top: 30px;
  }
}

form {
  max-width: 95%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  form {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
form label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
form .form-control,
form .form-select {
  background-color: transparent;
  border: 1px solid #f2f4f4;
  color: white;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}
form .form-control:focus, form .form-control::placeholder,
form .form-select:focus, form .form-select::placeholder {
  background-color: transparent;
  color: #cccccc;
}
form .form-control:focus,
form .form-select:focus {
  border-color: #ce3227;
  box-shadow: 0 0 0 0.2rem rgba(206, 50, 39, 0.25);
  outline: none;
}
form .form-select option {
  color: #000;
  background-color: white;
}
form button {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: #ce3227;
  border: none;
}
form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(206, 50, 39, 0.3);
}

iframe {
  border-radius: 35px;
}

/* filepath: c:\Users\Public\thermofab\sass\_footer.scss */
footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

footer h5 {
  color: #f8f9fa;
  margin-bottom: 20px;
  font-weight: bold;
}

footer p {
  line-height: 1.6;
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ffffff;
}

footer .back-to-top {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer .back-to-top:hover {
  color: #dc3545;
}

footer .text-center {
  color: #adb5bd;
  margin-top: 20px;
}

footer .container .row div {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .container .row div {
    text-align: center;
  }
}

.gallery-container {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .gallery-container {
    margin-bottom: 20px;
  }
}

.gallery-container img {
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-container h2 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .gallery-container h2 {
    margin-bottom: 20px;
  }
}

.page-service .hero {
  height: 400px;
}

.page-service .hero-content {
  margin-top: 80px;
}

.page-service .inner-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb-item {
  color: #ffffff;
}

.breadcrumb-item a {
  color: #ce3227;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
  content: ">";
}

/* FAQ Section Styles */
.faq-section {
  background-color: #1a1a1a !important;
}

.faq-section h2 {
  color: #ffffff;
}

.accordion-item {
  background-color: #2a2a2a;
  border: 1px solid #404040;
}

.accordion-button {
  background-color: #2a2a2a;
  color: #ffffff;
}

.accordion-button:not(.collapsed) {
  background-color: #ce3227;
  color: #ffffff;
}

.accordion-button:focus {
  border-color: #ce3227;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background-color: #2a2a2a;
  color: #ffffff;
  border-top: 1px solid #404040;
}

/* Related Services Styles */
.related-services {
  background-color: #0c1013;
}

.related-services h2 {
  color: #ffffff;
}

.card {
  background-color: #2a2a2a;
  border: 1px solid #404040;
}

.card:hover {
  transform: translateY(-5px);
}

.card-title {
  color: #ffffff;
}

.card-text {
  color: #cccccc;
}

.btn-outline-danger {
  color: #ce3227;
  border-color: #ce3227;
}

.btn-outline-danger:hover {
  background-color: #ce3227;
  border-color: #ce3227;
  color: #ffffff;
}

/* Print Styles */
@media print {
  .breadcrumb,
  .navbar,
  .btn,
  .back-to-top,
  .faq-section,
  .related-services {
    display: none !important;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000000;
  }
  
  p {
    color: #000000;
  }
}

/*# sourceMappingURL=style.css.map */

/* Contact Section Styling */
.contact-us-section {
  background-color: #1a1f24;
  border-radius: 15px;
  margin: 40px 0;
  padding: 40px 0;
}

.contact-us-section h2 {
  color: white;
  font-weight: 600;
  position: relative;
  margin-bottom: 40px;
}

.contact-us-section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ce3227;
  border-radius: 2px;
}

/* Enhanced Form Styling */
.form-label {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control,
.form-select {
  background-color: transparent;
  border: 1px solid #f2f4f4;
  color: white;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: transparent;
  color: white;
  border-color: #ce3227;
  box-shadow: 0 0 0 0.2rem rgba(206, 50, 39, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: #cccccc;
}

.form-select option {
  color: #000;
  background-color: white;
}

/* Responsive improvements for contact form */
@media only screen and (max-width: 576px) {
  .contact-us-section {
    margin: 20px 0;
    padding: 20px 15px;
  }
  
  form label,
  .form-label {
    font-size: 13px;
  }
  
  .form-control,
  .form-select {
    padding: 10px 12px;
    font-size: 13px;
  }
}
