
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}
   
.tp-banner img {
    width: 100%;
    height: 100vh;
}

.banner-text {
    position: absolute; 
    top: 30%;
    left: 25%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    color: #fff;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.6);

    backdrop-filter: blur(10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.job-listings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
}

.job-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    margin: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
#jobContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Agar job cards tersebar dengan jarak yang sama */
  gap: 20px; /* Menambah jarak antar job cards */
}


.job-card:hover {
    transform: translateY(-10px);
}

button {
    background-color: #ce181e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
}

button:hover {
    background-color: black;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.webdev-highlight {
    background-color: #e9ecef;
    padding: 2rem;
    text-align: center;
}

.highlight-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.developer-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.developer-img {
    border-radius: 50%;
    margin-right: 20px;
    width: 150px;
    height: 150px;
}

.developer-info {
    max-width: 600px;
    text-align: left;
}

.developer-info h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .banner-text {
      font-size: 1.8rem;
      padding: 10px 20px;

  }
}

@media (max-width: 480px) {
  .job-card {width: 194px;}


.developer-info p{
font-size: 10px;
}

  .banner-text {
      top: -89px;
      font-size: 0.8rem;
      padding: 10px 20px;
  }
}



        

        .tp-banner img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .webdev-highlight {
            padding: 50px 20px;
            background-color: #ffffff;
            margin-top: 30px;
            text-align: center;
        }

        .highlight-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .developer-profile {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .developer-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }

        .developer-info {
            font-size: 16px;
            max-width: 600px;
        }


        .job-listings {
            padding: 50px 20px;
            background-color: #ffffff;
            margin-top: 40px;
            text-align: center;
        }

        .job-listings-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #333;
        }

        .no-jobs-message {
            font-size: 20px;
            font-weight: 500;
            color: #777;
            margin-top: 40px;
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 8px;
        }

        .job-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
        }

        .job-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #007bff;
        }

        .job-card p {
            font-size: 16px;
            color: #555;
        }

        .open-modal-btn {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .open-modal-btn:hover {
            background-color: #0056b3;
        }

        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            margin: 50px auto;
        }

        .modal-content h2 {
            margin-top: 0;
            font-size: 24px;
            color: #333;
        }

        .modal-content p {
            font-size: 16px;
            line-height: 1.5;
        }

        .close {
            font-size: 30px;
            font-weight: bold;
            color: #333;
            position: absolute;
            top: 10px;
            right: 20px;
            cursor: pointer;
        }

        .close:hover {
            color: #ff0000;
        }

