@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);
}
.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);
}


/* 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;
}

/* Footer */
footer {
  background-color: #20262E;
  color: #ffffff;
  padding: 40px 0;
  width: 100%; /* Agar memenuhi layar */
  margin: 0; /* Hilangkan margin ekstra */
  bottom: 0;
  left: 0;
}
.container-footer {
  width: 90%; /* Agar lebih proporsional */
  max-width: 1200px; /* Maksimal ukuran */
  margin: 0 auto; /* Centering */
}

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;
}

/* Hero section PLTS */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../image/foto\ 1.JPG') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  padding-left: 150px; /* Memberikan jarak dari dinding kiri */
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.content {
  position: relative;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  opacity: 20;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Kontent flip card */
.content-section {
  background: #FFB24A;
  padding: 30px 0;
  width: 100vw;
}
.title {
  font-weight: bold;
  text-align: left;
  margin-left: 100px;
  color: #ffffff;
}
.title2 {
  font-weight: bold;
  text-align: left;
  margin-left: 4%;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .hero {
    position: relative;
    width: 100%;
    height: 50vh;
    background: url('../image/foto\ 1.JPG') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    padding-left: 150px; /* Memberikan jarak dari dinding kiri */
  }
  .title {
    text-align: center;
    margin-left: 20px !important;
    max-width: 440px; /* Biar tidak terlalu melebar */
    color: #ffffff;
  }
  .title2 {
    text-align: center;
    margin-left: 20px !important;
    max-width: 410px; /* Biar tidak terlalu melebar */
    color: #ffffff;
  }

}

/* card-1 */ 
.card-container {
  width: 400px;
  height: 240px;
  position: relative;
  border-radius: 10px;
  margin-top: 3%;
  margin-bottom: 0%;
  padding-left: 0%;
  display: flex;
  justify-content: flex-start;
}

.card-container::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr); /* Dua kolom sejajar */
}

.card .img-content {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}

.card .img-content{
  width: 400px;
  height: 240px;
  background: url('../image/gambarporto1.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content{
  fill: transparent;
}

/* Card gambar 2 */
.card .img-content2 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content2{
  width: 590px;
  height: 300px;
  background: url('../image/gambarporto2.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content2 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content2{
  fill: transparent;
}

/* Card gambar 3 */
.card .img-content3 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content3{
  width: 450px;
  height: 280px;
  background: url('../image/gambarporto3.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content3 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content3{
  fill: transparent;
}

/* Card gambar 4 */
.card .img-content4 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content4{
  width: 450px;
  height: 280px;
  background: url('../image/gambarporto5.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content4 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content4{
  fill: transparent;
}

/* Card gambar 5 */
.card .img-content5 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content5{
  width: 450px;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/DJI_0082.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content5 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content5{
  fill: transparent;
}

/* Card gambar 6 */
.card .img-content6 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content6{
  width: 450px;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Komersial.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content6 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content6{
  fill: transparent;
}

/* Card gambar 7 */
.card .img-content7 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content7{
  width: 450px;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/tampilan\ drone\ PLTS 2.jpeg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content7 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content7{
  fill: transparent;
}

/* Card gambar 8 */
.card .img-content8 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content8{
  width: 450px;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Komersial\ 3.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content8 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content8{
  fill: transparent;
}

/* Card gambar 9 */
.card .img-content9 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content9{
  width: 450px;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/plts\ mamuju.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content9 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content9{
  fill: transparent;
}

/* Card gambar 10 */
.card .img-content10 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content10{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/IMG_3511.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content10 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content10{
  fill: transparent;
}

/* Card gambar 11 */
.card .img-content11 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content11{
  width: 400px;
  height: 260px;
  background: url('../image/gambar\ pulau.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content11 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content11{
  fill: transparent;
}

/* Card gambar 12 */
.card .img-content12 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content12{
  width: 400px;
  height: 260px;
  background: url('../image/PLTS\ Residensial\ 2.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content12 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content12{
  fill: transparent;
}

/* Card gambar 13 */
.card .img-content13 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content13{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Residensial.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content13 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content13{
  fill: transparent;
}

/* Card gambar 14 */
.card .img-content14 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content14{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Residensial\ 4.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content14 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content14{
  fill: transparent;
}

/* Card gambar 15 */
.card .img-content15 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content15{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Residensial\ 5.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content15 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content15{
  fill: transparent;
}

/* Card gambar 16 */
.card .img-content16 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content16{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Residensial\ 6.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content16 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content16{
  fill: transparent;
}

/* Card gambar 17 */
.card .img-content17 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content17{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/Foto\ KSCCB.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content17 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content17{
  fill: transparent;
}

/* Card gambar 18 */
.card .img-content18 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content18{
  width: 400px;
  height: 239px;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10)), url('../image/Product\ 3.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content18 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content18{
  fill: transparent;
}

/* Card gambar 19 */
.card .img-content19 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content19{
  width: 400px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Product\ 1.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content19 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content19{
  fill: transparent;
}

/* Card gambar 20 */
.card .img-content20 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content20{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Product\ 4.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content20 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content20{
  fill: transparent;
}

/* Card gambar 21 */
.card .img-content21 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content21{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Product\ 7.jpeg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content21 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content21{
  fill: transparent;
}

/* Card gambar 22 */
.card .img-content22 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content22{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Alat.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content22 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content22{
  fill: transparent;
}

/* Card gambar 23 */
.card .img-content23 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content23{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Penelitian.jpg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content23 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content23{
  fill: transparent;
}

/* Card gambar 24 */
.card .img-content24 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content24{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/research.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content24 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content24{
  fill: transparent;
}

/* Card gambar 25 */
.card .img-content25 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content25{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/Product\ 6.jpeg') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content25 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content25{
  fill: transparent;
}

/* Card gambar 26 */
.card .img-content26 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content26{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/penelitian2.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content26 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content26{
  fill: transparent;
}

/* Card gambar 27 */
.card .img-content27 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content27{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/penelitian 3.JPG') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content27 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content27{
  fill: transparent;
}

/* Card gambar 28 */
.card .img-content28 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content28{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Industri\ 6.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content28 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content28{
  fill: transparent;
}

/* Card gambar 29 */
.card .img-content29 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content29{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Lombok.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content29 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content29{
  fill: transparent;
}

/* Card gambar 30 */
.card .img-content30 {
  width: 5%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}
.card .img-content30{
  width: 399px;
  height: 260px;
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgb(0, 0, 0, 0.10)), url('../image/PLTS\ Lombok\ 2.png') no-repeat center center/cover;
  fill: #e8e8e8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .img-content30 {
  scale: 2.5;
  rotate: 30deg;
  filter: blur(7px);
}

.card:hover .img-content30{
  fill: transparent;
}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #e8e8e8;
  padding: 10px;
  line-height: 1.5;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content .heading {
  font-size: 1;
  font-weight: 100;
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
}


