:root {
  --dark-brown: #f1f1f1b7;
  --reddish-brown: #8b0000;
  --light-brown: #d2b48c;
  --accent-orange: #8b0000;
  --black: #000000;
  --white: #fcf5f5;
  --gray: #f5f5f5;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

header {
  background: #ffffff;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  border-bottom: 2px solid var(--reddish-brown);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Optional: add a semi-transparent overlay for improved readability */
.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Change opacity or color as needed */
  z-index: -1; /* Position it behind the text */
}

/* Fix logo and company name to fit on one line */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

nav {
  background-color: white;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  display: flex;
  gap: 2rem;
}

.main-menu li a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  font-weight: 500;
  padding: 15px 0;
  letter-spacing: 0.5px;
}

.main-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--reddish-brown);
  transition: width 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.main-menu li a:hover::after,
.main-menu li a.active::after {
  width: 100%;
}

.main-menu li a[href="index.html"] {
  color: var(--black);
}

.main-menu li a[href="services.html"],
.main-menu li a[href="about.html"],
.main-menu li a[href="contact.html"] {
  color: var(--black);
}

/* Fix mobile menu styling */
.mobile-menu-button {
  display: none;
  cursor: pointer;
  color: var(--black);
  font-size: 1.5rem;
  padding: 0.5rem;
  border: none;
  background: transparent;
  z-index: 1001;
  position: relative;
}

.mobile-menu-button i {
  font-size: 1.5rem;
  pointer-events: none; /* This ensures clicks go through to the button */
}

.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  padding: 2rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: -1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  animation: fadeUp 1.2s ease-out;
  background: rgba(156, 26, 26, 0.379);
  padding: 2rem;
  border-radius: 0px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--reddish-brown);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--box-shadow);
  line-height: 1.2;
}

.hero-content p {
  background: var(--white);
  color: var(--black);
  padding: 1.5rem;
  border-left: 4px solid var(--reddish-brown);
  box-shadow: 0 2px 8px rgba(141, 100, 100, 0.2);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Fix CTA button styling */
.cta-button,
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--reddish-brown);
  color: var(--white);
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  text-transform: uppercase;
  cursor: pointer;
}

.cta-button:hover,
.btn:hover {
  background-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  color: var(--white);
}

.services {
  padding: 5rem 2rem;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--reddish-brown);
  border-radius: 3px;
}

/* Fix service card spacing */
.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 0px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 200px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--reddish-brown);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(210, 180, 140, 0.3);
}

.service-card h3 {
  color: var(--black);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-card h3 i {
  color: var(--reddish-brown);
  font-size: 1.2em;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fix why choose section */
.why-choose {
  background: var(--white);
  border-radius: 0px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  margin: 4rem auto;
  padding: 3rem 2rem;
  max-width: 1200px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--black);
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 20px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--reddish-brown);
  border-radius: 3px;
}

/* Fix feature icons */
.feature-icon {
  color: var(--reddish-brown);
  font-size: 2.2rem;
  margin-right: 1.8rem;
  padding: 18px;
  background: rgba(139, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(139, 0, 0, 0.1);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(139, 0, 0, 0.2);
}

.feature-item {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 2rem;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(210, 180, 140, 0.2);
}

.feature-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.industries {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.industries-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 900px;
}

/* Fix industry cards */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--reddish-brown);
  color: white;
  padding: 2rem 1.2rem;
  border-radius: 0px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.industry-card i {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.industry-card:hover i {
  transform: scale(1.2);
  color: var(--white);
}

.industry-card span {
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem 2rem;
  margin-top: 6rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--reddish-brown);
  transition: width 0.3s ease;
}

.footer-column:hover h3::after {
  width: 60px;
}

