 body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            box-sizing: border-box;
        }

        header {
            background: #333;
            color: #ffffff;
            padding: 10px 0;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #333;
            color: #ffffff;
            box-sizing: border-box;
        }

        .navbar-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background: #333;
            color: #ffffff;
        }

        .navbar-brand {
            flex: 1;
        }

        .navbar-brand a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.5em;
        }

        .header-with-icon {
            display: flex;
            align-items: center;
        }

        .menu-icon {
            font-size: 1.5em;
            cursor: pointer;
        }

        .navbar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
            flex-direction: column;
        }

        .navbar-menu.show {
            display: flex;
        }

        .navbar-menu li {
            margin-bottom: 10px;
        }

        .navbar-menu a {
            color: #ffffff;
            text-decoration: none;
        }

        .navbar-menu a:hover {
            text-decoration: underline;
        }

        @media (max-width: 767px) {
            .navbar-top {
                flex-direction: row;
            }

            .menu-icon {
                display: block;
            }
        }

        .hero {
            position: relative;
            background-image: url('https://user.sisilasoft.com.lk/images/1.jpg');
            background-size: cover;
            background-position: center;
            width: 100%;
            padding: 100px 20px;
            text-align: center;
            color: #fff;
            box-sizing: border-box;   
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1,
        .hero p {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        @media (max-width: 767px) {
            section {
                padding: 30px 10px;
            }
        }

        .features {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .features h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .feature-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .feature-item {
            flex: 1 1 30%;
            margin: 10px;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            box-sizing: border-box;
        }

        .feature-item h3 {
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 1em;
        }

        @media (max-width: 767px) {
            .feature-list {
                flex-direction: column;
                align-items: center;
            }

            .feature-item {
                flex: 1 1 100%;
                margin: 10px 0;
            }
        }
        
        
.header-with-icon {
    display: flex;
    align-items: center;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .user-profile {
        margin-right: 10px;
        display: block;
    }

    .profile-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }
}

/* Hide profile image on larger screens */
@media (min-width: 769px) {
    .user-profile {
        display: none;
    }
}


