    <style>
        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background-color: #f4f6f9;
            color: #333;
        }

        nav {
            background-color: #2c3e50;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #ecf0f1;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #1abc9c;
        }

        .hero {
            background: linear-gradient(#303030 ,#003169);
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius:10px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
        }

        .hero a {
            background-color: white;
            color: #2980b9;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .hero a:hover {
            background-color: #1abc9c;
            color: white;
        }

        .features {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .feature-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            width: 280px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #3498db;
        }

        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            text-align: center;
            padding: 20px;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .features {
                flex-direction: column;
                align-items: center;
            }
        }
.image-center{
       text-align:center;
       margin-top:20px
}
.hero-image{
width:80px
max-width: 700px;
border-radius:10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.image{
        text-align:center;
        margin-top:20px
}
.bus-image{
width:80px
max-width:800px;
border-radius:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.8);
}
.logo{
text-align:center;


}
    /* ===== Reset & Base ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #f7f9fc;
        color: #333;
        line-height: 1.6;
        padding-bottom: 60px;
    }

    /* ===== Navbar ===== */
    nav {
        background-color: #2c3e50;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav .logo {
        font-size: 1.4rem;
        font-weight: bold;
        color: #fff;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    nav ul li a {
        text-decoration: none;
        color: #ecf0f1;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #1abc9c;
    }

    /* ===== Form Styling ===== */
    form {
        background-color: #fff;
        padding: 25px;
        max-width: 500px;
        margin: 2rem auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    form h2 {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccd1d9;
        border-radius: 5px;
    }

    button, .btn {
        padding: 10px 20px;
        background-color: #3498db;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s ease;
        margin-top: 10px;
    }

    button:hover, .btn:hover {
        background-color: #2980b9;
    }

    /* ===== Table Styling ===== */
    table {
        width: 90%;
        margin: 2rem auto;
        border-collapse: collapse;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    th, td {
        padding: 12px;
        border: 1px solid #e1e4e8;
        text-align: left;
    }

    th {
        background-color: #3498db;
        color: white;
    }

    /* ===== Sections ===== */
    .section {
        padding: 2rem;
        max-width: 960px;
        margin: auto;
    }

    /* ===== Footer ===== */
    footer {
        background-color: #2c3e50;
        color: #fff;
        text-align: center;
        padding: 20px;
        position: relative;
        bottom: 0;
        width: 100%;
    }

    /* ===== Utility Classes ===== */
    .text-center {
        text-align: center;
    }

    .mt-2 { margin-top: 0.5rem; }
    .mt-3 { margin-top: 1rem; }
    .mt-5 { margin-top: 2rem; }

    .container {
        max-width: 960px;
        margin: auto;
        padding: 20px;
    }