* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: stretch;
    }

    .menu1 {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .menu-item {
        padding: 10px 0;
    }

}

body{
	    font-family: "Arial Black", sans-serif;
}

/* Basic styling for the header/menu */
.menu {
    width: 100%;
    height: 100%;
    background-color: #051d40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Add padding for better spacing */
}

.menu1 {
    width: 60%; /* Adjusted width for menu items container */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu-item {
    /* Adjusted styles for menu items */
}

.menu-item img {
    max-width: 30%; /* Ensure logo image remains within its container */
}

/* Styling for dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Additional styles for social icons */
.menu-item a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
        color: white;
    /* Add specific styles for each social icon */
}

/* Styling for main content section */
.mainCont {
    width: 100%;
    height: auto;
    background-color: #051d40;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add padding for spacing */
}

.nkar21 {
    width: 100%; /* Ensure image spans full width of container */
    height: auto; /* Allow height to adjust proportionally */
    max-width: 100%; /* Ensure image does not exceed its container */
}

/* Styling for footer section */
.verj {
    width: 100%;
    min-height: 30vh; /* Adjusted height for footer */
    background-color: #051d40;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kap {
    width: 80%; /* Adjusted width for contact info container */
    max-width: 600px; /* Added max-width to prevent overflow on large screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px; /* Add padding for spacing */
}

.a {
    margin-bottom: 10px; /* Add margin below each contact info */
    color: white;
    font-size: 20px;
    font-family: "Arial Black", sans-serif;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: black;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}