/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #444444 /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 20px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #343a40; /* Dark background color */
  color: #ffffff;           /* Light text color */
  padding: 2rem 0;         /* Padding for top and bottom */
}

.footer-about, .footer-links, .footer-newsletter {
  margin-bottom: 1.5rem;   /* Margin for separation between sections */
}

.footer h3 {
  font-size: 1.5rem;       /* Font size for headings */
  margin-bottom: 1rem;     /* Margin below headings */
  color: #ffffff;          /* Heading color */
}

.footer p {
  font-size: 1rem;         /* Font size for paragraphs */
  margin-bottom: 1rem;     /* Margin below paragraphs */
}

.footer-social a {
  margin-right: 0.5rem;    /* Margin between social icons */
  color: #ffffff;          /* Icon color */
  text-decoration: none;   /* Remove underline */
}

.footer-social a:hover {
  color: #007bff;          /* Hover color */
}

.footer-links a {
  display: block;          /* Block display for links */
  margin-bottom: 0.5rem;   /* Margin between links */
  color: #ffffff;          /* Link color */
  text-decoration: none;   /* Remove underline */
}

.footer-links a:hover {
  color: #007bff;          /* Hover color */
}

.footer-newsletter form {
  display: flex;           /* Flex display for form */
  gap: 0.5rem;             /* Gap between input and button */
}

.footer-newsletter input {
  flex: 1;                 /* Input takes available space */
  padding: 0.5rem;         /* Padding inside input */
  border: 1px solid #ccc;  /* Border color */
}

.footer-newsletter button {
  padding: 0.5rem 1rem;    /* Padding inside button */
  border: none;            /* Remove border */
  background-color: #007bff; /* Button background color */
  color: #ffffff;          /* Button text color */
  cursor: pointer;         /* Cursor style */
}

.footer-newsletter button:hover {
  background-color: #0056b3; /* Button hover color */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.0s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}


/*--------------------------------------------------------------
# berita Section
--------------------------------------------------------------*/
.berita .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.berita .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.berita .content ul {
  list-style: none;
  padding: 0;
}

.berita .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.berita .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.berita .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.social-icon {
  font-size: 40px; /* Perbesar lagi ukuran font untuk ikon */
  margin: 0 15px;  /* Tambahkan sedikit jarak antar ikon */
  color: var(--default-color); /* Pastikan warna ikon tetap konsisten */
  transition: transform 0.3s ease; /* Transisi halus saat hover */
}

.social-icon:hover {
  transform: scale(1.3); /* Perbesar ikon lebih besar saat hover */
  color: var(--hover-color); /* Opsional: ubah warna ikon saat hover */
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.kontak .info-item+.info-item {
  margin-top: 40px;
}

.kontak .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.kontak .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.kontak .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}



/* Style untuk tombol navigasi prev dan next */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background-color: #198754; /* Warna tombol */
  border: none;
  width: 50px; /* Lebar tombol */
  height: 50px; /* Tinggi tombol harus sama dengan lebar */
  color: #fff;
  border-radius: 50%; /* Membuat tombol berbentuk bulat sempurna */
  position: absolute;
  bottom: -60px; /* Posisi di bawah gambar, sesuaikan sesuai kebutuhan */
  left: 50%;
  transform: translateX(-120px); /* Menggeser tombol prev ke kiri */
  transition: background-color 0.3s ease;
  font-size: 24px; /* Membesarkan ukuran teks atau ikon */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Posisi tombol next di sebelah kanan tombol prev */
.owl-carousel .owl-nav button.owl-next {
  transform: translateX(120px); /* Menggeser tombol next ke kanan */
}

/* Hover effect untuk tombol navigasi */
.owl-carousel .owl-nav button:hover {
  background-color: #145c32; /* Warna tombol saat di-hover */
}

/* Style untuk ikon panah di tombol */
.owl-carousel .owl-nav button i {
  font-size: 24px; /* Membesarkan ukuran ikon panah */
}

/* Menghilangkan titik pagination dari Owl Carousel */
.owl-carousel .owl-dots {
  display: none;
}

/* Membesarkan tombol pada layar kecil */
@media (max-width: 600px) {
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 40px; /* Mengurangi lebar untuk layar kecil */
    height: 40px; /* Tinggi harus sama dengan lebar */
    font-size: 10px; /* Menyesuaikan ukuran ikon */
    bottom: -50px; /* Sesuaikan jarak untuk layar kecil */
  }
}

