@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #be8314;
    --c-brand-light: #ffffffe5; 
    --c-brand-rgb: rgb(20, 190, 71);
    --c-body: #4b4946;
    --font-base: "generalsans", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: alll 0.5s ease;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3, h4, h5, h6
.h1, .h2, .h3, .h4, h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a{
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 150px;
    height: auto;
}


.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.bg-cover{
    background-position: center !important;
    background-size: cover !important;
    background-position: center !important;
}


/* navbar */
.navbar {
    box-shadow: var(--box-shadow);
    color: white;
}
.navbar .navbar-nav .nav-link:hover{
    color: #be8314;
    text-decoration: underline;
}
.navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--c-brand);
}

.navbarNav {
    background: white;
}

/* BTN */
.btn {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px, 24px;
}

.btn-brand {
    background-color: var(--c-brand) !important;
    border-color: var(--c-brand) !important;
    color: white !important;
}

.btn-brand:hover {
    background-color: white !important;
    border-color: white !important;
    color: gray !important;
}

/* HERO */
#slide1 {
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgb(0, 0, 0, 0.438)), url(../image/gambarporto5.png);
    background-position: center;
    background-size: cover;
}
#slide2 {
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgb(0, 0, 0, 0.438)), url(../image/gambar\ training.JPG);
    background-position: center;
    background-size: cover;
}
#slide3 {
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgb(0, 0, 0, 0.438)), url(../image/gambar\ tool\ training.JPG);
    background-position: center;
    background-size: cover;
}
#slide4 {
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.438)), url(../image/sampul\ take\ lombok.JPG);
    background-position: center;
    background-size: cover;
}
.col-lg-6 {
    width: 1080px;
    height: 720px;
}

.gambar-hero{
    max-width: max-content;
    background-size: cover;
    width: 100%;
    height: auto;
}


/* SECTION TITLE */
.section-title {
    margin-bottom: 40px;
}

/* SECTION KONTRIBUSI */
.bg-orange {
    background: #FFB24A; /* Orange background */
    color: white; /* White text color */
    padding: 60px 0;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    color: #fff;
    font-size: 32px;
    margin: 0 auto 15px auto;
}

.number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.description {
    font-size: 1rem;
    color: #f9f9f9;
}


/* INFOBOX */
.info-box {
    display: unset;
    align-items: center;
    margin-top: 0;
    width: 18rem;
}
.info-box img {
    width: 100%;
    height: 50%;
    margin-right: 18px;
}

/* transisi untuk scroll */
.card {
    transition: transform 0.5s ease-in-out;
    height: auto;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    display: block; /* Menghindari space di bawah gambar */
}

/* Brand Logo Bergerak */
.logo-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.logo-track {
    display: inline-block;
    animation: move-right-left 14s linear infinite;
}

.logo-track-reverse {
    display: inline-block;
    animation: move-left-right 14s linear infinite;
}

.logo img {
    width: auto;
    height: 70px;
    margin: 26px 40px;
    object-fit: contain;
    
}

