* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.row{
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    height: 8vh;
    display:flex;
    justify-content:center;
    align-items: center;
    text-align: center;
    overflow-x: auto;
    z-index: 2;
}
.headers{
    color: white;
    cursor: pointer;
    font-size: 1.7vw;
    font-family: 'consolas';
    transition: 0.6s;
}
.logo{
    width: 50px;
}
.headers:hover{
    color:black;
    font-size: 100%;
    font-style: bold;
    background-color: #fff;
    padding:10px ;
    border: 1px solid white;
    border-radius: 7px;
    box-shadow: 0px 0px 10px white,0px 0px 20px white;
    width: 60px;
    height: 50px;
    transition: 0.4s;
}

body {
    line-height: 1.6;
    width: 100%;
    color: #fff;
    background-color: #222020;
}

.about{
    background: url("https://cdn.pixabay.com/photo/2017/02/19/16/01/mountaineer-2080138_1280.jpg") no-repeat center center/cover;
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.content {
    text-align: center;
    margin-top: 100px;
}

.content h1 {
    font-size: 3rem;
}

.content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

section {
    padding: 50px 20px;
    text-align: center;
    background-color: #222020;
}

.our-values {
    background-color: #222020;
}

.values{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}

.value-card_1{
    background: transparent;
    padding: 20px;
    border:1px solid rgb(222, 222, 45);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    color: rgb(222, 222, 45);
    transition: 0.6s;
}

.value-card_1:hover{
    color: #222020;
    font-style: bold;
    background-color: rgb(222, 222, 45);
    scale: 1.3;
    box-shadow: 0 0 10px rgb(222, 222, 45),0 0 20px rgb(222, 222, 45), 0 0 40px rgb(222, 222, 45), 0 0 10px rgb(222, 222, 45);
}

.value-card_2{
    background: transparent;
    padding: 20px;
    border: 1px solid rgb(82, 186, 50);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    transition: 0.6s;
    color: rgb(82, 186, 50);
}

.value-card_2:hover{
    color: #222020;
    font-style: bold;
    background-color: rgb(82, 186, 50);
    scale: 1.3;
    box-shadow: 0 0 10px rgb(82, 186, 50),0 0 20px rgb(82, 186, 50), 0 0 40px rgb(82, 186, 50), 0 0 10px rgb(82, 186, 50);
}

.value-card_3{
    background: transparent;
    padding: 20px;
    border: 1px solid cyan;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    transition: 0.6s;
    color: cyan;
}

.value-card_3:hover{
    color: #222020;
    font-style: bold;
    background-color: cyan;
    scale: 1.3;
    box-shadow: 0 0 10px cyan,0 0 20px cyan, 0 0 40px cyan, 0 0 10px cyan;
}

.contact {
    background-color: #0077b6;
    padding: 40px;
    color: white;
}
.contact button {
    padding: 12px 25px;
    background-color: #ff7b54;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
.input{
    width: 100%;
    height:30px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 700;
}
.form{
    border:2px solid black;
    width:300px;
    height: 330px;
    margin-top: 9%;
    padding: 10px;
    display:inline-block;
    text-align: center;
}
.button{
    border:1px solid blue;
    border-radius:8px;
    width:140px;
    height: 40px;
    font-size: 20px;
    color: white;
    background-color: blue;
}
textarea{
    width: 100%;
}
.info-label{
    color: #fff;
    font-size: 18px;
}
.contact-form {
    padding: 50px;
    background: #333;
    color: black;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #777;
}