	/* Global Styles */
:root { 
    --primary-color: #B22222; /* Red */
    --secondary-color: #1d3557; /* Dark Blue */
    --dark-color: #212529; /* Dark Gray/Black */
    --light-color: #f8f9fa; /* Light Gray */
    --gray-color: #6c757d; /* Medium Gray */
    --white-color: #ffffff;
    --black-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    display: block;
}

.btn-primary:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}
.btn-footer {
	background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: #000000;
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
  position: relative; /* Add this to contain the pseudo-element */
  margin-bottom: 30px; /* Add some space below */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Adjust this value to position the line */
    left: 50%; /* Center the line */
    transform: translateX(-50%); /* Center the line */
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    position: sticky;
    margin-bottom: 0;  /* Remove any default margin */
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}
.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    font-weight: 600;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a.active {
    color: var(--primary-color);
}


.navbar ul li {
    margin-left: 30px;
}

.mobile-menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Updated Hero Section with Slide-in Animation */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    z-index: 0;
}

@keyframes slideIn {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Ensure all content is centered */
    display: flex;
    flex-direction: column;
    align-items: center; /* This will center all child elements */
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the icon within the circle */
    margin: 0 15px 0; /* Center the circle itself */
	margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 2rem;
}



.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Take full width to maintain center alignment */
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Take full width to maintain center alignment */
}

/* If you have "Learn More" links */
.service-card a {
    display: inline-block; /* Keep links centered */
    margin-top: auto; /* Push to bottom if using flex column */
}
/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: var(--white-color);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: inline-block; /* Keep links centered */
}

/* Content area that grows to push button down */
.product-card-content {
  flex: 1; /* Takes up remaining space */
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Button container - fixed at bottom */
.product-footer {
  padding: 0 20px 20px;
  text-align: center;
  margin-top: auto; /* Pushes to bottom */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* Product image container */
.product-image {
  height: 180px; /* Reduced from 200px */
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  background-color: neutral background; /* Optional: neutral background */
}

/* Product image itself */
.product-image img {
  width: auto;
  height: 10%;
  max-width: 58%;
  object-fit: contain; /* Changed from 'cover' to 'contain' */
  transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .product-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 120px;
  }
}

/* Product image container */
.roadproduct-image {
  height: 230px; /* Reduced from 200px */
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  background-color: neutral background; /* Optional: neutral background */
}

/* Product image itself */
.roadproduct-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain; /* Changed from 'cover' to 'contain' */
  transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .roadproduct-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .roadproduct-image {
    height: 120px;
  }
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .roadproduct-image img {
    transform: scale(1.1);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.product-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

/* Equipment Section */
.equipment-section {
  margin: 40px 0;
}

.equipment-section h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.equipment-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Equipment Items */
.equipment-item {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(230, 57, 70, 0.2);
}

.equipment-item i {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 12px;
  background-color: rgba(230, 57, 70, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-item p {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .equipment-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Call to Action */
.cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Change this */
.footer .contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

/* Change this */
.footer .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-links .links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Banner */
.page-banner {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-bg.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(230, 57, 70, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background-color: var(--light-color);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.info-card ul li strong {
    color: var(--dark-color);
}

/* Services Page */
.services-content {
    padding: 80px 0;
}

.service-section {
    margin-bottom: 60px;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-description p {
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    background-color: rgba(230, 57, 70, 0.05);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.other-services {
    margin-top: 60px;
}

.other-services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.mini-service-card {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 57, 70, 0.2);
}

.mini-service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mini-service-card h3 {
    margin-bottom: 10px;
}

/* Products Page */
/* Sticky Products Navigation */
.products-nav {
    background-color: var(--dark-color);
    position: sticky;
    top: 80px; /* Matches header height */
    z-index: 800;
    transition: all 0.3s ease;
    margin-top: 0;      /* Ensure no extra margin at top */
    padding-top: 0;     /* Reduce any padding */
    position: sticky;
}

.products-nav .container {
    padding: 0.75rem 1.25rem;
}

.products-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.products-nav ul li a {
    color: var(--white-color);
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-nav ul li a:hover,
.products-nav ul li a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .navbar ul {
        gap: 20px;
    }
    
    .products-nav {
        top: 80px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .products-nav ul {
        gap: 8px;
    }
    
    .products-nav ul li a {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-nav {
        top: 50px;
    }
    
    .products-nav ul {
        gap: 5px;
    }
    
    .products-nav ul li a {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}

.product-category {
    padding: 80px 0;
}

.product-category:nth-child(even) {
    background-color: var(--light-color);
}

.category-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spreads content vertically */
    border: 1px solid #ccc;
    padding: 1rem;
    height: 100%; /* Ensures equal height cards */
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* If you have "Enquire Now" links */
.product-card a {
    display: inline-block; /* Keep links centered */
    margin-top: auto; /* Push to bottom if using flex column */
}

.product-card-footer {
  padding: 0 20px 20px;
  margin-top: auto; /* Pushes to bottom */
  text-align: center;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.product-specs {
    padding: 0 20px 20px;
}

.product-specs li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.product-specs li strong {
    color: var(--dark-color);
}

.product-card .btn {
    display: inline-block;
    background-color: var(--primary-color); /* Example Bootstrap-style color */
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    width: 100%;

}

.product-card .btn:hover{
    background-color: #c1121f;
    transform: translateY(-2px);
}

.valve-standards {
    margin-top: 50px;
}

.valve-standards h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.standard-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.standard-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.standard-card ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.standard-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-features {
    margin: 50px 0;
}

.product-features h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.technical-specs {
    margin: 50px 0;
}

.technical-specs h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.specs-tables {
    display: grid;
    gap: 30px;
}

.specs-table {
    overflow-x: auto;
}

.specs-table h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

th {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--dark-color);
    font-weight: 600;
}

tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.color-options {
    margin: 0;               /* Reset any margin */
    padding: 15px 20px 20px; /* Use padding for spacing within */
    display: flex;
    align-items: center;
}

.color-options h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Color samples */
.color.white { background-color: #ffffff; }
.color.black { background-color: #000000; }
.color.light-grey { background-color: #d3d3d3; }
.color.medium-grey { background-color: #a9a9a9; }
.color.dark-grey { background-color: #696969; }
.color.bright-blue { background-color: #0096FF; }
.color.royal-blue { background-color: #4169e1; }
.color.traffic-red { background-color: #cc0000; }
.color.yellow { background-color: #ffd700; }
.color.orange { background-color: #ffa500; }
.color.golden-yellow { background-color: #ffdf00; }
.color.dark-green { background-color: #006400; }
.color.blue { background-color: #0000ff; }
.color.red { background-color: #ff0000; }
.color.brilliant-yellow { background-color: #ffff00; }
.color.green { background-color: #008000; }

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}
.info-item {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 25px;
}

.info-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important; 
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    
    /* The Grid Nuke */
    display: grid !important;
    place-items: center !important;
}

/* Annihilate any margins Font Awesome or the Footer tries to add */
.info-icon i,
.info-icon svg,
.contact-info .info-icon i {
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    display: block !important;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-form-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .navbar ul li {
        margin: 0 0 15px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}