@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700;800&display=swap");

* {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
}

*::-moz-selection {
  background-color: #00A2E9;
  color: #fff;
}

*::selection {
  background-color: #00A2E9;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}
html::-webkit-scrollbar {
  height: 0.5rem;
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
html::-webkit-scrollbar-thumb {
  background-color: #6cbadb;
}
body {
  font-family: 'Open Sans', sans-serif;
}
/* Add this to your CSS file */

/* Main background styling */
body {
  position: relative;
  overflow-x: hidden;
  background-color: #ecf0f4; /* Light fallback background */
}

/* Blue vector background elements */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Curved blue lines */
  radial-gradient(circle at 20% 30%, rgba(0, 162, 233, 0.15) 0%, transparent 30%),
  radial-gradient(circle at 80% 70%, rgba(0, 162, 233, 0.15) 0%, transparent 30%);

  background-size: 
    100% 100%,
    100% 100%,
    200px 200px,
    250px 250px,
    300px 300px,
    350px 350px;
  z-index: -1;
  pointer-events: none;
}



/* Animate the dots slightly for a subtle effect */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Apply animation to some dots */
body::before,
.home-bg::before,
.solution-bg::before,
.service-hero::before {
  animation: float 8s ease-in-out infinite;
}

/* Different animation timing for different dot sizes */
.home-bg::before {
  animation-delay: 1s;
}

/* Section specific adjustments */
.tentangkami-bg,
.portofolio-bg,
.partners-section {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.tentangkami-bg::before,
.portofolio-bg::before,
.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 162, 233, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(0, 162, 233, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 15% 15%, rgba(0, 162, 233, 0.1) 1px, transparent 3px),
    radial-gradient(circle at 85% 85%, rgba(0, 162, 233, 0.1) 1px, transparent 3px);
  background-size: 
    100% 100%,
    100% 100%,
    200px 200px,
    250px 250px;
  z-index: 0;
  pointer-events: none;
}

/* Make sure content stays above the background elements */
.header,
.home-bg .home,
.tentangkami-bg .tentangkami,
.portofolio-bg .portofolio,
.partners-section h2,
.partners-section .partner-logos,
.kontak .content {
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #00A2E9;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 3rem;
}
.btn:hover {
  background-color: #ffffff;
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.4s;
  z-index: 1000;
  
}
.header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1.5rem 6%;
}
.header .flex .logo img {
  height: 4.5rem;
}
.header .flex .navbar a {
  margin-left: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ecf0f4;
}
.header .flex .navber a {
  margin-left: 2rem;
  font-size: 1.5rem;
  color: #000;
}
.header .flex .navbar a:hover {
  color: #B60007;
}
.header .flex #menu-btn {
  display: none;
  font-size: 2.5rem;
  color: #000;
  cursor: pointer;
}

