* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: "Arial Black", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #051d40;
    color: white;
}

.menu1{
    display: flex;
}
.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;
}

/* Header (menu) styles */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #051d40;
}

.menu-item {
    padding: 0 10px;
}

.nkar1 {
    width: 80px;
    height: 80px;
}

/* Main Content (mainCont) styles */
.mainCont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.text {
    color: white;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    text-align: center;
    padding: 20px;
}

.nkar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin-top: 20px;
    position: relative;
}

.nkar img {
    width: 30%;
    height: auto;
    border-radius: 8px;
}

.nkar4 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30%;
    height: auto;
    z-index: 3;
}

/* Contact Section (verj) styles */
.verj {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30vh;
    background-color: #051d40;
}

.kap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aaa {
    font-size: 20px;
    color: #5e9bb0;
    margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: stretch;
    }

    .menu1 {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .menu-item {
        padding: 10px 0;
    }

    .nkar1 {
        width: 60px;
        height: 60px;
    }

    .text, .nkar {
        padding: 10px;
    }

    .nkar img {
        width: 40%;
    }

    .nkar4 {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .nkar1 {
        width: 50px;
        height: 50px;
    }

    .nkar img {
        width: 50%;
    }

    .nkar4 {
        width: 50%;
    }
}