*{
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}

.hero{
    height: 100vh;
    width: 100%;
    background-color: white;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}

.logo{
    color:black;
    font-size: 31px;
    letter-spacing: 1px;
    cursor: pointer;
}

span{
    color: #E96013;
}

nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a{
    color:black;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover{
    color: #E96013;
    transition: .4s;
}

.content{
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translateY(-50%, -50%);
}

h1{
    color: black;
    margin: 20px 0 px 20px;
    font-size: 61px;
}

h3{
    color: black;
    font-size: 31px;
    margin: 10px 0;
    margin-left: 30px;
}

h4{
    color: black;
    letter-spacing: 2px;
    font-size: 25px;
    margin: 10px 0;
    margin-left: 65px;
}

button{
    background-color: #e96013;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}

button:hover{
    background-color: transparent;
    border: 2px solid #e96013;
    cursor: pointer;
}



.about{
    height: 100vh;
    width: 100%;
    padding: 100px 0px;
    background-color: #E3E1E1;
}

.about img{
    width: 270px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

}

.about-text{
    width: 550px;
    padding: 20px;
}

.main{
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-text h2{ 
    color: black;
    font-size: 61px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h5{
    color: black;
    letter-spacing: 2px;
    font-size: 25px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about-text p{
    color: black;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 45px;
}

button{
    background-color: #E96013;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
    margin-left: 70px;
}

button:hover{
    background-color: transparent;
    border: 2px solid #E96013;
    cursor: pointer;
}



.project{
    background: white;
    height: 100vh;
    width: 100%;
    padding: 35px 0px;
}

.title h2{
    color: black;
    font-size: 61px;
    width: 1130px;
    margin: 30px auto;
    text-align: center;
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.card{
    height: 365px;
    width: 335px;
    padding: 20px 35px;
    background:#E3E1E1;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card i{
    font-size: 18px;
    display: block;
    text-align: center;
    margin: 25px 0px;
    color: #E96013;
}

h5{
    color: black;
    font-size: 25px;
    padding-top: 20px;
    margin-bottom: 15px;
}

.pra p{
    color: black;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
}

.card .button{
    background-color: #E96013;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}

.card .button:hover{
    background-color: transparent;
    border: 2px solid #E96013;
    cursor: pointer;
}

.card img {
    width: 100%; /* Atur ukuran gambar sesuai kebutuhan */
    height: auto; /* Biarkan ketinggian mengikuti perbandingan aspek asli */
    border-radius: 20px 20px 0 0; /* Mengatur sudut melengkung pada bagian atas gambar */
}



footer{
    position: relative;
    width: 100%;
    height: 190px;
    background:  white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p:nth-child(1){
    font-size: 25px;
    color: black;
    margin-bottom: 20px;
    font-weight: bold;
}

footer p:nth-child(2){
    color: black;
    font-size: 17px;
    width: 500px;
    text-align: center;
    line-height: 26px;
}

.social{
    display: flex;
}

.social a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b4b4b4;
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.social a:hover{
    transform: scale(1.3);
    transition: .3s;
}


#contact {
    background-color:  #E3E1E1;
    padding: 100px 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #e96013;
    color: black;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-left: 415px;
}

button[type="submit"]:hover {
    background-color: #e96013;
}