.header.white {
  background: #ecf0f4;
}
.header.white .navbar a {
  color: #000;
}
.header.white .navber a {
  color: #fff;
}
.home-bg {
  background: linear-gradient(90deg, rgba(22, 20, 16, 0.6), transparent 550%), url(../gambar/layanan-1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.solution-bg {
  background: linear-gradient(90deg, rgba(134, 117, 84, 0.6), transparent 550%), url(../gambar/home.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.home-bg .home {
  min-height: 70rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-bg .home .content {
  width: 70%;
}
.home-bg .home .content h3 {
  font-size: 3.1rem;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.1rem;
  font-weight: 800;
}
.home-bg .home .content .border-home {
  width: 70rem;
  height: 0.5rem;
  background: #00A2E9;
  margin: auto;
}
.home-bg .home .content p {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffff;
  line-height: 1.5;
}


.tentangkami-bg .tentangkami {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tentangkami-bg .tentangkami .content {
  padding: 5rem 0 5rem 0;
  width: 70%;
}
.tentangkami-bg .tentangkami .content h3 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.tentangkami-bg .tentangkami .content .border-tentangkami {
  width: 10rem;
  height: 0.5rem;
  background: #B60007;
  margin: auto;
}
.tentangkami-bg .tentangkami .content p {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffff;
  line-height: 2;
  letter-spacing: 0.2rem;
}
.tentangkami-bg .tentangkami .content .btn {
  background-color: #B60007;
}


.about {
  padding: 10rem 0;
  align-items: center;
  min-height: 70rem;
}

.about h3 {
  text-align: center;
  font-size: 5.2rem;
  color: #000;
  padding-bottom: 5rem;
}

.content-1, .content-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start; /* Pastikan konten teks sejajar di atas */
  gap: 2rem;
  margin-bottom: 10rem;
}

.content-1 .image, .content-2 .image {
  width: 100%;
}

.content-1 .content h3, .content-1 .content p {
  text-align: left; /* Teks pada .content-1 sejajar kiri */
}
.content-2 .content h3, .content-2 .content p {
  text-align: right; /* Teks pada .content-2 sejajar kanan */
}
.content-1 .content h3, .content-2 .content h3 {
  font-size: 2rem;
  color: #000;
  padding-bottom: 1rem;
}

.content-1 .content p, .content-2 .content p {
  padding: 1rem 0;
  line-height: 2;
  color: #000;
  font-size: 1.5rem;
}

.content-1 img, .content-2 img {
  width: 100%;
  height: auto;
}

/* Responsif untuk ukuran layar kecil */
@media (max-width: 768px) {
  .content-1, .content-2 {
      grid-template-columns: 1fr 1fr; /* Gambar tetap di samping teks */
      grid-auto-rows: minmax(100px, auto);
      align-items: center; /* Pastikan konten tetap di bagian atas */
  }
}

@media (max-width: 576px) {
  .content-1, .content-2 {
      grid-template-columns: 1fr 1fr; /* Menjaga gambar tetap di sebelah */
      grid-template-areas: 
          "image content"; /* Gambar tetap di kiri untuk content 1 */
  }

  .content-1 .image {
      grid-area: image;
  }

  .content-2 {
      grid-template-areas: 
          "content image"; /* Gambar tetap di kanan untuk content 2 */
  }
  
  .content-2 .image {
      grid-area: image;
  }
}


.portofolio-bg {
  background-color: #B60007;
}
.portofolio-bg .portofolio {
  padding: 10rem 0 10rem 0;
}
.portofolio-bg .portofolio h3 {
  padding-bottom: 10rem;
  text-align: center;
  font-size: 3.4rem;
  color: #fff;
}
.portofolio-bg .portofolio .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 1.5rem;
}
.portofolio-bg .portofolio .box-container .box {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
.portofolio-bg .portofolio .box-container .box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portofolio-bg .portofolio .box-container .box .text-box {
  margin: 2rem 0 2rem 0;
  padding: 2rem 0 2rem 0;
  display: flex;
  gap: 4rem;
  border-bottom: 0.2rem solid #B60007;
  border-top: 0.2rem solid #B60007;
}
.portofolio-bg .portofolio .box-container .box .text-box .kategori {
  flex: 1 1 50%;
}
.portofolio-bg .portofolio .box-container .box .text-box .kategori p {
  font-size: 2rem;
}
.portofolio-bg .portofolio .box-container .box .text-box .nama {
  flex: 1 1 50%;
}
.portofolio-bg .portofolio .box-container .box .text-box .nama p {
  font-size: 1.4rem;
}

.kontak .content {
  min-height: 50rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  align-items: center;
  padding: 4rem;
}
.kontak .content .text {
  flex: 1 1 40rem;
}
.kontak .content .text h3 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
.kontak .content .text p {
  font-size: 1.5rem;
  line-height: 2;
  text-transform: none;
}
.kontak .content .info {
  flex: 1 1 40rem;
}
.kontak .content .info .border-kontak {
  width: 20rem;
  height: 0.5rem;
  background: #00A2E9;
  margin-bottom: 2rem;
}
.kontak .content .info p {
  font-size: 1.5rem;
  padding: 2rem 0 2rem 0;
  text-transform: none;
}
.kontak .content .info p i {
  font-size: 2rem;
  margin-right: 2rem;
}

.footer {
  align-items: center;
  background-color: #00A2E9;
}
.footer p {
  font-size: 1.7rem;
  text-align: center;
  padding: 4rem;
  color: #fff;
  text-transform: capitalize;
}

/* media queries  */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-image {
    margin-top: 20px;
  }
  .header {
    background-color: #fff;
  }
  .header .flex .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 0.2rem solid #000;
    border-bottom: 0.2rem solid #000;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }
  .header .flex .navbar a {
    color: #000;
  }
  .header .flex #menu-btn {
    display: inline-block;
    transition: 0.2s linear;
  }
  .header .flex #menu-btn.fa-times {
    transform: rotate(180deg);
  }
  .header .flex .navbar a {
    display: block;
    margin: 2rem;
  }
  .header .flex .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .home-bg {
    padding: 8rem 0 6rem 0;
  }
  .home-bg .home .content h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .home-bg .home .content p {
    margin: 2rem 0 2rem 0;
    font-size: 1.2rem;
  }
  .about .content-1, .about .content-2 {
    padding: 2rem;
  }
  .about .content-1 .content h3, .about .content-2 .content h3 {
    text-align: left;
  }
  .about .content-2 {
    flex-direction: column-reverse;
    margin-bottom: -20rem;
  }
  .about .content-2 .content p {
    text-align: left;
  }
  .portofolio-bg {
    padding: 2rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}/*# sourceMappingURL=style.css.map */
/* Partners Section */
/* Partners Section Styles */
/* Partners Section Styles */
/* Partners Section with Boing-Boing Animation */
.partners-section {
  padding: 8rem 0;
  text-align: center;
}


.partners-section h2 {
  font-size: 3.5rem;
  color: #08316c;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

.partners-section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #B60007;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  perspective: 1000px;
}

.logo-item {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: boing 3s ease-in-out infinite;
}

/* Tambahkan animasi default untuk logo-item */
.logo-item {
  animation: boing 8s ease-in-out infinite;
}

/* Animasi boing-boing */
@keyframes boing {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-15px) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(0.95);
  }
  75% {
    transform: translateY(-10px) scale(1.03);
  }
}

/* Animasi berbeda untuk tiap logo */
.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 2s; }
.logo-item:nth-child(3) { animation-delay: 3s; }
.logo-item:nth-child(4) { animation-delay: 4s; }
.logo-item:nth-child(5) { animation-delay: 5s; }
.logo-item:nth-child(6) { animation-delay: 6s; }
/* Tambahkan lebih banyak delay sesuai jumlah logo */

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Efek hover tambahan */
.logo-item:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    height: 80px;
    animation: boingMobile 4s ease-in-out infinite;
  }

  @keyframes boingMobile {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-10px) scale(1.03);
    }
  }
}
.about-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}


