    body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: #f4f6f8;
    }

    header {
        background-color: #2c3e50;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
    }

    .logo {
        font-size: 40px;
        font-weight: bold;
        transition: all 1.3s ease;
        display: inline-block;
    }
    .logo:hover{
        transform: scale(1.3);
        background: linear-gradient(to right,red,rgb(255, 230, 0),green,rgb(0, 128, 122),rgb(0, 68, 255),rgb(17, 0, 255));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

        }

    nav {
        display: flex;
        gap: 20px;
    }

    .menu {
        position: relative;
    }

    .menu>a {
        color: white;
        text-decoration: none;
        padding: 10px;
        display: block;
        transition: background-color 0.3s, color 0.3s;
    }

    .menu>a:hover {
        background-color: #1abc9c;
        transform: scale(1.2);
        transition: all 1.5s ease;
        display: inline-block;
        color: #2c3e50;
        border-radius: 30px;
    }

    .submenu {
        display: none;
        position: absolute;
        background-color: #34495e;
        padding: 10px;
        top: 100%;
        left: 0;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .submenu a {
        color: white;
        text-decoration: none;
        display: block;
        padding: 5px 10px;
        transition: background-color 0.3s;
        border-radius: 3px;
    }

    .submenu a:hover {
        background-color: #1abc9c;
        border-radius: 35px;
    }

    .menu:hover .submenu {
        display: block;
    }

    .hero {
        height: 400px;
        background-color: #ecf0f1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c3e50;
        font-size: 28px;
        font-weight: bold;
        text-align: center;
    }

    .hero img {
        max-width: 100%;
        height: auto;
    }
        footer {
            border: 1px solid #34495e;
            background-color: #34495e;
            color: white;
            text-align: center;
            margin-top: 470px; 
            width: 100%;
            height: 37px;
          }
          footer p
          {
            text-align: center;
            margin-top: 5px;
          }
                  body {
                      background-image: url("registon.jpg");
                      background-size: cover;
                      background-position: center;
                      background-repeat: no-repeat;
                  }