.footer-column p,
.footer-column a,
.contact-list li,
.quick-links li a {
  color: var(--white);
  margin-bottom: 0.8rem;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover,
.contact-list a:hover,
.quick-links li a:hover {
  color: var(--reddish-brown);
}

/* Fix footer bottom copyright text */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-bottom p {
  max-width: 100%;
  display: inline-block;
}

/* Fix social icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--reddish-brown);
  background: rgba(255, 255, 255, 0.2);
}

.cta {
  padding: 5rem 2rem;
  background: var(--reddish-brown);
  text-align: center;
  color: white;
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C-svg%3E");
  opacity: 0.2;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .cta-container h2 {
    text-align: center;
  }
}

.cta-container {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .cta-container {
    text-align: left;
  }
}

.cta h2 {
  margin: 0 0 15px 0;
  padding: 0 15px;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: black;
  color: var(--white);
  text-decoration: none;
  border-radius: 0px;
  transition: var(--transition-smooth);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--white);
  color: var(--white);
}

.slide-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--reddish-brown);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
}

.emphasis {
  font-weight: 500;
  font-style: italic;
  color: var(--black);
  background: var(--white);
  padding: 2rem;
  border-radius: 0px;
  margin-top: 3.5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--reddish-brown);
  position: relative;
  overflow: hidden;
}

.diagonal-shape {
  position: fixed;
  width: 300px;
  height: 300px;
  background-color: var(--reddish-brown);
  z-index: -5;
  opacity: 0.1;
  transform: rotate(45deg);
}

.diagonal-shape.top-left {
  top: -150px;
  left: -150px;
}

.diagonal-shape.bottom-right {
  bottom: -150px;
  right: -150px;
}

.contact-section {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.success-message,
.error-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  border-radius: 10px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.success-message {
  background: #4caf50;
}

.error-message {
  background: #f44336;
}

.success-message i,
.error-message i {
  font-size: 2em;
  margin-bottom: 10px;
}

.submitting .submit-btn {
  position: relative;
  pointer-events: none;
}

.submitting .submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h2 {
  color: var(--reddish-brown);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--reddish-brown);
}

.contact-details {
  margin-top: 2rem;
}

/* Fix contact item styling to keep icon and text on same line */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.contact-item i {
  color: var(--reddish-brown);
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.contact-item a:hover {
  color: var(--reddish-brown);
}

/* Fix contact list in footer to keep icon and text on same line */
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-list li i {
  color: var(--reddish-brown);
  font-size: 1.2rem;
  margin-right: 0.8rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-list li a,
.contact-list li span {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  flex-grow: 1;
}

.contact-list li a:hover {
  color: var(--reddish-brown);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 0px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--reddish-brown);
}

.submit-btn {
  background-color: var(--reddish-brown);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: var(--black);
  transform: translateY(-2px);
}

.map-container {
  margin-top: 4rem;
  width: 100%;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;
}

.services-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(139, 0, 0, 0.7)), url("Metallin.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 80px;
}

.detailed-services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-section {
  margin-bottom: 4rem;
  background-color: var(--white);
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 2rem;
}

.service-content h2 {
  color: var(--reddish-brown);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
}

.service-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--reddish-brown);
}

.service-imgs {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 1.5rem 0;
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.service-content:hover .service-imgs {
  transform: scale(1.03);
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
  transition: transform 0.3s ease;
}

.service-features li:hover {
  transform: translateX(10px);
}

.service-features li i {
  color: var(--reddish-brown);
}

.strength-item {
  margin-bottom: 1.5rem;
}

.strength-item h4 {
  color: var(--reddish-brown);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .main-menu {
    display: flex;
  }
  .mobile-menu-button {
    display: none;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  /* Fix mobile menu styling */
  .mobile-menu-button {
    display: block;
  }

  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu li {
    margin: 0.5rem 0;
  }

  .main-menu li a {
    display: block;
    padding: 0.75rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .diagonal-shape {
    width: 150px;
    height: 150px;
  }
  .cta-container {
    text-align: center;
  }

  /* Make footer copyright text responsive */
  .footer-bottom {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    line-height: 1.4;
    white-space: normal;
  }
}

.features-container {
  padding: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