.section-titles {
  text-align: center;
  font-size: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 13px;
  color: #000000;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
  font-size: 15.5px;
  line-height: 1.8;
  color: #000000;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.service-card-link:hover .member {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.member {
  transition: box-shadow 0.3s ease;
  height: 100%;
}
/* Service Detail Page Styles */
.service-detail {
  padding: 80px 0;
  margin-top: -80px;
}

.service-title {
  font-size: 2.5rem;
  color: #00A2E9;
  margin-bottom: 30px;
  text-align: center;
}

.service-image {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-content h2 {
  color: #333;
  margin: 30px 0 20px;
  font-size: 1.8rem;
}

.service-content h3 {
  color: #00A2E9;
  margin: 25px 0 15px;
  font-size: 1.5rem;
}

.service-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.service-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.benefits {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

/* Add to your CSS file */
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.service-card-link:hover .member {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.member {
  transition: box-shadow 0.3s ease;
  height: 100%;
}

/* Service Page Styles */
.service-hero {
  padding: 150px 0 100px;
  color: white;
  text-align: center;
  position: relative;
  margin-top: 7px;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.service-hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  padding: 0;
  background: transparent;
  font-size: 0.9rem;
}

.service-detail {
  padding: 80px 0;
}

.service-article h2 {
  color: #00A2E9;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.service-article h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #B60007;
}

.service-article p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: -50px 0;
  align-items: center;
}

.feature-img {
  flex: 1;
  min-width: 300px;
}

.feature-content {
  flex: 1;
  min-width: 300px;
}

.feature-content h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
}

.feature-content li i {
  color: #00A2E9;
  margin-right: 10px;
  margin-top: 3px;
}

.benefit-section {
  margin: 60px 0;
}

.benefit-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card i {
  font-size: 2.5rem;
  color: #00A2E9;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
}

.work-process {
  margin: 70px 0;
}

.work-process h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #00A2E9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.process-step p {
  font-size: 0.95rem;
  color: #666;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 2px solid #00A2E9;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget li {
  margin-bottom: 12px;
}

