
/* === Base === */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  background-color: #f2f2f2;
  color: #2c2c2c;
}

.site-container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

/* === Header: Edge-fill + Centered Logo === */
.top-header-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 30px auto;
  border-radius: 24px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 232px;
  width: 100%;
  font-size: 0;
}

.logo-fill {
  flex: 1;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 2px 232px;
  background-position: center;
}

.left-fill {
  background-image: url('../images/logo/detailed_logo/logoEdgeLeft.jpg');
}

.right-fill {
  background-image: url('../images/logo/detailed_logo/logoEdgeRight.jpg');
}

.company-logo-detailed {
  display: inline-block;
  height: 232px;
  width: auto;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: none;
}

/* === Navigation === */
.nav-wrapper {
  padding-top: 10px;
}

.navbar {
  background-color: #91a3b0;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: 12px;
}

.nav-home .excavator-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nav-button {
  background-color: #c2a86b;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #a88f57;
}

.nav-button.active {
  background-color: #e0c075;
}

/* === Content === */
.page-content {
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);

  /* ✅ Ensure it matches the site container */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


.services-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.services-intro {
  font-size: 20px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === Info Section === */
.info-section {
  padding: 0 20px 60px;
  width: 100%;
  box-sizing: border-box;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  background-color: #fafafa;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.info-row.alt {
  flex-direction: row-reverse;
}

.info-image,
.info-text {
  flex: 1;
  min-width: 280px;
}

.info-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-text {
  text-align: left;
  padding: 0 20px;
}

.info-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #444;
}

.info-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* === Toggle Button === */
.toggle-button {
  display: block;
  margin: 40px auto 20px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-button:hover {
  background-color: #2b2b2b;
}
