* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.banner {
    margin-top: 0px;
    width: 100%;
    height: 100vh;
    background-image: url(10.jpg);
    background-size: cover;
    background-position: center;
}



.navbar {
    margin-left: 0px;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #016817;
    text-transform: uppercase;
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin-right: 100px; /* Աջ կողմում տեղադրելու համար */
}

.language-switcher button {
    background: none;
    border: none;
    cursor: pointer;
}

.language-switcher img {
    width: 25px;
    height: 19px;
}


.navbar ul li::after {
    content: "";
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

.navbar ul li:hover {
    font-weight: bold;
    cursor: pointer;
}

h1 {
    text-align: center;
}

.ab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    padding: 20px;
}

.ab h2, .ab p {
    margin: 0;
    padding: 10px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-container {
    border: 3px solid;
    width: 25%;
    margin: 20px 0;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.image-container.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container h4 {
    text-align: center;
}

.con {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    padding: 20px;
}

.image-con {
    width: 200px;
    height: 200px;
    border: 2px solid #ccc;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease-in-out forwards;
}

.image-con:nth-child(1) { animation-delay: 0.2s; }
.image-con:nth-child(2) { animation-delay: 0.4s; }
.image-con:nth-child(3) { animation-delay: 0.6s; }
.image-con:nth-child(4) { animation-delay: 0.8s; }

.image-con img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}

.af {
    display: flex;
    gap: 100px;
}

header {
    text-align: center;
    padding: 50px;
    background-color: #4CAF50;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.contact-form,
.contact-info {
    width: 45%;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-info h2, 
.contact-form h2 {
    margin-bottom: 10px;
}

.contact-info p, 
.contact-form p {
    margin-bottom: 20px;
}

.leftside {
    height: 80px;
    position: relative;
    float: right;
}

.leftside img {
    margin-top: 80px;
    background-color: transparent;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

.aa {
    font-size: 12px;
}

.cc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    color: #ad14ad;
    opacity: 0;
    animation: moveToCenter 3s ease forwards;
}

.cc h1 {
    margin-left: 65%;
    transform: translateX(-50%);
}

@keyframes moveToCenter {
    0% {
        opacity: 0;
        transform: translateY(-100vh);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
}

.info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.info.show {
    transform: translateY(0);
}





form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

@media only screen and (max-width: 600px) {

    body {
        font-size: 14px;
        padding: 10px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .language-switcher {
        margin-right: 0;
        margin-top: 10px;
    }

    .banner {
        height: 50vh;
        background-position: center center;
        background-image: wheigth 500px; height: 500px;
    }

    .cc h1 {
        font-size: 24px;
        margin-left: 0;
        text-align: center;
        display: none;
    }

    .image-container {
        width: 100%;
        margin: 10px 0;
    }

    .container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
    }

    .aa, .ab {
        text-align: center;
        padding: 10px;
    }
    
    .con {
        flex-direction: column;
        align-items: center;
    }

    .image-con {
        width: 100%;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 10px;
    }
}
@media only screen and (max-width: 600px) {
    .leftside {
        display: block;
        margin-top: 90px;
    }
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
}

.logo img {
    width: 150px;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px;
}

@media only screen and (max-width: 600px) {
    nav ul {
        display: none; /* Մենյուն սկզբում փակ է */
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        border-top: 1px solid #444;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }
}
