/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

h1, h2 {
    margin: 0;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../images/highway_pic.jpg'); /* Corrected path relative to static/css */
    background-size: cover;
    background-position: center;
    color: #f4f4f4;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    color: #fbfbfb;
}

.hero p {
    font-size: 25px;
    color: #fff;
    margin-top: 10px;
}

/* Services Section */
.our_services {
    gap: 20px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 15px;
    font-size: 40px
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.service-card {
    background: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card img {
    width: 50px;
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card a {
    font-size: 14px;
    font-weight: bold;
    color: #2d37a7; 
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #2d37a7; /* Light blue background on hover */
    color: white; /* Default text color change */
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

/* Ensure child elements (headings, paragraphs, and links) inherit hover color */
.service-card:hover h2,
.service-card:hover p,
.service-card:hover a {
    color: white; /* Blue text on hover */
}
.service-card:hover {
    transform: translateY(-15px);
    color: #2d37a7;
}

/* Highlighted Card */
.service-card.highlight {
    background-color: #2d37a7;
    color: #fff;
}

.service-card.highlight h2,
.service-card.highlight p,
.service-card.highlight a {
    color: #fff;
}