* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #f7f7f9;
  color: #333;
}

.top-bar {
  background: #f1f1f3;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
  color: #666;
}

.header {
  background: #f5f5f8;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.logo {
  height: 100px;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #258cc9;
  font-weight: 500;
  transition: 0.2s;
}

.nav a:hover {
  color: #155d86;
}

.btn-quote {
  background: #35a6d6;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: bold;
}

.btn-quote:hover {
  background: #2b8bb6;
}

.hero {
  background: #959393;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.btn-services {
  display: inline-block;
  background: #d43d3d;
  color: white;
  padding: 14px 25px;
  margin-top: 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.btn-services:hover {
  background: #b73232;
}

.member {
  background: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
}

.member h2 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
}

.member .line {
  width: 60px;
  height: 3px;
  background: #c0392b;
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.member-logo {
  max-width: 150px;
  margin-top: 10px;
}

.services {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}

.services h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.services .line {
  width: 70px;
  height: 3px;
  background: #c0392b;
  margin: 0 auto 35px auto;
  border-radius: 2px;
}

.services p {
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  font-size: 15px;
}
.service-gallery {
  background: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
  transition: background 0.3s ease;
}

.gallery-item:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}
/* Tile Company Section */
.tile-company {
  background: #353334;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.tile-company h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.tile-company .line {
  width: 60px;
  height: 3px;
  background: #e74c3c;
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.tile-company p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
  font-size: 14px;
  color: #ddd;
}

.btn-contact {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #c0392b;
}

.before-after {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}

.before-after h2 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
}

.before-after .line {
  width: 70px;
  height: 3px;
  background: #e74c3c;
  margin: 0 auto 35px auto;
  border-radius: 2px;
}

.before-after-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.before-after-item {
  max-width: 360px;
  overflow: hidden;
  border-radius: 5px;
}

.before-after-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.4s ease;
}

.before-after-item:hover img {
  transform: scale(1.05);
}
.testimonials {
  background: #707070;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.testimonials h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.testimonials .line {
  width: 60px;
  height: 3px;
  background: #e74c3c;
  margin: 0 auto 50px auto;
  border-radius: 2px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  color: #333;
  width: 320px;
  border-radius: 4px;
  padding: 40px 25px 60px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #fff;
}

.testimonial-icon {
  width: 70px;
  height: 70px;
  background: #e74c3c;
  color: white;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #222;
  font-weight: bold;
}

.testimonial-card .stars {
  color: #e74c3c;
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.quote-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

.quote-left {
  flex: 1;
  background-color: #d43b3b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
}

.quote-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.quote-left p {
  font-size: 16px;
  letter-spacing: 0.5px;
}

.quote-right {
  flex: 1;
  background-color: #fff;
  padding: 60px;
}

.quote-right form {
  display: flex;
  flex-direction: column;
}

.quote-right label {
  margin: 10px 0 5px;
  font-weight: bold;
  font-size: 14px;
}

.quote-right input,
.quote-right textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.quote-right button {
  margin-top: 20px;
  padding: 12px;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-right button:hover {
  background-color: #d43b3b;
}
.footer {
  background-color: #f5f5f7;
  color: #333;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.footer-logo img {
  max-width: 220px;
}

.footer-contact, .footer-nav {
  flex: 1;
  margin: 20px;
}

.footer-contact h3,
.footer-nav h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin: 6px 0;
}

.footer-nav a {
  text-decoration: none;
  color: #3498db;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #d43b3b;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

.footer-bottom a {
  color: #3498db;
  text-decoration: none;
}