/* 
.navbar-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.nav-item {
    margin-right: 20px !important; /* Adjust the spacing between links as needed */
/* } */

/* 
.navbar {
    display: flex !important;
    align-items: center !important;
}

.navbar-nav .nav-item .nav-link {
    color: blue !important;
} */ 

.box-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    margin: 50px;
    height: 50vw;
}

/* Image styles */
.box-image {
    width: 50vw; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Add space between image and text */
}

/* Text styles */
.box-text1 {
    flex: 1; /* Allow text to take remaining width */
}

section {
    gap: 0;
}

.background-box {
    position: relative;
    width: 50vw; /* Adjust the width as needed */
    height: 38vw; /* Adjust the height as needed */
    background: url('https://placekitten.com/600/400') center/cover no-repeat; /* Image URL and background properties */
    color: #fff; /* Text color */
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Text styles */
.box-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


        .contact-form {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 50vw !important;
            margin: 50px auto; /* Center content vertically */
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 8px;
            margin-bottom: 16px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .contact-form button {
            background-color: #4caf50;
            color: #fff;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .contact-form button:hover {
            background-color: #45a049;
        }

        .footer{
            padding: 50px 0;
            background-color: black;
            color: #fff;
        }

        .footer h3{
            margin-top: 0;
            margin-bottom: 12px;
            font-weight: bold;
            font-size: 16px;
        }

        .footer ul{
            padding: 0;
            list-style: none;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 0;
        }

        .footer ul a{
            color: inherit;
            text-decoration: none;
            opacity: 0.8;
        }

        .footer ul a:hover{
            opacity: 1;
        }

        .footer .copyright {
            margin-top: 14px;
            margin-bottom: 0;
            font-size: 13px;
            opacity: 0.6;
        }