
        :root {
            --se-green: #3dcd58;
            --se-black: #000000;
            --se-charcoal: #333333;
            --white: #ffffff;
            --bg: #f4f7f9;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            color: var(--se-black);
        }

        /* Header Branding */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: var(--white);
            border-bottom: 1px solid #ddd;
            border-top: 6px solid var(--se-green);
        }

        .logo { font-family: 'Roboto Condensed'; font-size: 28px; text-transform: uppercase; font-weight: 700; letter-spacing: -1px; }
        .logo span { color: var(--se-green); }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: var(--se-black);
            color: white;
        }

        .hero h1 {
            font-family: 'Roboto Condensed';
            font-size: 42px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 18px;
            color: #ccc;
            max-width: 700px;
            margin: 15px auto 0;
            font-weight: 300;
        }

        /* Grid Layout */
        .container {
            max-width: 1200px;
            margin: -40px auto 60px;
            padding: 0 20px;
        }

        .-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        /* Card Design */
        .tool-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border-bottom: 4px solid transparent;
            text-decoration: none;
            color: inherit;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--se-green);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .card-image {
            height: 180px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Visual Icons for the cards */
        .motor-icon {
                width: 180px;
                height: 180px;
        }

        .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--se-black);
            color: var(--se-green);
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 20px;
            text-transform: uppercase;
            z-index: 99;
        }

        .card-content {
            padding: 25px;
            flex: 1;
        }

        .card-content h2 {
            font-family: 'Roboto Condensed';
            font-size: 22px;
            margin: 0 0 10px 0;
            color: var(--se-black);
        }

        .card-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .spec-list {
            margin: 0;
            padding: 0;
            list-style: none;
            font-size: 12px;
            color: var(--se-charcoal);
        }

        .spec-list li {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .spec-list li::before {
            content: "•";
            color: var(--se-green);
            font-weight: bold;
            display: inline-block;
            width: 15px;
        }

        .btn-launch {
            display: inline-block;
            margin-top: 20px;
            background: var(--se-green);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.5px;
            transition: background 0.2s;
        }

        .tool-card:hover .btn-launch {
            background: #2eb34a;
        }

        footer {
            text-align: center;
            padding: 40px;
            color: #888;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            header { padding: 15px 20px; flex-direction: column; gap: 10px; }
            .hero h1 { font-size: 30px; }
        }



              /* --- Engineering Resources Section --- */

.resources-header {
    margin-top: 60px;
    margin-bottom: 20px;
    border-left: 4px solid var(--se-green);
    padding-left: 20px;
}

.resources-header h2 {
    font-family: 'Roboto Condensed';
    text-transform: uppercase;
    margin: 0;
    font-size: 20px;
}

.resources-header p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.resource-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resource-card:hover {
    border-color: var(--se-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.res-icon {
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--se-green);
    margin-right: 20px;
}

.res-icon svg {
    width: 28px;
    height: 28px;
}

.res-content {
    flex: 1;
}

.res-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Roboto Condensed';
}

.res-content span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.res-arrow {
    font-size: 1.5rem;
    color: #ddd;
    transition: 0.3s;
}

.resource-card:hover .res-arrow {
    color: var(--se-green);
    transform: translateX(5px);
}

/* Responsive adjust for smaller mobile */
@media (max-width: 400px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}


/* Grid Layout */
.container {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
}

.-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

/* Important: prevents card/text from forcing grid width */
.tool-card,
.card-content {
    min-width: 0;
}

.card-content h2,
.card-content p,
.spec-list li {
    overflow-wrap: anywhere;
}

/* Around 1000px still keep 4 cards */
@media (max-width: 1050px) {
    .container {
        padding: 0 16px;
    }

    .-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .card-content {
        padding: 18px;
    }

    .card-image {
        height: 150px;
    }

    .motor-icon {
        width: 145px;
        height: 145px;
    }

    .card-content h2 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 13px;
    }

    .spec-list {
        font-size: 11px;
    }
}

/* Below this, 4 cards become too tight, so move to 3 */
@media (max-width: 920px) {
    .-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 520px) {
    .-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 14px;
    }

    .card-content {
        padding: 22px;
    }

    .card-image {
        height: 170px;
    }

    .motor-icon {
        width: 160px;
        height: 160px;
    }
}





/*To remove the header*/
.logo {
 display: none !important;
}
header {
 padding: 0px !important;
}
.hero{
    padding: 10px 20px 57px;
}
footer{
    padding: 15px;
     /* position: fixed;
    width: 100%;
    bottom: 0px; */
}

.resources-grid {
    margin-bottom: 30px;
}
.container{
    margin: -40px auto 35px;
}
.card-image{
    background:white
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .card-content {
        padding: 6px 11px;
        }

    .card-content p {
        margin-bottom: 0px;
        margin-top: 3px;
    }

    .btn-launch {
        margin-top: 10px;
        padding: 10px;
        font-size: 12px;
        display: none;
    }

    .card-image {
        height: 120px;
    }

    .motor-icon {
         width: 120px;
        height: 120px;
    }

    .card-content h2 {
        font-family: 'Roboto Condensed';
font-size: 18px;
        margin: 0 0 0px 0;
        color: var(--se-black);
    }

    .card-content p {
        font-size: 12px;

    }
    .resources-header {
        margin-top: 14px;
        margin-bottom: 7px;
        }
    .hero p {
            margin: 5px auto 0;
            font-size: 12px;
    }
    .container {
        margin: -40px auto 0;
    }

    .hero h1 {
            font-size: 25px;
    }
    .resources-header h2 {
        font-size: 18px;
}

    .resources-header p{
        font-size: 12px;
    }

    .resources-header h2{
        font-size: 18px;
    }
}

@media screen and (max-width: 1023px) {

    .card-content {
        padding: 8px 10px;
    }

    .card-content p {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .btn-launch {
        margin-top: 10px;
        padding: 10px;
        font-size: 12px;
        display: none
    }

    .card-image {
        height: 120px;
    }

    .motor-icon {
        height: 120px;
        height: 120px;
    }

    .card-content h2 {
        font-family: 'Roboto Condensed';
        font-size: 20px;
        margin: 0 0 0px 0;
        color: var(--se-black);
    }

    .card-content p {
        font-size: 12px;

    }
    .resources-header {
        margin-top: 18px;
        margin-bottom: 10px;    }
    .hero p {
            margin: 5px auto 0;
            font-size: 12px;
    }
    .container {
        margin: -40px auto 0;
    }

    .resources-header p{
        font-size: 12px;
    }

    .hero h1 {
            font-size: 25px;
    }

    
    .resources-header h2{
        font-size: 18px;
    }

        .resources-header {
        margin-top: 14px;
        margin-bottom: 7px;
        }
}