*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", serif;
}
:root{
    --text-color: #fff;
    --bg-color: #000;
    /* --main-color: #ffa343; */
    --main-color: #d6b07b;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}
body{
    color: var(--text-color);
    background: var(--bg-color);
    /* background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('../images/bg-image.png');
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed; */
}
header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    /* background: #1c1b1b; */
    background: transparent;
    padding: 27px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
}

header.sticky{
    padding: 8px 17%;
    /* background: #1c1b1b; */
    background: transparent;
    backdrop-filter: blur(35px);
}
header.close{
    padding: 8px 17%;
    /* background: #1c1b1b; */
    background: transparent;
}

.logo{
    font-size: 33px;
    color: var(--text-color);
    font-weight: 700;
}
span{
    color: var(--main-color);
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--main-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 15px 22px;
    transition: all .50s ease;
}
.navbar a:hover{
    color: var(--text-color);
}
.h-right{
    display: flex;
    align-items: center;
}
.h-right a:first-child{
    color: var(--main-color);
    font-size: var(--p-font);
    margin-right: 20px;
}
.h-right a{
    vertical-align: middle;
    font-size: 20px;
    color: var(--main-color);
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;

}
.h-right a:hover{
    color: var(--text-color);
    transform: translateY(-3px);
}
#menu-icon{
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    display: none;
    color: var(--main-color);
    position: absolute;
    right: 10px;
    top: 10px;
}

.navbar a.active{
    color: var(--text-color);
}

section{
    padding: 70px 17% 60px;
}
.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('../images/bg-image.png');
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home .home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}
.home .home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.home .home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}
.btn{
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all .50s ease;
    cursor: pointer;
}


.btn:hover{
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}


.home-services{
    position: relative;
    height: 75vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('../images/bg-image.png');
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home-services .home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}
.home-services .home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.home-services .home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}

.services-row{
    display: flex;
    flex-direction: row;
    gap: 7rem;
    background-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
}

.services-row .service-col-left{
    justify-content: flex-start;
    align-items: flex-start;
}

.services-row .service-col-right{
    align-items: flex-start;
    text-align: left;
}

.services-row .row-img{
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 50%;
    cursor: pointer;
}
.services-row .row-img img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s;
}
.services-row .row-img img:hover{
    transform: scale(1.2);
}

.services-row h4{
    font-size: 17px;
    font-weight: 500px;
    cursor: pointer;
    transition: all .50s ease;
}
.services-row h4:hover{
    color: var(--main-color);
}
.services-row .service-col-right p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}



.feature-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center;
    gap: 3rem;
    background-color: transparent;
}
.feature-content .row-img{
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50%;
    cursor: pointer;
}
.feature-content .row-img img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s;
}
.feature-content .row-img img:hover{
    transform: scale(1.2);
}
.feature-content h4{
    font-size: 17px;
    font-weight: 500px;
    cursor: pointer;
    transition: all .50s ease;
}
.feature-content h4:hover{
    color: var(--main-color);
}
.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
}
.about .about-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.about .about-text h5{
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}
.about .about-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.about .about-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 35px;
    color: #ffffffab;
}
.services-center-text{
    text-align: center;
}
.services-center-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
}
.services-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}
.services-box{
    position: relative;
}
.services-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(70%);
    transition: all .3s cubic-bezier(.499,.05,.55,.95);
    will-change: filter;
    display: block;
}
.services-box h6{
    position: absolute;
    left: 25px;
    bottom: 95px;
    font-size: 18px;
    font-weight: 500;
}
.services-box h4{
    position: absolute;
    left: 25px;
    bottom: 65px;
    font-size: 20px;
    font-weight: 700;
}
.services-box img:hover{
    filter: brightness(90%) hue-rotate(50deg);
    transform: scale(1.04);
    cursor: pointer;
}
.services-btn{
    text-align: center;
    margin-top: 3rem;
}

.culture{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
}
.culture .culture-img img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.culture .culture-text h5{
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}
.culture .culture-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.culture .culture-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 35px;
    color: #ffffffab;
}

.copyright p{
    text-align: center;
    padding: 20px;
    color: #979797;
    font-size: 15px;
    background: #1c1b1b;
}

.bxs-phone, .bxs-location-plus, .bx-envelope{
    padding-right: 10px;
    font-size: 20px;
    color: var(--main-color);
}


.container {
    background: #44341cff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form h2 {
    text-align: center;
}

.contact-form label {
    font-weight: bold;
    color: var(--main-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    color: #44341cff;
    font-weight: 600;
}

.contact-form button {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .50s ease;
}

.contact-form button:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
}