* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:'Roboto', sans-serif;
  color: #222;
  background:#2e2e2e;
  line-height: 1.6;
}

h1,h2,h3{
font-family:'Oswald', sans-serif;
letter-spacing:1px;
}

h2{
 color:#bbaa8e;
}

nav a{
color:white;
padding:16px 22px;
display:inline-block;
text-decoration:none;
font-weight:600;
font-size:15px;
}

.container {
  background:#3a3a3a;
  color:white;
  max-width:1200px;
  margin:auto;
  padding:60px 25px;
}

.site-header {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.site-header h1 {
  margin: 0 0 8px;
}

.site-nav {
  background: #333;
  text-align: center;
}

.site-nav .container {
  padding: 14px 0;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 14px;
  font-weight: bold;
}

.hero{
  background-attachment:fixed;
  background-image:url("../images/welding-hero.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero2{
  background-attachment:fixed;
  background-image:url("../images/hero2.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero3{
  background-attachment:fixed;
  background-image:url("../images/hero3.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero4{
  background-attachment:fixed;
  background-image:url("../images/hero4.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height:450px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero-overlay{
  background:rgba(0,0,0,0.5);
  padding:40px;
  border-radius:4px;
}

.hero h2{
  font-size:44px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
}

.button {
  display:inline-block;
  background:#bbaa8e;
  color:white;
  padding:12px 24px;
  text-decoration:none;
  border-radius:4px;
  font-weight:bold;
  transition:0.2s;
}

.button:hover{
background:#bbaa8e;
}

.section {
  padding: 60px 20px;
  background: #fff;
}

.section.alt {
  background: #ececec;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.card {
  flex: 1 1 250px;
  background:#f5f5f5;
  color:#222;
  padding: 20px;
  border-radius: 8px;
}

.site-footer {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.service-box{
background:white;
color:#222;
padding:25px;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.service-box h3{
color:#222;
}

.service-box:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.service-box p{
color:#333;
}

.service-box img{
width:100%;
height:180px;
object-fit:cover;
border-radius:5px;
margin-bottom:15px;
}

.top-header{
background:linear-gradient(#3a3a3a,#2b2b2b);
padding:15px 30px;
color:white;
}

.header-inner{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:60px;
}

.main-nav{
	background:#2e2e2e;
text-align:center;
border-top:1px solid #444;
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.main-nav a{
color:white;
text-decoration:none;
padding:16px 18px;
display:inline-block;
font-weight:500;
transition:0.2s;
}

.main-nav a:hover{
background:#bbaa8e;
color:#222;
}

.contact-info{
font-size:15px;
color:white;
}

.reviews-section{
background:#e9e9e9;
padding:80px 20px;
text-align:center;
}

.reviews-container{
max-width:700px;
margin:40px auto;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1000px;
margin:40px auto;
}

.review-box{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
text-align:left;
}

.review-box h3{
margin-top:0;
color:#222;
}

.stars{
color:#d4a94b;
font-size:22px;
margin-bottom:10px;
}

.review-box p{
color:#333;
}

.review-date{
font-size:14px;
color:#666;
}

.reviews-button-wrap{
margin-top:20px;
}

.review-item{
padding-bottom:25px;
margin-bottom:25px;
border-bottom:1px solid #d6d6d6;
text-align:center;
}

.review-item:last-child{
border-bottom:none;
}

.review-item h3{
margin-bottom:5px;
color:#222;
}

.review-item p{
color:#333;
max-width:600px;
margin:auto;
}

.review-date{
display:block;
margin-top:10px;
color:#666;
}

.reviews-button-wrap{
margin-top:40px;
}

.contact-bottom{
  background:#e9e9e9;
  padding:80px 20px;
	text-align:center;
}

.contact-bottom-wrap{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:start;
}

.find-us h2,
.contact-us h2{
  color:#111;
  text-align:center;
margin-bottom:20px;
}

.map-box{
  margin:auto;
max-width:450px;
}

.directions-button{
  display:block;
  margin:20px auto 0 auto;
background:#bbaa8e;
color:#111;
padding:16px 20px;
text-decoration:none;
font-weight:bold;
width:220px;
}

.directions-button:hover{
  background:#a89879;
}

.contact-us h3{
  margin:0 0 10px;
  color:#111;
}

.contact-us p{
  color:#222;
  line-height:1.8;
  margin:0 0 20px;
}

.contact-us a{
  color:#111;
  text-decoration:underline;
}

.payment-icons{
  display:flex;
justify-content:center;
gap:12px;
margin-top:20px;
flex-wrap:wrap;
}

.payment-icons span{
  background:#111;
  color:#fff;
  font-size:13px;
  padding:8px 12px;
  border-radius:2px;
  display:inline-block;
}

.payment-icons img{
  height:30px;
  width:auto;
  display:block;
}

.product-list{
	text-align: left;
  margin:0 0 40px 25px;
  padding:0 0 0 18px;
}

.product-list2{
 display:inline-block;
text-align:left;
padding-left:20px;
margin:20px auto 0;
}

.product-list li{
  color:#222;
  font-size:18px;
  line-height:1.8;
  margin-bottom:2px;
}

.card-full{
grid-column:1 / -1;
}

.brands-card{
text-align:center;
}

.brand-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:25px 60px; /* row gap / column gap */
max-width:700px;
margin:25px auto 0;
align-items:center;
justify-items:center;
}

/* Logo styling */

.brand-grid img{
width:100%;
max-width:140px;
height:70px;
object-fit:contain;
display:block;
margin:auto;
opacity:0.85;
transition:0.3s;
background:#fff;
padding:12px;
border-radius:6px;
}

.brand-grid img:hover{
filter:grayscale(0%);
opacity:1;
transform:scale(1.05);
}

.brands-card{
	background-color: darkgrey;
margin-top:40px;
}

.inner-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.contact-info-top{
  font-size:15px;
  color:#fff;
  text-align:right;
}

.contact-main-section{
  background:#bbaa8e;
  padding:0;
}

.contact-main-wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:stretch;
}

.contact-map-column iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:390px;
}

.contact-details-column{
  padding:30px 35px;
color:#111;
text-align:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
height:100%;
}

.contact-details-column h2{
  margin:0 0 16px;
  color:#111;
  font-size:26px;
}

.contact-details-column p{
  margin:0 0 18px;
  line-height:1.9;
  color:#111;
}

.contact-details-column a{
  color:#111;
}

.directions-btn{
  display:inline-block;
  margin:8px auto 28px;
  min-width:220px;
}

.business-hours{
  margin-top:4px;
}

.business-hours h3{
  margin:0 0 18px;
  font-size:22px;
  color:#111;
}

.business-hours p{
  margin:0 0 8px;
  display:block;
  text-align:center;
margin-bottom:8px;
  gap:20px;
  font-size:15px;
  line-height:1.5;
}

.business-hours .hours-note{
  display:block;
  margin-top:14px;
  text-align:center;
}

.contact-cta{
  background:#efefef;
  padding:55px 20px 65px;
  text-align:center;
  border-top:1px solid #ddd;
}

.contact-cta h2{
  color:#111;
  margin:0 0 14px;
  font-size:38px;
}

.contact-cta p{
  color:#333;
  max-width:700px;
  margin:0 auto 28px;
  line-height:1.7;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width: 800px){
  .contact-bottom-wrap{
    grid-template-columns:1fr;
  }
@media (max-width: 900px){
  .contact-main-wrap{
    grid-template-columns:1fr;
  }

  .contact-map-column iframe{
    min-height:320px;
  }

  .page-title-section h1{
    font-size:40px;
  }

  .contact-info-top{
    font-size:14px;
  }
}

@media (max-width: 700px){
  .header-inner{
    flex-direction:column;
    text-align:center;
  }

  .contact-info-top{
    text-align:center;
  }

  .page-title-section h1{
    font-size:34px;
  }

  .contact-details-column{
    padding:28px 20px;
  }

  .business-hours p{
    flex-direction:column;
    gap:2px;
    text-align:center;
  }
}