:root {
	--primary: #2c3e50;
	--secondary: #3498db;
	--accent: #e74c3c;
	--light: #ecf0f1;
	--dark: #1a2530;
	--text: #333;
	--text-light: #f8f9fa;
  }
  
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text);
	line-height: 1.6;
	background-color: #f5f5f5;
  }
  
  .container {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
  
  section {
	padding: 80px 0;
  }
  
  .section-header {
	text-align: center;
	margin-bottom: 50px;
  }

  .testimonials h2 {
	font-size: 36px;
	color: #fff !important;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
  }

  .section-header h2 {
	font-size: 36px;
	color: #000;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
  }
  
  .section-header h2:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--accent);
  }
  
  .section-header p {
	color: #666;
	max-width: 700px;
	margin: 0 auto;
  }
  
  .contact .section-header {
	margin-bottom: 12px;
  }
  
  header {
	background-color: var(--dark);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
  }
  
  .logo {
	font-size: 24px;
	font-weight: 700;
	color: white;
	text-decoration: none;
	margin-left: 1%;
  }
  
  .logo span {
	color: var(--accent);
  }
  
  .nav-links {
	display: flex;
	gap: 30px;
  }
  
  .nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
  }

  .nav-links .submenu-item a:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
  }

  .nav-links > a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
  }
  
  .nav-links > a:hover:after {
	width: 100%;
  }
  
  .nav-links .submenu-item a:hover:after {
	width: 100%;
  }
  
  .nav-cta {
	background-color: var(--accent);
	padding: 10px 20px;
	border-radius: 30px;
	color: white;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-right: 1%;
  }
  
  .nav-cta:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
  }
  
  .hero {
	height: 75vh;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
	  url("/images/carbon.jpg") no-repeat center center/cover;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	padding: 0;
	position: relative;
  }
  
  .hero-content {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .hero h1 {
	font-size: 48px;
	margin-bottom: 0px;
	text-transform: uppercase;
	letter-spacing: 2px;
  }
  
  .hero h2 {
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 500;
	color: #e74c3c;
  }
  
  .hero h3 {
	font-size: 16px;
	margin-bottom: 14px;
	font-weight: 400;
	font-style: italic;
	color: #c5c5c5;
  }
  
  .cta-button {
	display: inline-block;
	background-color: var(--accent);
	color: white;
	padding: 15px 30px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
  }
  
  .cta-button:hover {
	background-color: #c0392b;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .scroll-down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 30px;
	color: white;
	animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
	  transform: translateY(0) translateX(-50%);
	}
	40% {
	  transform: translateY(-20px) translateX(-50%);
	}
	60% {
	  transform: translateY(-10px) translateX(-50%);
	}
  }
  
  .about {
	background-color: white;
  }
  
  .about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	width: 80%;
	margin: 49px auto;
  }
  
  .about-image {
	border-radius: 10px;
	overflow: hidden;
	height: 250px;
	margin: auto;
  }
  
  .about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .about-image .logo-large {
	object-fit: contain;
  }
  
  .about-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
	color: var(--primary);
  }
  
  .about-text p {
	margin-bottom: 20px;
	font-size: 16px;
	color: #555;
  }
  
  .about-text .features {
	margin-top: 30px;
  }
  
  .feature {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
  }
  
  .feature-icon {
	width: 50px;
	height: 50px;
	background-color: #f1f1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 20px;
	color: var(--accent);
  }
  
  .services {
	background-color: #f9f9f9;
  }
  
  .services-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
  }
  
  .services-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
	color: var(--primary);
  }
  
  .services-content p {
	margin-bottom: 30px;
	font-size: 18px;
	color: #555;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 21px;
}
  
  .service-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
  }
  
  .service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
  }
  
  .service-info {
	padding: 6px 18px 0;
  }
  .service-cards P {
	margin-bottom: 11px !important;
  }
  .service-info h3 {
	font-size: 15px;
	margin-bottom: 10px;
	color: var(--primary);
	text-align: CENTER;
  }
  
  .service-info p {
	color: #666;
	margin-bottom: 15px;
  }
  
  .testimonials {
	background-color: var(--primary);
	color: white;
  }
  
  .testimonial-slider {
	max-width: 900px;
	margin: 0 auto;
  }
  
  .testimonial-card {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 30px;
	margin: 15px;
	text-align: center;
  }
  
  .testimonial-content {
	font-style: italic;
	font-size: 14px;
	margin-bottom: 20px;
  }
  
  .testimonial-rating {
	color: #f1c40f;
	font-size: 24px;
	margin-bottom: 10px;
  }
  
  .testimonial-author {
	font-weight: 600;
	font-size: 18px;
  }
  
  .gallery {
	background-color: white;
  }
  
  .gallery-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
	gap: 20px;
  }
  
  .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 300px;
	cursor: pointer;
  }
  
  .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
	transform: scale(1.1);
  }
  
  .gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-caption {
	transform: translateY(0);
  }
  
  .gallery-categories {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
  }
  
  .gallery-category {
	padding: 8px 15px;
	background-color: #ededed;
	border: 1px solid #e74c3c;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .gallery-category.active,
  .gallery-category:hover {
	background-color: var(--accent);
	color: white;
  }
  
  .contact {
	background-color: #f9f9f9;
  }
  
  .contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
  }
  
  .contact-info h3 {
	font-size: 28px;
	margin-bottom: 25px;
	color: var(--primary);
  }
  
  .contact-info p {
	margin-bottom: 20px;
	font-size: 16px;
	color: #555;
  }
  
  .contact-detail {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
  }
  
  .contact-icon {
	width: 70px;
	height: 70px;
	background-color: #ffffff;
	border: 1px solid #d8d8d8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 28px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	margin: 22px 0px !important;
  }
  
  .contact-method {
	font-size: 18px;
	color: var(--primary);
	font-weight: 600;
  }
  
  .contact-method a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .contact-method a:hover {
	color: var(--accent);
  }
  
  .contact-form {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .contact-form h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--primary);
	text-align: center;
  }
  
  .form-group {
	margin-bottom: 20px;
  }
  
  .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease;
  }
  
  .form-control:focus {
	border-color: var(--accent);
	outline: none;
  }
  
  .form-control::placeholder {
	color: #999;
  }
  
  textarea.form-control {
	height: 150px;
	resize: vertical;
  }
  
  .submit-btn {
	background-color: var(--accent);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
  }
  
  .submit-btn:hover {
	background-color: #c0392b;
  }
  
  .social-links {
	display: flex;
	gap: 15px;
	margin-top: 30px;
  }
  
  .social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #dcdcdc;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 18px;
  }
  
  .social-link:hover {
	background-color: var(--accent);
	color: white;
	transform: translateY(-5px);
  }
  
  .service-area {
	background-color: var(--dark);
	color: white;
	padding: 50px 0;
  }
  
  .service-area h3 {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
  }
  
  .locations {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
  }
  
  .location {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 14px;
  }
  
  footer {
	background-color: #111;
	color: #ddd;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
  }
  
  .footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
  }
  
  .footer-links a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
	color: var(--accent);
  }
  
  .footer .nav-links a {
	text-decoration: none;
	color: var(--text-color);
	padding: 10px 15px;
	font-weight: 500;
	transition: color 0.3s ease;
  }
  
  .nav-links .dropdown-trigger {
	cursor: default;
	display: inline-block;
  }
  
  .nav-links a,
  .nav-links .dropdown-trigger {
	text-decoration: none;
	color: white;
	padding: 10px 15px;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
  }
  
  .nav-links a:hover,
  .nav-links .dropdown-trigger:hover {
	color: #e74c3c;
  }
  
  /* Dropdown menu styles */
  .nav-links .dropdown {
	display: inline-block;
	position: relative;
  }
  
  .nav-links .dropdown-content {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	background-color: #ffffff;
	min-width: 148px;
	box-shadow: 0px 8px 16px 0px rgb(0 0 0);
	z-index: 100;
	border-radius: 10px;
	left: 0;
	top: 97%;
	padding-top: 6px;
	padding-bottom: 5px;
	margin-top: 0px;
	transition: opacity 0.3s, visibility 0.3s;
	pointer-events: none;
  }
  
  .nav-links .dropdown-content::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 30%;
	transform: translateX(-50%);
	border-width: 0 10px 10px 10px; /* Triangle shape */
	border-style: solid;
	border-color: transparent transparent #ffffff transparent; /* Match dropdown background color */
	z-index: 101;
  }
  
  .nav-links .dropdown:hover .dropdown-content {
	visibility: visible;
	opacity: 1;
	pointer-events: auto; /* Enable mouse events when visible */
  }
  
  .nav-links .submenu-item {
	padding: 14px;
	font-size: 0.9em;
	position: relative;
	display: block;
	text-align: left;
	color: var(--text);
  }
  
  .nav-links .submenu-item:before {
	content: "";
	position: absolute;
	left: 10px;
	top: 12px;
	font-size: 0.8em;
	color: var(--primary);
  }
  
  .nav-links .submenu-item:hover {
	background-color: #ffffff;
  }
  
  @media (max-width: 1048px) {
	.gallery-container {
	  display: grid;
	  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
	  gap: 12px;
	}
  

	.nav-cta {
	  background-color: var(--accent);
	  padding: 9px 18px;
	  border-radius: 30px;
	  color: white;
	  font-weight: 600;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  margin-right: 1%;
	  font-size: 0.7em !important;
	}
  
	.logo {
	  font-size: 20px;
	}
  }
  
  @media (max-width: 992px) {
	.about-content,
	.contact-container {
	  grid-template-columns: 1fr;
	}
  
	.about-image {
	  height: 300px;
	  margin-bottom: 30px;
	}
  
	.hero h1 {
	  font-size: 40px;
	}
  
	section {
	  padding: 24px 0px 0px 0px;
	}
  }
  
  .testimonial-slider {
	max-width: 900px;
	margin: 0px auto;
	padding-bottom: 20px;
  }
  .contact-info-wrapper {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
  }
  
  .contact-title {
	margin-bottom: 40px;
	color: var(--primary);
	font-size: 28px;
	position: relative;
  }
  
  .contact-title:after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--accent);
  }
  
  .contact-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-bottom: 60px;
  }
  
  .contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 200px;
	margin-bottom: 20px;
  }
  
  .contact-icon {
	width: 70px;
	height: 70px;
	background-color: #ffffff;
	border: 1px solid #d8d8d8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 28px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .contact-method {
	display: flex;
	flex-direction: column;
	text-align: center;
  }
  
  .contact-label {
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 5px;
  }
  
  .contact-method a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.3s;
  }
  
  .contact-method a:hover {
	color: #c0392b;
  }
  
  .social-section {
	margin-top: 40px;
  }
  
  .social-title {
	color: var(--primary);
	margin-bottom: 25px;
	font-size: 24px;
  }
  
  .social-links {
	display: flex;
	justify-content: center;
	gap: 25px;
  }
  
  .social-link {
	width: 60px;
	height: 60px;
	background-color: #dcdcdc;
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 24px;
	transition: all 0.3s ease;
	margin-right: 1%;
  }
  
  .social-link:hover {
	background-color: var(--accent);
	color: white;
	transform: translateY(-5px);
  }
  
  /* Add styling for service locations in footer */
  .service-locations {
	margin: 30px auto;
	max-width: 1000px;
	text-align: center;
	padding: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .service-locations h4 {
	color: #ddd;
	font-size: 20px;
	margin-bottom: 10px;
  }
  
  .service-locations p {
	color: #bbb;
	margin-bottom: 15px;
	font-size: 15px;
  }
  
  .locations-list {
	color: #999;
	line-height: 1.19;
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 10px;
  }
  
  /* Trailers Section */
  .trailers {
	background-color: white;
	padding: 80px 0;
  }
  
  .trailer-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
	gap: 20px;
	margin-top: 40px;
  }

  
  .trailer-card {
	background-color: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .trailer-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .trailer-image {
	height: 250px;
	overflow: hidden;
  }
  
  .trailer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
  }
  
  .trailer-card:hover .trailer-image img {
	transform: scale(1.05);
  }
  
  .trailer-info {
	padding: 25px;
  }
  
  .trailer-info h3 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 22px;
  }
  
  .trailer-info p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
  }
  
  .trailer-features {
	list-style-type: none;
	margin-top: 15px;
  }
  
  .trailer-features li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: #555;
  }
  
  .trailer-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
  }
  
  @media (max-width: 992px) {
	.trailer-cards {
	  grid-template-columns: 1fr;
	}
  }
  
  /* What You Can Haul Section */
  .what-you-can-haul {
	background-color: #f9f9f9;
	padding: 80px 0;
  }
  
  .haul-items {
	max-width: 900px;
	margin: 0 auto;
  }
  
  .haul-list {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 20px;
  }
  
  .haul-list li {
	background-color: white;
	padding: 12px 11px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	font-size: 0.8em;
  }
  
  .haul-list li:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  
  .haul-list li span {
	color: var(--accent);
	font-weight: bold;
  }
  
  @media (max-width: 768px) {
	.contact-grid {
	  flex-direction: column;
	  gap: 0px;
	}
  
	.contact-item {
	  width: 100%;
	}
  
	.haul-list {
	  grid-template-columns: 1fr;
	  max-width: 100%;
	}
  
	.about-image img {
	  width: 75%;
	  height: 75%;
	  display: block;
	  margin-left: auto;
	  margin-right: auto;
	}
  
	.nav-links {
	  display: none;
	}
  
	.hero h1 {
	  font-size: 32px;
	}
  
	.hero h2 {
	  font-size: 15px;
	}
  
	.section-header h2 {
	  font-size: 20px;
	}
  
	.gallery-container {
	  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
  
	.hero {
	  height: 90vh;
	}
	.logo {
	  font-size: 16px !important;
	  margin-left: 2%;
	}
  
	.nav-cta {
	  font-size: 0.7rem;
	  margin-right: 2%;
	  padding: 2px 8px !important;
	}
  
	.gallery-category {
	  padding: 2px 12px;
	  background-color: #ededed;
	  border: 1px solid #e74c3c;
	}
  
	.hero h1 {
	  font-size: 28px;
	}
  
	.cta-button {
	  padding: 12px 25px;
	  font-size: 16px;
	}
  
	.service-cards {
	  grid-template-columns: 1fr;
  
	  margin-bottom: 21px;
	}
  
	.gallery-container {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 10px;
	}
  
	.gallery-item {
	  height: 200px;
	  margin-bottom: 0;
	  border-radius: 8px;
	  overflow: hidden;
	}
  
	.gallery-item img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	}
  
	.gallery-category {
	  font-size: 12px;
	  padding: 4px 10px;
	}
  }
  