.sidebar-widget a {
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.sidebar-widget a:hover {
  color: #00A2E9;
  text-decoration: none;
}

.sidebar-widget a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.contact-widget {
  background: #00A2E9;
  color: white;
}

.contact-widget h3 {
  color: white;
  border-bottom: 2px solid white;
}

.contact-widget p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.contact-widget .btn {
  margin-bottom: 20px;
  background: white;
  color: #00A2E9;
  font-weight: 600;
}

.contact-widget .btn:hover {
  background: #f1f1f1;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  width: 20px;
}

.service-cta {
  background: #00A2E9;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-light {
  background: white;
  color: #B60007;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: white;
  color: #B60007;
}

/* Footer */
.footer {
  background: #222;
  color: #aaa;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
  justify-content: space-between;
}

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #00A2E9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #aaa;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
  text-decoration: none;
}

.footer-col i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero {
      padding: 120px 0 80px;
  }
  
  .service-hero h1 {
      font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .service-hero {
      padding: 100px 0 60px;
      margin-top: 60px;
  }
  
  .service-hero h1 {
      font-size: 2.3rem;
  }
  
  .service-hero p {
      font-size: 1.2rem;
  }
  
  .feature-content, .feature-img {
      min-width: 100%;
  }
  
  .process-steps {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .service-hero h1 {
      font-size: 2rem;
  }
  
  .process-steps {
      grid-template-columns: 1fr;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .cta-buttons .btn {
      width: 100%;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 30px;
  }
}

.service-hero {
  padding: 150px 0 100px;
  color: white;
  text-align: center;
  position: relative;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Add dark overlay for better text contrast */
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.service-hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-hero {
      padding: 100px 0 60px;
  }
  
  .service-hero h1 {
      font-size: 2.3rem;
  }
  
  .service-hero p {
      font-size: 1.2rem;
  }
}
/* Hero Section */
.service-hero {
  padding: 150px 0;
  color: white;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Improved CTA Button */
.btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00A2E9;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px; /* More rounded corners */
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Text shadow */
  border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle border */
}

.btn-cta i {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-hero {
      padding: 100px 0;
  }
  
  .service-hero h1 {
      font-size: 2rem;
  }
  
  .service-hero p {
      font-size: 1.1rem;
  }
  
  .btn-cta {
      padding: 10px 25px;
      font-size: 1rem;
  }
}

.auto-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.auto-fade-in:nth-child(2) {
  animation-delay: 0.3s;
}

.auto-fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Perbaikan untuk enhanced-text */
.enhanced-text {
  font-size: 1.3rem !important; /* Ukuran lebih besar */
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .enhanced-text {
      font-size: 1.6rem !important;
  }
}

@media (max-width: 576px) {
  .enhanced-text {
      font-size: 1.4rem !important;
  }
}
.kontak .content .info p {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.5rem;
  padding: 2rem 0;
  text-align: justify;
  line-height: 1.8;
}

.kontak .content .info p i {
  flex-shrink: 0;
  font-size: 2rem;
  margin-top: 0.3rem;
}