/* Posisi spesifik untuk tombol kiri dan kanan */
.owl-carousel .owl-nav button.owl-prev {
  left: 50%; /* Terpusat secara horizontal */
  transform: translateX(-70%) translateY(0); /* Sesuaikan agar terpusat dengan benar */
}

.owl-carousel .owl-nav button.owl-next {
  right: 50%; /* Terpusat secara horizontal */
  transform: translateX(70%) translateY(0); /* Sesuaikan agar terpusat dengan benar */
}

/* Efek hover tombol */
.owl-carousel .owl-nav button:hover {
  background-color: #145c32; /* Warna saat tombol di-hover */
}




.heading-part {
  display: inline-block;
  margin: 0 50px; /* Ubah nilai ini untuk menyesuaikan jarak */
}

.separator {
  display: inline-block;
  margin: 0 50px; /* Ubah nilai ini untuk menyesuaikan jarak */
  font-weight: bold;
}

.post-entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.post-entry .post {
  flex: 1;
  border: 1px solid #ddd;
  margin: 10px;
  padding: 10px;
  max-width: 400px;
}

.post-entry .post img {
  width: 100%;
  height: auto;
}

.post-entry .post h2 {
  font-size: 18px;
}

.tombol {
  display: flex;
  justify-content: center;  /* Posisi tombol tombol di tengah */
  align-items: center;      /* Sejajar secara vertikal */
  margin-top: 20px;
}

.tombol a, .tombol span {
  padding: 10px 15px;
  margin: 0 10px;  /* Jarak horizontal antar tombol */
  border: 1px solid #ddd;
  background-color: #007bff;  /* Background tombol */
  color: white;               /* Warna teks putih */
  text-decoration: none;
  border-radius: 5px;         /* Membuat sudut tombol membulat */
  transition: background-color 0.3s ease; /* Transisi halus saat hover */
}

.tombol a:hover {
  background-color: #0056b3;  /* Background saat hover */
}

.disabled {
  background-color: #cccccc;  /* Background tombol disabled */
  color: #666666;             /* Warna teks disabled */
}

.profil-section {
  padding: 40px 0;
  background-color: #fff;
  margin-top: 0px; /* Atur jarak di atas section berita */
}

.profil-section h2 {
  color: #000;
  margin-bottom: 30px;
  font-size: 3rem;
  text-align: center;
}

.profil-section h3{
  font-size: 2rem;
}

.profil-section p{
  font-size: 1.5rem;
}

.profil-section li{
  font-size: 1.5rem;
}

.profil-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.profil-post {
  flex-basis: 100%;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  height: auto; /* Membiarkan tinggi post menyesuaikan konten */
}

.profil-post img {
  width: 100%;
  height: auto; /* Mengatur tinggi agar mengikuti proporsi gambar */
  object-fit: contain; /* Memastikan gambar tidak terpotong */
  object-position: center; /* Memastikan gambar berada di tengah */
  border-radius: 5px;
}

.profil-post h3 {
  color: #000000;
  margin: 15px 0;
  font-size: 2rem;
}

.profil-post p {
  color: #000000;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profil-post a {
  color: #007bff;
  text-decoration: none;
}

.profil-post a:hover {
  text-decoration: underline;
}

/* Latest profil will be larger */
.latest-profil {
  flex-basis: 65%;
  height: auto; /* Pastikan ukuran container fleksibel */
}

.latest-profil img {
  width: 100%;
  height: auto; /* Mengatur tinggi agar mengikuti proporsi gambar */
  object-fit: contain; /* Pastikan gambar ditampilkan penuh tanpa terpotong */
  object-position: center;
  border-radius: 10px;
}

.latest-profil h3 {
  font-size: 2rem;
}

.latest-profil p {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Other profil posts will be smaller */
.other-profil {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto; /* Pastikan ukuran container fleksibel */
}

.other-profil .profil-post {
  max-height: 200px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.other-profil .profil-post:hover {
  transform: translateY(-5px);
}

.other-profil img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Menyesuaikan gambar agar tidak terpotong */
  object-position: center;
  border-radius: 5px;
}

.other-profil h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

