 /* Start halaman home eng roboto-slab */ 
 .roboto-slab {
   font-family: "Roboto Slab", serif;
   font-optical-sizing: auto;
   font-weight: 400px;
   font-style: normal;
 }

 /* Start halaman home ind Roboto */
 .roboto-condensed-regular {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400; /* Regular weight */
  font-style: normal;
}

.roboto-condensed-bold {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700; /* Bold weight */
  font-style: normal;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
 /* End font halaman home ind Roboto */

 /* Line Container */
 .line-container {
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   margin-top: 15px;
   width: 100%;
 }

 .line-container::after {
   content: "";
   width: 50%;
   height: 3px;
   background: #5c8ce7;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }

/* Start Header */

/* Navbar */
.navbar {
  background-color: #050f64;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0 10px; 
  display: flex;
  align-items: center;
  justify-content: space-between; 
  flex-wrap: nowrap; 
}

/* Logo */
.navbar-brand {
  margin-left: 0.5rem;
}

.navbar-brand img {
  max-height: 2.5rem; 
}

/* Navbar Nav */
.navbar-nav {
  display: flex;
  flex-direction: row; 
  flex-wrap: nowrap; 
}

.nav-link {
  color: rgb(255, 251, 251);
  margin: 0 5px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 0.9rem; 
}

.nav-link:hover {
  color: rgb(89, 128, 212);
}

.navbar-toggler {
  border: none;
  background-color: transparent;
  z-index: 1050;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Dropdown Styling */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%; /* Align dropdown menu below the nav item */
  left: 0;
  min-width: 10rem; /* Adjust the width */
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #000;
  padding: 8px 12px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-decoration: none;
}

.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}

/* Company Profile Styling */
.nav-item.company-profile {
  position: relative;
}

.nav-item.company-profile .nav-link {
  color: rgb(255, 251, 251);
  padding: 8px 12px;
  font-weight: bold;
}

.nav-item.company-profile .nav-link:hover {
  color: rgb(89, 128, 212);
}

/* Language Selection */
.language-selection {
  position: relative;
  display: inline-block;
  height: 30px; 
  line-height: 30px;
  bottom: 8px;
}

.language-selection .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.flag-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    flex-direction: column; 
    align-items: flex-start; 
    background-color: #050f64; 
    position: absolute; 
    top: 50px; 
    left: 0;
    z-index: 1000; 
  }

  .navbar-nav {
    flex-direction: column; 
    align-items: flex-start; 
    width: 100%; 
    background-color: #050f64; 
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: left; 
  }

  .nav-link {
    padding: 8px; 
    font-size: 0.85rem; 
    text-align: left; 
    color: rgb(255, 251, 251);
  }

  .navbar-toggler {
    order: 1; 
  }

  .navbar-brand {
    order: 0; 
  }

  .nav-item.company-profile {
    order: 2; 
  }

  .language-selection {
    order: 3; 
  }
}

@media (max-width: 575px) {
  .nav-link {
    font-size: 0.75rem; 
  }
}

@media (max-width: 370px) {
  .nav-link {
    font-size: 0.65rem; 
  }
  
  .navbar-collapse {
    flex-direction: column; 
    align-items: flex-start; 
    width: 100%; 
    background-color: #050f64;
    position: absolute; 
    top: 50px;
    left: 0;
    z-index: 1000; 
  }

  .navbar-nav {
    flex-direction: column; 
    align-items: flex-start; 
    width: 100%; 
    background-color: #050f64; 
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: left; 
  }

  .nav-link {
    padding: 8px; 
    font-size: 0.65rem;
    text-align: left; 
    color: rgb(255, 251, 251);
  }

  .navbar-toggler {
    order: 1;
  }

  .navbar-brand {
    order: 0;
  }

  .nav-item.company-profile {
    order: 2;
  }

  .language-selection {
    order: 3;
  }
}

/* End Header */

/* Start Hero Image */
.hero-image {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
  margin-top: 0; 
  margin-bottom: 20px;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.hero-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 123, 0.3);
  z-index: 1; 
}