@keyframes move-right-left {
    from {
        transform: translateX(75%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes move-left-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(75%);
    }
}

.content {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-image {
    margin-top: 100px;
}

/* Styling gambar */
.section-card img {
    max-width: 100%;
    border-radius: 5px;
}

/* Teks di samping gambar */
.custom-list {
    list-style: none;
    padding: 0;
}
.judul-content-2{
    text-align: center;
}

.isi-content-monitoring {
    text-align: left;
}

.isi-content ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    padding: 5px 10px 5px 40px; /* Menambahkan ruang untuk tombol */
    border-radius: 8px;
    cursor: pointer;
    position: relative; /* Untuk posisi absolut pada icon */
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.isi-content ul li::before {
    content: "✔";
    color: white;
    background-color: #ffffff; /* Warna tombol biru */
    font-size: 1rem;
    font-weight: bold;
    border-radius: 80%; /* Membuat lingkaran */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0; /* Posisi ke kiri */
    top: 0;
    transition: background-color 0.3s, transform 0.3s;
}

.isi-content ul li:hover::before {
    background-color: var(--c-brand); /* Warna oranye saat hover */
}

.isi-content ul li:hover {
    background-color: #f0f8ff; /* Warna latar saat hover */
    transform: translateX(2rem); /* Efek geser */
}

.isi-content ul li:active::before {
    background-color: #0056b3; /* Warna biru tua saat aktif */
}

.content ul li:active {
    background-color: #dceeff; /* Warna latar saat aktif */
}

/* Setting Gambar Project Kami */
.solusi-kami-section {
  padding: 100px 0 150px; /* Tambahkan padding lebih besar ke bawah */
  z-index: 1;
  min-height: 400px; /* Tambahkan minimal tinggi */
}

.text-muted1{
    margin-bottom: 22%;
}

@media (max-width: 768px) {
    .text-muted1 {
        margin-bottom: 10%;
    }
  }

/* Pemanfaatan pemasangan PLTS Residensial */
.manfaat-plts {
    position: relative;
    color: white;
    padding: 2rem 0;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.content-container {
    max-width: 1800px;
    display: flex;
}


.manfaat-plts img {
    border-radius: 12px;
    height: 100%;
    max-height: 800px;
    object-fit: cover;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.checklist li::before {
    content: '\2714';
    color: #34C759;
    font-weight: bold;
    margin-right: 1rem;
}

.Background-gedung{
    background: linear-gradient(rgba(255, 177, 74, 0.164), rgba(255, 177, 74, 0.164)), url('../image/Companny\ Page\ Home.png') repeat-x; /* background gedung */
    background-position: left;
    background-size: 100%;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.Background-gedung::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Warna putih 50% transparan */
}


/* Uji Coba Konten baru */
  .content-section {
      background: url('../image/background\ awan.png') repeat-x; /* contoh motif awan */
      position: relative;
      padding: 60px 20px;
      overflow: hidden;
  }

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
}
.why-us .small-text {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
  .why-us .title {
    color: #000;
  }

  .check-icon i {
    font-size: 30px;
  }
  
  .grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 300px;
  }
  
  .grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
  }
  
  .image-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .image-item {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .image-item.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .image-item p {
    font-size: 12px;
    font-weight: bold;
  }
  .text-box {
    background-color: #0a73e4;
    color: #fff;
    font-weight: bold;
  }
  .bg-primary, .bg-success {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  @media (max-width: 768px) {
    .image-box {
      grid-template-columns: repeat(1, 1fr); /* Kotak jadi 1 kolom */
    }
  }

  /* Footer */
  footer {
    background-color: #20262E;
    color: #ffffff;
    padding: 40px 20px;
  }

  footer a {
    color: #ffffff;
    text-decoration: none;
  }
  footer a:hover {
    color: orange;
  }
  .social-icons a {
    margin-right: 15px;
    color: #ffffff;
    font-size: 20px;
  }
  .social-icons a:hover {
    color: orange;
  }
  .menu-list a {
    display: block;
    margin-bottom: 10px;
  }
  .subscribe input {
    margin-bottom: 10px;
  }

/* Comporate Experience */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}
.container {
    position: relative;
    margin-top: 0px;
}

.map-image {
    max-width: 500vw;
    margin-top: 5%;
    margin-bottom: 10%;
    height: auto;
}


.content {
    text-align: center;
    margin-top: 50px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.card-container {
    position: relative;
    top: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.card {
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

/* Membuat card sejajar secara horizontal */
.map-cards {
  display: flex;
  gap: 20px; /* Jarak antar card */
  flex-wrap: wrap; /* Agar responsive */
  justify-content: center;
}

/* Styling card */
.map-card {
  width: 300px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  background: white;
}

/* Ikon warna */
.map-card i {
  font-size: 18px;
  margin-right: 5px;
}

.icon-blue { color: blue; }
.icon-orange { color: orange; }
.icon-purple { color: purple; }

/* Responsiveness */
@media (max-width: 768px) {
  .map-image {
    width: 500px;
    left: 300px;
  }
}