.myserviced {

    margin-top: 200px;
}



.main {
    width: 100%;
    min-height: 380px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.service {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}

/* Mengatur posisi logo service */
.service-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.service-logo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

/* Membuat border title */
.service h4 {
    height: 35px;
    width: 80%;
    margin: 50px auto;
    background: #fff;
    position: relative;
}

.service h4::after,
.service h4::before {
    content: '';
    width: 40px;
    height: 30px;
    position: absolute;
    z-index: -1;
}

.service h4::after {
    background: linear-gradient(to right, #fff, #007bff);
    right: -5px;
    top: -5px;
}

.service h4::before {
    background: linear-gradient(to right, #007bff, #fff);
    left: -5px;
    bottom: -5px;
}


/* membuat shadow untuk service */
.main::after {
    content: '';
    height: 200px;
    width: 80%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 10%;
    z-index: -1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}

.main::before {
    content: '';
    height: 200px;
    width: 64%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 18%;
    z-index: -2;
}

.main:hover .service {
    transform: translateY(-50px);
}

.main:hover::after {
    transform: translateY(-25px);
}

.service-logo img {
    transition: transform 1s;
}

.main:hover .service-logo img {
    transform: rotate(360deg);
}




.btn-register {
    background: linear-gradient(to right, #007BFF, #4CAF50);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(to right, #4CAF50, #007BFF);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}


.lead {
    font-size: 16px;
}





.contact-form img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.form-container .form-side {
    width: 48%;
    /* Takes 48% width on larger screens */
}

.form-container .form-side form {
    max-width: 500px;
    margin: 0 auto;
}

.form-container .image-side {
    width: 48%;
    /* Takes 48% width on larger screens */
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        /* Stacks elements on smaller screens */
    }

    .form-container .form-side,
    .form-container .image-side {
        width: 100%;
        /* Full width on smaller screens */
        margin-bottom: 20px;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .section-content {
    margin-bottom: 40px;
  }




  .gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-item img {
width: 100%;
height: 200px;
  }

  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
  }
  .gallery-container {
    margin-top: 40px;
  }
  .gallery-title {
    text-align: center;
    margin-bottom: 30px;
  }