/* Section Layanan Kami */
.layanan-section {
    padding: 3rem 2rem 1rem 2rem;
    background-color: #fff;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


.layanan-header h2 {
  color: #003366;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.layanan-line {
    position: relative;
    width: 300px;
    height: 2px;
    background-color: #000000;
    margin-bottom: 20px;
}

.layanan.line::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: #000000;
  border-radius: 50%;
}

.layanan-header p {
  font-size: 1.2rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 4rem;
  
}

.layanan-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 1rem auto;
    box-sizing: border-box;
    flex-direction: row;
    align-items: flex-start;
}
.logo a {
    text-decoration: none;
}


/* Kiri & Kanan */
.layanan-column {
  flex: 1;
  width: 260px;
}

.layanan-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.layanan-item img {
  width: 50px;
  height: 50px;
  margin-left: 0px;
}

.layanan-item h4 {
  margin-top: -10px;
  font-size: clamp(1.1rem, 2vw, 1.3rem); /* Responsif */
  font-weight: 700;
  color: #003366;
}

.layanan-item p {
  font-size: clamp(0.9rem, 1.8vw, 1rem); /* Responsif */
  color: #444;
  margin-top: 0.2rem;
  max-width: 100%;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Gambar Tengah */
.layanan-image {
  flex: 1;
  max-width: 400px;
  text-align: center;
  padding: 2rem 0rem;
  box-sizing: border-box;
}

.layanan-image img {
  max-width: 100%;
  height: auto;
  margin-top: 0px;
}





/*Section Getstarted*/
.ready-section {
  width: 100%;
  display: flex;
  justify-content: left;
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.ready-container {
  max-width: 1440px;
  width: 90%;
  background: linear-gradient(to right, #444, #666);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  display: flex;
  overflow: hidden;
  color: white;
}

.ready-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
}


.ready-content {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ready-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ready-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.ready-button {
  font-family: 'DM Sans', sans-serif;
  width: 270px;
  background-color: #e0e0e0;
  color: #333;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.ready-button:hover {
  background-color: #ccc;
}


/*section testimoni*/
.testimonial-section {
  padding: 5rem 2rem;
  background-color: #fff;
}

.testimonial-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.testimonial-head{
  font-size: 3rem;
  color: #101241;
  margin-bottom: 1rem;
}

.testimonial-description {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-card {
  background-color: #f7f7f7;
  border-radius: 30px 30px 20px 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}


.testimonial-avatar {
  max-width: 220px;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.testimonial-name {
  font-weight: bold;
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.testimonial-title {
  color: #666;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: #333;
  margin: 1rem 0;
  line-height: 1.6;
}

.testimonial-stars {
  color: #ffcc00;
  font-size: 1.3rem;
}

 .testimonial-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .testimonial-nav button {
    background-color: #101241;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
  }

  .testimonial-nav button:hover {
    background-color: #333;
  }

  .nav-round {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #101241;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .pagination-btn:hover {
    background-color: #333;
  }
  .page-numbers button {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: #eee;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    margin-right: 5px;
    margin-left: 5px;
  }

  .page-numbers button.active {
    background-color: #101241;
    color: #fff;
  }






/*Responsive: Tablet (1024px ke bawah)*/
@media (max-width: 1024px) {
  .layanan-container{
    gap: 1rem;
    max-width: 900px;
}
.layanan-header h2,
.testimonial-head{
  font-size: 2.2rem;
}
.ready-content h2{
  font-size: 1.7rem;
}
.ready-content p{
  font-size: 1rem;
}
.testimonial-name{
    font-size: 1.3rem;
}
.testimonial-description,
.testimonial-title{
  font-size: 1.1rem;
}


.ready-container {
    max-width: 1440px;
    width: 90%;
    height: 350px;
    background: linear-gradient(to right, #444, #666);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    display: flex;
    overflow: hidden;
    color: white;
}
.ready-image {
  width: 50%;
  max-width: 600px;
  height: 300px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    border-radius: 20px;
    padding: 1rem 0.5rem;
}
.testimonial-avatar {
    max-width: 190px;
    margin-bottom: 1rem;
    border-radius: 10px;
}
    .testimonial-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

 /* Section Layanan Kami */
.layanan-section {
    padding: 0rem 0rem;
    background-color: #fff;
    align-items: center;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}
.layanan-header h2{
  margin-top: 60px;
  font-size: 2rem;
}
.layanan-header p {
    font-size: 1rem;
    color: #777;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}
  .layanan-container{
    gap: 0.2rem;
    margin: 0px;
    max-width: 100%;
}


/* Kiri & Kanan */
.layanan-column {
  flex: 1;
  width: 100%;
  padding: 20px 20px;
}

.layanan-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.layanan-item img {
  width: 35px;
  height: 35px;
  margin-left: 0px;
}

.layanan-item h4 {
  margin-top: -10px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.layanan-item p {
  font-size: 0.9rem; 
  color: #444;
  margin-top: 0.2rem;
  max-width: 100%;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Gambar Tengah */
.layanan-image img {
  width: 100%;
  height: auto;
  margin-top: 0px;
}


.ready-content h2{
  font-size: 1.8rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.ready-content p{
  font-size: 0.9rem;
  width: 380px;
  margin-bottom: 10px;
}
.testimonial-name{
    font-size: 1.3rem;
}
.testimonial-description,
.testimonial-title{
  font-size: 1.1rem;
}

.ready-section {
    padding: 40px 20px;
}
.ready-container {
    max-width: 1440px;
    width: 95%;
    height: 260px;
    background: linear-gradient(to right, #444, #666);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    display: flex;
    overflow: hidden;
    color: white;
}
.ready-content {
    flex: 1;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ready-image {
  width: 40%;
  max-width: 600px;
  height: 200px;
  margin-top: 20px;
}
.ready-button{
  width: 220px;
  font-size: 0.8rem;
  padding: 5px 15px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    padding: 50px;
    margin-top: -50px;
}
.testimonial-card {
    border-radius: 20px;
    padding: 1rem 0.5rem;
}
.testimonial-avatar {
    max-width: 190px;
    margin-bottom: 1rem;
    border-radius: 10px;
}
    .testimonial-name {
        font-size: 1.2rem;
    }

}


@media (max-width: 480px) {
/* Section Layanan Kami */
.layanan-header{
  padding: 20px 20px;
}
.layanan-header h2 {
    font-size: 1.2rem;
}
.layanan-header p {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 0px;
}

.layanan-container {
  flex-direction: column;
  align-items: center;
  margin: 0px;
}

.layanan-column {
  flex-direction: column;
  margin-left: 0px;
}
.layanan-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.layanan-item img {
        width: 35px;
        height: 35px;
    }
.layanan-item h4 {
  margin-top: -10px;
  font-size: 0.9rem;
  width: 400px;
}
.layanan-item p {
  font-size: 0.7rem;
  color: #444;
  margin-top: 0.2rem;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.5;
  width: 400px;
}

.layanan-image {
    flex: 1;
    width: 50%;
    text-align: center;
    padding: 0.5rem 0rem;
    box-sizing: border-box;
}


.ready-content h2{
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.ready-content p{
  font-size: 0.7rem;
  width: 250px;
  margin-bottom: 10px;
  text-align: justify;
}
.testimonial-name{
    font-size: 1.3rem;
}
.testimonial-description,
.testimonial-title{
  font-size: 1.1rem;
}

.ready-section {
    padding: 40px 20px;
}
.ready-container {
        max-width: 1440px;
        width: 70%;
        height: 460px;
        background: linear-gradient(to right, #444, #666);
        border-top-left-radius: 200px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 200px;
        border-bottom-right-radius: 10px;
        display: flex;
        overflow: hidden;
        color: white;
        flex-wrap: wrap;
        margin: 0 auto;
        justify-content: center;
        align-content: center;
}
    .ready-content {
        flex: 1;
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
        align-content: center;
    }
.ready-image {
  width: 80%;
  max-width: 600px;
  height: 200px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.ready-button{
  width: 220px;
  font-size: 0.8rem;
  padding: 5px 15px;
}

/* Testimonial Section */
  .testimonial-section {
    padding: 1rem 0.2rem;
  }
  .testimonial-head {
    font-size: 1.1rem;
  }
  .testimonial-description {
    font-size: 0.9rem;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    padding: 50px;
    margin-top: -50px;
  }
  .testimonial-card {
    padding: 0.7rem 0.2rem;
  }
  .testimonial-avatar {
    max-width: 120px;
  }
  .testimonial-name {
    font-size: 0.9rem;
  }
  .testimonial-title {
    font-size: 0.8rem;
  }
  .testimonial-quote {
    font-size: 0.7rem;
  }
  .testimonial-stars {
    font-size: 1rem;
  }
  .testimonial-pagination {
    gap: 0.2rem;
    margin-top: 1rem;
  }
  .pagination-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}


@media (max-width: 425px) {
  /* Testimonial Section */
  .testimonial-section {
    padding: 1rem 0.2rem;
  }
  .testimonial-head {
    font-size: 1.1rem;
  }
  .testimonial-description {
    font-size: 0.9rem;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.5rem;
    padding: 20px;
    margin-top: -50px;
  }
  .testimonial-card {
    padding: 0.7rem 0.2rem;
  }
  .testimonial-avatar {
    max-width: 70%;
  }
  .testimonial-name {
    font-size: 0.9rem;
  }
  .testimonial-title {
    font-size: 0.8rem;
  }
  .testimonial-quote {
    font-size: 0.7rem;
  }
  .testimonial-stars {
    font-size: 1rem;
  }
  .testimonial-pagination {
    gap: 0.2rem;
    margin-top: 1rem;
  }
  .pagination-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}