.hero-text {
  position: relative;
  color: white;
  text-align: center;
  z-index: 10;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.hero-text .judul-website {
  font-size: 4rem; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-text .sub-judul-website {
  margin-top: 20px;
  font-size: 1.25rem; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-left: 2px solid white;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  padding: 10px 20px;
  display: inline-block;
}

.hero-text .arrow-down {
  display: block;
  margin: 20px auto 0;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-text .arrow-down:hover {
  color: #5c8ce7;
  transform: translateY(5px);
}

.hero-text h1,
.hero-text h3 {
  margin: 0;
}

/* Media Queries for Responsive Design */

/* Desktop and larger screens */
@media (min-width: 992px) {
  .hero-text .judul-website {
    font-size: 4rem; 
  }

  .hero-text .sub-judul-website {
    font-size: 1.25rem; 
  }

  .hero-text .arrow-down {
    font-size: 2.5rem; 
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 991px) {
  .hero-image {
    height: calc(100vh - 55px); 
  }

  .hero-text .judul-website {
    font-size: 3rem;
  }

  .hero-text .sub-judul-website {
    font-size: 1rem; 
  }

  .hero-text .arrow-down {
    font-size: 2rem;
  }
}

/* Smartphones */
@media (max-width: 600px) {
  .hero-image {
    height: calc(100vh - 50px); 
  }

  .hero-text .judul-website {
    font-size: 2rem;
  }

  .hero-text .sub-judul-website {
    font-size: 0.875rem;
    padding: 8px 15px; 
  }

  .hero-text .arrow-down {
    font-size: 1.5rem; 
  }
}

/* End Hero Image */

 /* Start About Us And Our Value*/

 /* Line Container About Us and Our Value */
 .line-container.about-our-line-container::after {
   content: "";
   top: -20px;
   width: 43%;
   height: 3px;
   background: var(--primary-color);
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }

 /* Container for Our Values */
 .our-values-container {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   padding: 0;
   margin: 0;
 }

 .our-values-container p {
   margin: 0;
   padding: 0;
   font-size: 20px;
   font-family: var(--font-family-main);
   margin-left: 30%;
 }

 .our-values-container p+p {
   margin-top: 10px;
 }

 .container .about {
   margin-left: 15%;
   margin-right: 15%;
 }

 .content-about .content-about-judul h3 {
   font-size: 38px;
 }

 .about .content-about-sub-judul {
   margin-top: 30px;
   font-size: 20px;
   font-family: var(--font-family-secondary);
 }

 .content-about-sub-judul p {
   font-size: 20px;
   font-family: var(--font-family-main);
 }

 .about .judul-about,
 .judul-our-value {
   font-size: 60px;
   font-family: var(--font-family-heading);
   margin-bottom: 20px;
 }

 .content-about,
 .content-our-value {
   margin-top: 20px;
   font-family: var(--font-family-main);
   font-size: 20px;
 }

 /* End About Us And Aour Value */

/* Start Our Client */
.line-container.client-line-container::after {
  content: "";
  top: -20px;
  width: 20%;
  height: 3px;
  background: #5c8ce7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.judul-client h1 {
  font-size: 60px;
  font-family: 'Lora', serif;
  margin-bottom: 20px;
  text-align: center;
}

.our-client {
  background-color: #fff;
  padding: 50px 0;
}

.counter-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.counter-item {
  text-align: center;
}

.counter-item .count {
  font-size: 60px;
  font-weight: bold;
  color: #5172db; 
  display: block;
}

.counter-item .label {
  font-size: 24px;
  margin-top: 10px;
}

/* Media Query untuk tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .counter-container {
    flex-direction: column;
    gap: 30px;
  }

  .counter-item .count {
    font-size: 50px;
  }

  .counter-item .label {
    font-size: 20px;
  }
}

/* Media Query untuk smartphone */
@media (max-width: 767px) {

  .counter-container {
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
  }

  .counter-item .count {
    font-size: 40px;
  }

  .counter-item .label {
    font-size: 18px;
  }
}

/* Media Query untuk desktop */
@media (min-width: 1025px) {
  .counter-container {
    flex-direction: row;
    gap: 50px;
  }

  .counter-item .count {
    font-size: 60px;
  }

  .counter-item .label {
    font-size: 24px;
  }
}

/* End Our Client */


 /* Start Team */
 .team {
   padding: 60px 15%;
   background-color: #eaf8ff;
   color: rgb(0, 0, 0);
   margin-left: 0;
   margin-right: 0;
 }

 .team .judul-team {
   font-family: var(--font-family-heading);
 }

 .content-our-team p {
   font-size: 20px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

 .line-container.team-our-line-container::after {
   content: "";
   top: -20px;
   width: 50%;
   height: 3px;
   background: #5c8ce7;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }

 /* Card Leader */
 .team-leader-card {
   position: relative;
   border: 2px solid #e1e1e1;
   border-radius: 10px;
   padding: 30px !important;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   overflow: hidden;
   transition: transform 0.3s ease;
   height: 300px;
 }

 /* Card Anggota Tim */
 .team-member-card {
   position: relative;
   background-color: rgb(255, 255, 255);
   border: 2px solid #e1e1e1;
   border-radius: 10px;
   padding: 20px;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   overflow: hidden;
   transition: transform 0.3s ease;
   height: 330px;
 }

 /* Gambar Leader */
 .team-leader-card .leader-photo {
   width: 150px;
   height: 150px;

 }

 /* Gambar Anggota Tim */
 .team-member-card .member-photo {
   width: 150px;
   height: 150px;

 }

 /* Informasi Anggota Tim */
 .team-member-info {
   position: relative;
   background-color: #fff;
   padding: 20px;
   text-align: center;
   color: #666;
   width: 100%;
   box-sizing: border-box;
   flex: 1;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   z-index: 2;
 }

 .team-member-info h3,
 .team-member-info h4 {
   margin: 0;
   font-size: 18px;
   font-family: 'Lora', serif;
 }

 .team-member-info p {
   margin: 10px 0 0;
   font-size: 14px;
 }

 /* Indikator dan latar belakang */
 .info-indicator {
   position: absolute;
   top: 0;
   left: 0;
   width: 10px;
   height: 100%;
   background-color: #00BFFF;
   z-index: -1;
   transition: width 0.3s ease;
 }

 .team-member-info:hover .info-indicator {
   width: 0;
 }

 .team-member-info .info-background {
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background-color: #00BFFF;
   z-index: -1;
   transition: left 0.5s ease;
 }

 .team-member-card:hover .team-member-info .info-background {
   left: 0;
 }

 .team-member-card:hover .team-member-info {
   color: white;
 }

 /* Ikon Sosial Leader */
 .social-icons-leader {
   position: absolute;
   bottom: 160px;
   left: 100%;
   transform: translateY(20%);
   display: flex;
   gap: 10px;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.3s ease, transform 0.3s ease;
   z-index: 10;
 }

 /* Ikon Sosial Member */
 .social-icons-member {
   position: absolute;
   bottom: 160px !important;
   left: 34% !important;
   transform: translateY(20%);
   display: flex;
   gap: 10px;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.3s ease, transform 0.3s ease;
   z-index: 10;
 }

 .team-leader-card:hover .social-icons-leader,
 .team-member-card:hover .social-icons-member {
   opacity: 1;
   transform: translateY(0);
 }

 .social-icons-member {
   position: absolute;
   bottom: 150px;
   left: 35%;
   transform: translateX(-50%);
   display: flex;
   gap: 10px;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.3s ease, transform 0.3s ease;
   z-index: 10;
 }

 .team-member-card:hover .social-icons-leader,
 .team-member-card:hover .social-icons-member {
   opacity: 1;
   transform: translateY(0);
 }

 /* Social icons image */
 .social-icon {
   width: 30px;
   height: 30px;
   transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .social-icon:hover {
   opacity: 0.8;
 }

 /* Gambar Leader dan Anggota Tim */
 .leader-photo,
 .member-photo {
   width: 200px;
   height: 200px;
   border-radius: 50%;
   margin-bottom: 10px;
   object-fit: cover;
 }

 /* Media Query untuk tablet */
 @media (min-width: 768px) and (max-width: 1024px) {
   .team .judul-team {
     text-align: center;
     margin-bottom: 20px;
   }

   .team-member-card {
     padding: 15px;
     height: 350px;
   }

   .leader-photo,
   .member-photo {
     width: 100px;
     height: 100px;
   }
 }

 /* Media Query untuk smartphone */
 @media (max-width: 767px) {
   .team {
     padding: 30px 5%;
   }

   .team .judul-team {
     font-size: 60px;
     font-family: var(--font-family-heading);
   }

   .team-member-card {
     padding: 10px;
     height: 320px;

     .leader-photo,
     .member-photo {
       width: 150px;
       height: 150px;
     }

     .social-icons-leader{
       bottom: 140px;
       left: 35%;
       transform: translateZ(-50%)
     }

     .social-icons-member {
      bottom: 140px;
      left: 35%;
      transform: translateZ(-50%)
    }
   }
 }

 /* Media Query untuk desktop */
 @media (min-width: 1025px) {
   .team {
     padding: 60px 15%;
   }

   .team h1 {
     font-size: 60px;
   }

   .team-member-card {
     padding: 20px;
     height: 330px;
   }

   .leader-photo,
   .member-photo {
     width: 150px;
     height: 150px;
   }

   .social-icons-leader,
   .social-icons-member {
     bottom: 160px;
     left: 40%;
     transform: translateY(20%);
   }
 }

 /* End Team */

 /* Start What We Offer */

 /* Line Container Offer */
 .line-container.offer-line-container::after {
   content: "";
   top: -20px;
   width: 37%;
   height: 3px;
   background: #5c8ce7;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }
 .offer {
   scroll-margin-top: 50px;
   padding: 50px 0;
   color: rgb(0, 0, 0);
 }

 .offer h1 {
   font-size: 60px;
   font-family: 'Lora', serif;
   margin-bottom: 20px;
   text-align: center;
 }

 .offer-menu {
   text-align: center;
   margin-bottom: 20px;
 }

 .offer-menu ul {
   list-style: none;
   padding: 0;
 }

 .offer-menu li {
   display: inline-block;
   margin: 0 10px;
   padding: 10px 20px;
   cursor: pointer;
   background-color: #f9f9fa;
   border: 2px solid #e1e1e1;
   border-radius: 5px;
   transition: background-color 0.3s, color 0.3s;
 }

 .offer-menu li.active {
   background-color: #5172db;
   color: white;
 }

 .offer-menu li:hover {
   background-color: #5172db;
   color: white;
 }

 .offer-content .content {
   display: none;
   margin-top: 20px;
   align-items: flex-start;
 }

 .offer-content .content.active {
   display: flex;
   flex-wrap: nowrap;
 }

 .content-left {
   flex: 1;
   padding-right: 20px;
 }

 .content-left img {
   width: 100%;
   border-radius: 10px;
 }

 .content-offer {
   flex: 2;
   margin-left: 20px;
   display: flex;
   flex-direction: column;
 }

 .content-offer h2 {
   font-size: 40px;
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   margin-bottom: 10px;
   margin-top: 0;
 }

 .content-offer p {
   font-size: 20px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

 /* Media Query untuk tablet */
 @media (min-width: 768px) and (max-width: 1024px) {
   .offer {
     padding: 20px 10%;
   }

   .offer h1 {
     font-size: 50px;
   }

   .content-offer h2 {
     font-size: 32px;
   }

   .content-offer p {
     font-size: 18px;
   }

   .offer-menu ul {
     padding-left: 0;
     padding-right: 0;
   }

   .offer-content .content {
     flex-direction: column;
   }

   .content-left {
     padding-right: 0;
     margin-bottom: 20px;
   }

   .content-offer {
     margin-left: 0;
   }
 }

 /* Media Query untuk smartphone */
 @media (max-width: 767px) {
   .offer {
     padding-left: 0;
     padding-right: 0;
     margin-top: 10px;
   }

   .offer .judul-offer {
     font-size: 60px;
     font-family: var(--font-family-heading);
   }

   .offer-menu ul {
     padding-left: 0;
     padding-right: 0;
   }

   .offer-menu li {
     display: block;
     margin: 5px 0;
     padding: 10px;
     font-size: 14px;
   }

   .content-offer h2 {
     font-size: 24px;
     text-align: center;
   }

   .content-offer p {
     font-size: 14px;
   }

   .offer-content .content {
     flex-direction: column;
   }

   .content-left {
     padding-right: 0;
     margin-bottom: 20px;
   }

   .content-offer {
     margin-left: 0;
   }
 }

 /* Media Query untuk desktop */
 @media (min-width: 1025px) {
   .offer {
     padding: 10px 15%;
   }

   .offer h1 {
     font-size: 60px;
   }

   .content-offer h2 {
     font-size: 40px;
   }

   .content-offer p {
     font-size: 20px;
   }

   .offer-menu ul {
     padding-left: 0;
     padding-right: 0;
   }

   .offer-content .content {
     flex-direction: row;
   }

   .content-left {
     padding-right: 20px;
   }

   .content-offer {
     margin-left: 20px;
   }
 }

 /* End What We Offer
 
/* Start Want to Join Us */

 /* Line Container Join */
 .line-container.join-line-container::after {
  content: "";
   top: -20px;
   width: 80%;
   height: 3px;
   background: #5c8ce7;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
 }

 .join {
   width: 100%;
   height: 300px;
   background-color: #eaf8ff;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .join-container {
   max-width: 800px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-align: left;
 }

 .join-container .judul-join {
   font-size: 60px;
   font-family: var(--font-family-heading);
   margin-bottom: 20px;
 }

 .join-text {
   flex: 2;
 }

 .join h1 {
   font-size: 40px;
   font-family: 'Lora', serif;
   margin-bottom: 20px;
 }

 .join p {
   font-size: 20px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   margin-bottom: 0;
 }

 .join-button {
   flex: 1;
   display: flex;
   justify-content: flex-end;
 }

 .join a .btn {
   font-size: 23px;
   padding: 10px;
   font-family: 'Arial', sans-serif;
   border-radius: 20px;
   transition: background-color 0.3s, color 0.3s;
   background-color: #ffffff;
 }

 .join a .btn:hover {
   background-color: #3bbdf5;
   color: #ffffff;
 }

 /* Media Query untuk tablet */
 @media (min-width: 768px) and (max-width: 1024px) {
   .join {
     padding: 0 10%;
     height: auto;
   }

   .join-container {
     flex-direction: column;
     text-align: center;
   }

   .join h1 {
     font-size: 35px;
   }

   .join p {
     font-size: 18px;
   }

   .join-button {
     justify-content: center;
     margin-top: 20px;
   }

   .join a .btn {
     font-size: 18px;
   }
 }

 /* Media Query untuk smartphone */
 @media (max-width: 767px) {
   .join {
     padding-left: 10%;
     padding-right: 10%;
     height: auto;
   }

   .join-container {
     flex-direction: column;
     text-align: center;
   }

   .join .judul-join {
     font-size: 60px;
     font-family: var(--font-family-heading);
   }

   .join p {
     font-size: 16px;
   }

   .join-button {
     justify-content: center;
     margin-top: 20px;
   }

   .join a .btn {
     font-size: 16px;
   }
 }

 /* Media Query untuk desktop */
 @media (min-width: 1025px) {
   .join {
     height: 300px;
   }

   .join-container {
     flex-direction: row;
     text-align: left;
   }

   .join h1 {
     font-size: 40px;
   }

   .join p {
     font-size: 20px;
   }

   .join-button {
     justify-content: flex-end;
   }

   .join a .btn {
     font-size: 23px;
   }
 }

 /* End Want to Join Us */

 /* Our Service */
.line-container.services-line-container::after {
  content: "";
  top: -20px;
  width: 32%;
  height: 3px;
  background: #5c8ce7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.services {
  scroll-margin-top: 50px;
  padding: 20px 15%;
  color: rgb(0, 0, 0);
}

.services .judul-services h1 {
  font-size: 60px;
  font-family: 'Lora', serif;
  margin-bottom: 20px;
  text-align: center;
}

.services-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.services-cards .card {
  width: calc(33.333% - 20px);
  height: 20rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.services-card-content {
  background-color: #07055c;
  color: #fff;
  padding: 7px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.services-card-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.services-card-content p {
  font-size: 16px;
}

/* Media Query untuk tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .services {
    padding: 20px 10%;
  }

  .services .judul-services h1 {
    font-size: 48px;
  }


  .services-cards .card {
    width: calc(50% - 20px);
    height: 20rem;
  }
}

/* Media Query untuk smartphone */
@media (max-width: 767px) {
  .services {
    padding: 10px;
  }

  .services .judul-services {
    font-size: 36px;
  }

  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .services-cards .card {
    width: 100%;
    max-width: 300px;
  }
}

/* Media Query untuk desktop */
@media (min-width: 1025px) {
  .services {
    padding: 20px 15%;
  }
}
/* End Services */

/* Start Contact Us */
.line-container.contact-line-container::after {
  content: "";
  top: -40px;
  width: 30%;
  height: 3px;
  background: #5c8ce7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contact {
  padding: 60px 15%;
  background-color: #eaf8ff;
  margin-top: 20px;
}

.judul-contact {
  text-align: center;
  margin-bottom: 40px;
}

.judul-contact h1 {
  font-size: 60px;
  font-family: 'Lora', serif;
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; 
}

.contact-card-info a {
  text-decoration: none;
  color: black;
}

.contact-card-info a:hover {
  color: #0056b3;
}

.map {
  flex: 1;
  margin-top: 20px;
}

.map iframe {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

.contact-card {
  flex: 1;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 300px; 
}

.contact-card-content {
  background-color: #07055c;
  color: #fff;
  padding: 7px;
  border-radius: 10px 10px 0 0;
}

.contact-card-content h3 {
  font-size: 24px; 
  margin-bottom: 10px;
}

.contact-card-info {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

.contact-card-info p {
  font-size: 14px;
}

.contact-card-info a {
  color: black; 
}

.contact-card-info a:hover {
  color: #0056b3;
}

/* Media Query untuk tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact {
    padding: 40px 10%;
  }

  .contact-content {
    flex-direction: column;
  }

  .map,
  .contact-card {
    width: 100%;
  }

  .contact-card {
    margin-top: 20px;
    min-width: unset; 
  }

  .contact-card-content h3 {
    font-size: 20px;
  }

  .contact-card-info p {
    font-size: 12px;
  }
}

/* Media Query untuk smartphone */
@media (max-width: 767px) {
  .contact {
    padding: 20px;
  }

  .contact-content {
    flex-direction: column;
  }

  .map,
  .contact-card {
    width: 100%;
  }

  .contact-card {
    margin-top: 20px;
    min-width: unset; 
  }

  .contact-card-content h3 {
    font-size: 18px;
  }

  .contact-card-info p {
    font-size: 10px;
  }
}

/* Media Query untuk desktop */
@media (min-width: 1025px) {
  .contact {
    padding: 60px 15%;
  }

  .contact-content {
    flex-direction: row;
  }

  .contact-card {
    margin-top: 20px;
    min-width: unset; 
  }

  .contact-card-content h3 {
    font-size: 24px;
  }

  .contact-card-info p {
    font-size: 14px;
  }
}

/* End Contact Us */


 /* Start Arrow Up */
 .arrow-up {
   position: relative;
   display: block;
   margin: 20px auto;
   font-size: 40px;
   text-align: center;
 }

 .arrow-up a {
   color: black;
   text-decoration: none;
   transition: color 0.3s ease, transform 0.3s ease;
 }

 .arrow-up a:hover {
   color: #5c8ce7;
   transform: translateY(-10px);
 }

 /* End Arrow Up */

 /* Start Footer */
 .footer {
   width: 100%;
   height: 60px;
   background-color: #050f64;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 15px;
 }

 .footer-content {
   text-align: center;
 }

 .footer-content p {
   margin: 0;
   font-size: 14px;
 }

 /* End Footer */


 /* Start Send Chat */
.customer-services-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2736B2;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  width: 200px;
  z-index: 50; 
}

.customer-services-box i {
  font-size: 24px;
  margin-right: 10px;
}

.customer-services-box span {
  font-weight: bold;
}

.notification-badge {
  background-color: red;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Kotak Customer Services */
.customer-services-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2736B2;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  width: 200px;
  z-index: 50; 
}

.customer-services-box i {
  font-size: 24px;
  margin-right: 10px;
}

.customer-services-box span {
  font-weight: bold;
}

.customer-services-box a {
  color: white;
  text-decoration: none;
}

.notification-badge {
  background-color: red;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Styling untuk badge online */
.online-badge {
  width: 10px;
  height: 10px;
  background-color: #25D366; 
  border-radius: 50%;
  position: absolute;
  bottom: -1px;
  left:80%;
  transform: translateX(-50%);
  border: 2px solid #fff; 
}

/* Adjustments for logo-container */
.logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}


/* Gaya untuk kotak chat */
.chat-box {
  z-index: 20;
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Arial', sans-serif;
  width: 400px;
  height: 300px;
  max-height: 35vh; 
  overflow: hidden;
}

.chat-header {
  background-color: #2736B2;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.chat-header .logo {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}

.status-badge {
  width: 10px;
  height: 10px;
  background-color: #25D366;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid white;
}

.chat-header .chat-header-text {
  display: flex;
  flex-direction: column;
}

.chat-header h4 {
  margin: 0;
  font-size: 18px;
}

.chat-header .reply-info {
  margin: 0;
  font-size: 12px;
  color: #ccc;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat-content {
  padding: 10px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chat-message {
  background-color: #e1ffc7;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  max-width: 80%;
  text-align: start;
  position: relative;
}

.chat-message p {
  margin: 0;
  font-size: 16px;
}

.chat-message::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #e1ffc7;
}

.chat-actions {
  margin-top: 20px;
}

.chat-actions a {
  text-decoration: none;
}

.chat-actions button {
  background-color: #3e70cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* Media Query untuk mobile device */
@media (max-width: 767.98px) {
  .customer-services-box {
      font-size: 14px;
      padding: 8px 16px;
  }

  .customer-services-box i {
      font-size: 20px;
  }

  .chat-box {
      width: 90%;
      bottom: 60px;
  }
}
/* End Customer Service */

/* Start Artikel */
.artikel-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}

/* Artikel */
.artikel {
  width: 25%;
  position: relative;
  bottom: 100px;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center; 
}

/* Artikel Image */
.artikel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* Artikel Judul */
.artikel h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Artikel Deskripsi */
.artikel p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* Button Read More */
.artikel a {
  background-color: #00BFFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; 
  display: inline-block; 
}

.artikel a:hover {
  background-color: #00BFFF;
}

/* Responsif */
@media (max-width: 1200px) {
  .artikel {
    width: 30%; 
  }
}

@media (max-width: 992px) {
  .artikel {
    width: 40%; 
  }
}

@media (max-width: 768px) {
  .artikel {
    width: 50%; 
  }
}

@media (max-width: 480px) {
  .artikel {
    width: 100%; 
  }
}
/* End Artikel */

/* Full Artikel */
.full-artikel-container {
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  padding: 20px;
  position: relative;
  bottom: 100px;
  gap: 20px; 
}

/* Main Article */
.artikel-utama {
  width: 60%;
}

.artikel-utama h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.artikel-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.artikel-gambar {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.artikel-isi {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.artikel-isi p {
  margin-bottom: 20px;
}
/* End Full Artikel */

/* Suggested Articles */
.artikel-suggest {
  width: 30%;
  background-color: #f7f7f7;
  padding: 20px;
  border: 1px solid #ddd;
  position: relative;
  border-radius: 10px;
  top: 150px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.artikel-suggest-item {
  margin-bottom: 20px;
}

.artikel-suggest-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.artikel-suggest-item h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.artikel-suggest-item p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Center align the Read More button */
.artikel-suggest-item a {
  display: block; 
  width: max-content; 
  margin: 0 auto; 
  background-color: #00BFFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; 
  text-align: center; 
}

.artikel-suggest-item a:hover {
  background-color: #00BFFF;
}

/* Desktop mode */
@media (min-width: 1200px) {
  .full-artikel-container {
    padding: 20px;
  }
}

/* Tablet mode (max-width: 768px) */
@media (max-width: 768px) {
  .full-artikel-container {
    flex-direction: column;
  }

  .artikel-utama {
    width: 100%;
    margin-right: 0;
  }

  .artikel-suggest {
    width: 100%;
    margin-top: 20px;
  }
}

/* Mobile mode (max-width: 480px) */
@media (max-width: 480px) {
  .full-artikel-container {
    padding: 10px;
  }

  .artikel-utama {
    padding: 10px;
  }

  .artikel-suggest {
    padding: 10px;
  }
}
/* End Suggest Article */

/* Activity */
.activity-item {
  cursor: pointer;
  margin-top: 40px;
  position: relative;
  bottom: 100px;
}

.activity-item img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-radius: 10px;
}

/* Responsif untuk perangkat besar (Desktop) */
@media (min-width: 1200px) {
  .activity-item img {
    height: 200px; 
  }
}

/* Responsif untuk perangkat tablet (max-width: 768px) */
@media (max-width: 768px) {
  .activity-item img {
    height: 150px; 
  }
}

/* Responsif untuk perangkat mobile (max-width: 480px) */
@media (max-width: 480px) {
  .activity-item img {
    height: 100px; 
  }
}

/* Modal */
.modal-image {
  width: 100%;
  height: 100vh; 
  object-fit: cover;
  border-radius: 10px;
}

/* Responsif Modal untuk perangkat besar (Desktop) */
@media (min-width: 1200px) {
  .modal-image {
    height: 100vh; 
  }
}

/* Responsif Modal untuk perangkat tablet (max-width: 768px) */
@media (max-width: 768px) {
  .modal-image {
    height: 80vh; 
  }
}

/* Responsif Modal untuk perangkat mobile (max-width: 480px) */
@media (max-width: 480px) {
  .modal-image {
    height: 60vh;
  }
}

/* End Activity */