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

    body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        color: #333;
    }

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

    ul {
        list-style: none;
    }

    /* Navigation */
    nav {
        background-color: #5782BB;
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    nav h1 {
        color: white;
        margin:0;
    }

    nav ul {
        display: flex;
        gap: 2rem;
        margin: 0; /* Removes default margin */
    }

    nav ul li a {
        font-weight: bold;
        color: white;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #333;
    }

    /* Hero Section */
    .hero {
        background: url('hero1.png') no-repeat center center/cover;
        background-size: cover; /* Ensures the image scales proportionally to fill the section */
        background-position: center center; /* Focuses on the vertical and horizontal centre */
        width: 100%;
        height: 500px; /* Display only a 500px height "strip" */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 1rem;
        overflow: hidden;
    }

    #hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    #hero p {
        color: white;
        font-size: 1.5rem;
        max-width: 600px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    #services {
        background: #5782BB;
        padding: 4rem 2rem;
        text-align: center;
        color:white;
    }
    #services h2 {
        color: white;
    }
    #services p {
        color: white;
    }
    #about {
        background: #5782BB;
        padding: 4rem 2rem;
        text-align: center;
    }
    /* Section Styles */
    section {
        padding: 4rem 2rem;
        text-align: center;
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #5782BB;
    }

    section p {
        max-width: 800px;
        margin: 0 auto 2rem;
        font-size: 1.2rem;
        color: #555;
    }

    /* Equipment Section */
    .equipment-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
        color: #5782BB;
    }

    .equipment-item img {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
    }

    .equipment-item h3 {
        font-size: 1.8rem;
        color: #6610f2;
        margin-bottom: 0.5rem;
    }

    /* Quote Form */
    form {
        max-width: 600px;
        margin: 0 auto;
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    form label {
        display: block;
        font-weight: bold;
        margin-bottom: 0.5rem;
        color: #333;
    }

    form input, form select, form textarea, form button {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
    }

    form button {
        background: #0d6efd;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    form button:hover {
        background: #6610f2;
    }

    /* Footer */
    footer {
        background: #333;
        color: white;
        padding: 2rem;
        text-align: center;
    }

    footer ul {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    footer ul li a {
        color: #bbb;
        transition: color 0.3s ease;
    }

    footer ul li a:hover {
        color: white;
    }

    footer p {
        font-size: 0.9rem;
    }