/*===================================================================
[Table Of Content]

    * Fonts, Global Colors, Nav Menu Colors, Color Presets CSS
    * General Styling & Shared Classes CSS
    * Preloader Style CSS
    * Pulsating Play Button CSS
    * Scroll Top Button CSS
    * Disable aos animation delay on mobile devices CSS
    * Global Section Titles & Breadcrumbs CSS
    * Header CSS
    * Navigation Menu CSS
    * Footer CSS
    * Hero Section CSS
    * Info Section CSS
    * Services Section CSS
    * Testimonial Section CSS
    * Article Section CSS
    * Call To Action Section CSS
    * About Menu CSS
    * Product Menu CSS
    * Product Detail CSS
    * Gallery Menu CSS
    * Article Menu CSS
    * Article Detail CSS
    * Contact Page CSS

=====================================================================*/
/*

/*--------------------------------------------------------------
# Fonts, Global Colors, Nav Menu Colors, Color Presets CSS
--------------------------------------------------------------*/
:root {
  --default-font: system-ui;
  --heading-font: Kanit, sans-serif;
  --nav-font: Kanit, sans-serif;
}

:root {
  --background-color: #e9f1fa; /* 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: #5f687b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #003479; /* 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: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  --nav-color: #5f687b; /* The default color of the main navmenu links */
  --nav-hover-color: #00abe4; /* 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: #e9f1fa; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00abe4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #09c4cd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #09c4cd;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth; /* Smooth scroll */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes CSS
--------------------------------------------------------------*/
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);
}

/*--------------------------------------------------------------
# Preloader Style CSS
--------------------------------------------------------------*/
.preloader-deactive .preloader-wrap {
  display: none;
}

.preloader-wrap {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  overflow: hidden;
}
.preloader-wrap .preloader {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -50px;
}
.preloader-wrap .preloader .dot {
  height: 100%;
  width: 100%;
  display: block;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: la-rotateplane 1.2s infinite ease-in-out;
  animation: la-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #ffffff url("../../logo-light-fix.png") center center no-repeat;
  background-size: 80%;
  border-radius: 100%;
}

@-webkit-keyframes la-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes la-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/*--------------------------------------------------------------
# Pulsating Play Button CSS
--------------------------------------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button CSS
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices CSS
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Section Titles & Breadcrumbs CSS
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/* PAGE HEADER */
.page-header-area {
  position: relative;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
}
.page-header-area:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb a {
  color: #fff;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #ff9601;
}
.breadcrumb-area {
  margin-bottom: 0;
  z-index: 100;
  position: relative;
}
.breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: block;
  -ms-flex-wrap: unset;
  flex-wrap: unset;
  letter-spacing: 0;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-area .breadcrumb li {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
}
.breadcrumb-area .breadcrumb .breadcrumb-sep {
  font-size: 14px;
  color: #fff;
  margin: 0 10px;
  vertical-align: -1px;
}

/*--------------------------------------------------------------
# Header CSS
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@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);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/*--------------------------------------------------------------
# Navigation Menu CSS
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer CSS
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  /* background: linear-gradient(to bottom, #e9f1fa 0%, #ffffff 100%); */
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Hero Section CSS
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* Algae Chlorella Logo Title */
.logo-image {
  width: 100%;
  height: 100%;
}

.hero .main-title {
  font-size: 50px;
  font-family: "Courier New", Courier, monospace;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid black;
  width: 15ch;
  animation: typing 4s steps(15, end) infinite, blink 0.8s step-end infinite;
}

@keyframes typing {
  /* Memperlihatkan teks dari 0 karakter sampai 15 karakter, 
     lalu kembali lagi ke 0 karakter. */
  0% {
    width: 0ch;
  }
  40% {
    width: 15ch;
  }
  60% {
    width: 15ch;
  }
  100% {
    width: 0ch;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: transparent;
  }
  51%,
  100% {
    border-color: black;
  }
}

@media (max-width: 575px) {
  .hero .main-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Info Section CSS
--------------------------------------------------------------*/
.info-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #e9f1fa 0%, #ffffff 100%);
}

.info-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* .info-section .section-title span {
  display: block;
  font-size: 20px;
  color: var(--accent-color, #28a745);
  margin-bottom: 10px;
} */

.info-section .section-title h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--heading-color, #333);
}

.info-section .section-title p {
  font-size: 16px;
  color: #6c757d;
}

.info-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.info-section .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
}

.info-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  margin-right: 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .info-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .info-section .section-title h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Services Section CSS
--------------------------------------------------------------*/
.services-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1fa 100%);
}

.services-section .service-item {
  /* background-color: var(--surface-color); */
  background-color: transparent;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services-section .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-section .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-section .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services-section .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-section .service-item:hover {
  border-color: var(--accent-color);
}

.services-section .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonial Section CSS
--------------------------------------------------------------*/
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #e9f1fa 0%, #ffffff 100%);
}

.testimonial-item.testi-height-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-start;
  padding: 20px 0;
}
.testimonial-item .testi-inner-content {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-item .testi-inner-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 991px) {
  .testimonial-item.testi-height-style {
    display: block;
  }
}

.testimonial-item .testi-inner-content .testi-author {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  margin-bottom: 16px;
  padding: 10px 0 0 10px;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-author .testi-thumb {
  height: 90px;
  margin-right: 20px;
  width: 90px;
}
.testimonial-item .testi-inner-content .testi-author .testi-thumb .img {
  width: 100%;
}
.testimonial-item .testi-inner-content .testi-author .testi-info {
  margin-top: 7px;
}
.testimonial-item .testi-inner-content .testi-content {
  background: #f5f5f5;
  padding: 41px 30px 34px;
  position: relative;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-content:before {
  content: "";
  display: none;
  position: absolute;
  top: -14px;
  left: 35px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #f5f5f5;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-content p {
  color: #615d5d;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
@media only screen and (max-width: 575px) {
  .testimonial-item .testi-inner-content .testi-content p {
    font-size: 14px;
  }
}
.testimonial-item .testi-inner-content .testi-info {
  transition: all 0s ease-out;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
}
.testimonial-item .testi-inner-content .testi-info .name {
  color: #0f0f0f;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.testimonial-item .testi-inner-content .testi-info .email {
  color: #808080;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
}

.firstActiveItem .testimonial-item .testi-inner-content .testi-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content {
  background-color: #f5f5f5;
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .firstActiveItem .testimonial-item .testi-inner-content .testi-content {
    padding: 15px;
  }
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content:before {
  display: block;
}
.firstActiveItem .testimonial-item .testi-inner-content .testi-content p {
  margin-bottom: 0;
}
.firstActiveItem
  .testimonial-item
  .testi-inner-content
  .testi-content
  .testi-info {
  display: none;
}

.testimonial-area:hover .owl-carousel .owl-nav > [class*="owl-"] {
  opacity: 1;
  visibility: visible;
}

.testimonials-slider.owl-carousel .owl-nav [class*="owl-"] {
  transform: translate(0px, 70%);
  -webkit-transform: translate(0px, 70%);
  -moz-transform: translate(0px, 70%);
  -ms-transform: translate(0px, 70%);
  -o-transform: translate(0px, 70%);
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav [class*="owl-"] {
    transform: translate(0px, 50%);
    -webkit-transform: translate(0px, 50%);
    -moz-transform: translate(0px, 50%);
    -ms-transform: translate(0px, 50%);
    -o-transform: translate(0px, 50%);
  }
}
@media (max-width: 1539px) {
  .testimonials-slider.owl-carousel .owl-nav [class*="owl-"] {
    display: none;
  }
}
.testimonials-slider.owl-carousel .owl-nav .owl-prev {
  left: -100px;
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav .owl-prev {
    left: -60px;
  }
}
.testimonials-slider.owl-carousel .owl-nav .owl-next {
  right: -100px;
}
@media (max-width: 1599px) {
  .testimonials-slider.owl-carousel .owl-nav .owl-next {
    right: -60px;
  }
}

/*--------------------------------------------------------------
# Article Section CSS
--------------------------------------------------------------*/
.articles-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1fa 100%);
}

/* CARD UTAMA */
.content-item.content-height-style {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item.content-height-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 991px) {
  .content-item.content-height-style {
    display: block;
  }
}

/* GAMBAR */
.content-item .content-thumb {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}

.content-item .content-thumb .img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.content-item .content-content {
  padding: 20px;
}

.content-item .content-content .content-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #636e72;
  margin-bottom: 6px;
}

.content-item .content-content .content-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px 0;
}

.content-item .content-content .content-snippet {
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
}

/* OPTIONAL: jika Anda masih butuh styling firstActiveItem */
.firstActiveItem .content-item .content-content {
  padding: 15px;
  background-color: #ffffff;
}
.firstActiveItem .content-item .content-content:before {
  display: none;
}
@media only screen and (max-width: 575px) {
  .firstActiveItem .content-item .content-content {
    padding: 10px;
  }
}

/* Owl Carousel Navigation */
.content-slider.owl-carousel .owl-nav [class*="owl-"] {
  transform: translate(0px, 70%);
  transition: transform 0.3s ease;
}
@media (max-width: 1599px) {
  .content-slider.owl-carousel .owl-nav [class*="owl-"] {
    transform: translate(0px, 50%);
  }
}
@media (max-width: 1539px) {
  .content-slider.owl-carousel .owl-nav [class*="owl-"] {
    display: none;
  }
}
.content-slider.owl-carousel .owl-nav .owl-prev {
  left: -100px;
}
@media (max-width: 1599px) {
  .content-slider.owl-carousel .owl-nav .owl-prev {
    left: -60px;
  }
}
.content-slider.owl-carousel .owl-nav .owl-next {
  right: -100px;
}
@media (max-width: 1599px) {
  .content-slider.owl-carousel .owl-nav .owl-next {
    right: -60px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section CSS
--------------------------------------------------------------*/
.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);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# About Menu CSS
--------------------------------------------------------------*/
.about {
  padding: 60px 0 0 0;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1fa 100%);
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content p {
  font-size: 16px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.highlight-text {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  z-index: 1;
}

.highlight-text::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.15em;
  width: 35%;
  height: 0.4em;
  background-color: #ffc5c5;
  z-index: -1;
}

.benefits {
  background-color: transparent;
  padding: 40px 0;
}

.benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.benefit-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: 0.3s;
}

.benefit-item .icon i {
  color: #666;
  font-size: 35px;
  transition: ease-in-out 0.3s;
}

.benefit-item:hover {
  background-color: #007bff;
  transform: translateY(-10px);
}

.benefit-item:hover h3,
.benefit-item:hover p,
.benefit-item:hover i {
  color: #fff;
}

.ceo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.ceo-card-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.ceo-img {
  width: 100%;
  display: block;
}

.ceo-name {
  font-size: 1.8rem;
  font-weight: 700;
}

.ceo-position {
  color: gray;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ceo-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.row.mb-50.align-items-center {
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Product Menu CSS
--------------------------------------------------------------*/
.product-area {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1fa 100%);
}
.product-area .section-title .title {
  color: #0f0f0f;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  text-transform: capitalize;
}
.product-item .inner-content {
  background-color: #fff;
  position: relative;
  padding: 0px;
  text-align: center;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  z-index: 1;
}
.product-item .inner-content .product-thumb {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
}

.product-item .inner-content .product-thumb > a {
  display: block;
  width: 100%;
}

.product-item .inner-content .product-thumb img {
  width: 100%;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-item .inner-content .product-thumb:hover img {
  transform: scale(1.05) rotate(0.05deg);
  -webkit-transform: scale(1.05) rotate(0.05deg);
  -moz-transform: scale(1.05) rotate(0.05deg);
  -ms-transform: scale(1.05) rotate(0.05deg);
  -o-transform: scale(1.05) rotate(0.05deg);
}
.product-item .inner-content .product-flag {
  display: -ms-inline-grid;
  display: inline-grid;
  margin-bottom: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.product-item .inner-content .product-flag .new {
  background-color: #f26b0f;
}
.product-item .inner-content .product-flag > li {
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  line-height: 20px;
  margin-bottom: 5px;
  padding: 0 5px;
  text-transform: capitalize;
  z-index: 1;
}
.product-item .inner-content .product-footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  left: 15px;
  opacity: 0;
  visibility: hidden;
  padding: 20px 0 20px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 5%;
  transform: translate(0, 20px);
  -webkit-transform: translate(0, 20px);
  -moz-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.product-item .inner-content .btn-quick-view {
  font-size: 14px;
  color: #868686;
  line-height: 24px;
  border-bottom: 1px solid #ebebeb;
  text-transform: capitalize;
  display: inline-block;
}
.product-item .inner-content .product-info .title {
  font-size: 1rem;
}
.product-item .inner-content:hover .product-footer {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}
.popup-product-overlay {
  background: #232324;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  z-index: 999;
}
.popup-product-close {
  background-color: transparent;
  position: fixed;
  top: 40px;
  font-size: 38px;
  opacity: 0;
  visibility: hidden;
  right: 40px;
  color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  border: none;
}
.product-item .inner-content .product-thumb .second-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  display: inline-block;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  width: 100%;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition-duration: 500ms !important;
  transition-duration: 500ms !important;
}
.product-item .inner-content:after {
  -webkit-box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 25.5px 4.5px rgba(0, 0, 0, 0.06);
  bottom: -95px;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  z-index: -1;
  transform: rotateX(45deg);
  -webkit-transform: rotateX(45deg);
  -moz-transform: rotateX(45deg);
  -ms-transform: rotateX(45deg);
  -o-transform: rotateX(45deg);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

/*--------------------------------------------------------------
# Product Detail CSS
--------------------------------------------------------------*/
.product-single-item .product-thumb .single-product-thumb-content a {
  cursor: crosshair;
  display: inline-block;
  position: relative;
}
.lightbox-image,
.lightbox-image img {
  width: 100%;
}
.product-single-item .product-thumb .single-product-thumb-content a:before {
  font-family: "Ionicons";
  content: "\f178";
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #e2e2e2;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  line-height: 50px;
  font-size: 46px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-single-item
  .product-thumb
  .single-product-thumb-content
  a
  .product-flag-new {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #111;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  line-height: 20px;
  margin-bottom: 0;
  padding: 0 5px;
  text-transform: capitalize;
  z-index: 1;
}
.product-single-item .product-thumb .single-product-nav-content {
  margin-top: 27px;
}
.product-single-item
  .product-thumb
  .single-product-nav-content
  .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-single-item
  .product-thumb
  .single-product-nav-content
  .swiper-slide:last-child {
  margin-right: 0 !important;
}
.product-single-item .product-thumb .single-product-nav-content .swiper-slide {
  border: 1px solid #ebebeb;
  cursor: pointer;
  max-width: 105px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.product-single-item .product-single-info .title {
  color: #0f0f0f;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}
.product-single-item .product-single-info .prices {
  line-height: 1;
  margin-bottom: 36px;
}
.product-single-item .product-single-info .prices .price {
  color: #0f0f0f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-right: 12px;
}
.product-review-tabs-content .product-tab-nav {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: -1px;
}
.product-review-tabs-content .product-tab-nav li {
  display: inline-block;
}
ul li {
  list-style: none;
}
.product-review-tabs-content .product-tab-nav li a.active {
  border-bottom-color: #ffc107;
  color: #253237;
}

.product-review-tabs-content .product-tab-nav li a {
  border-bottom: 2px solid transparent;
  color: #888;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-right: 63px;
  padding: 0 0 15px 0;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Gallery Menu CSS
--------------------------------------------------------------*/
.gallery_area {
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1fa 100%);
}
.portfolio_gallery .single_portfolio_inner {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.portfolio_gallery .single_portfolio_inner .portfolio_thumb img {
  width: 100%;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.portfolio_gallery .single_portfolio_inner .portfolio_thumb:hover img {
  transform: scale(1.05) rotate(0.05deg);
  -webkit-transform: scale(1.05) rotate(0.05deg);
  -moz-transform: scale(1.05) rotate(0.05deg);
  -ms-transform: scale(1.05) rotate(0.05deg);
  -o-transform: scale(1.05) rotate(0.05deg);
}

/*--------------------------------------------------------------
# Article Menu CSS
--------------------------------------------------------------*/
.blog-area.blog-single-area .container {
  max-width: 1200px;
  padding-top: 82px;
  padding-bottom: 82px;
}
@media only screen and (max-width: 991px) {
  .blog-area.blog-single-area .container {
    padding-bottom: 52px;
  }
}

/* Card utama */
.post-item {
  margin-bottom: 24px;
}

/* Inner content: bungkus seluruh isi card */
.post-item .inner-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  padding: 1rem;
}

.post-item .inner-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.post-item .inner-content .thumb {
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.post-item .inner-content .thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-out;
}

.post-item .inner-content .thumb:hover img {
  transform: scale(1.05);
}

.post-item .inner-content .content {
  position: static;
  padding: 0;
}

.post-item .inner-content .content .category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #003479;
  margin-bottom: 0.5rem;
  /* cursor: pointer; */
}
.post-item .inner-content .content .category:hover {
  text-decoration: none;
}

.post-item .inner-content .content .title {
  font-size: 1.125rem; /* ~18px */
  margin: 0.5rem 0;
}
.post-item .inner-content .content .title a {
  color: #333;
  text-decoration: none;
}
.post-item .inner-content .content .title a:hover {
  color: #003479;
}

.post-item .inner-content .content .meta {
  color: #707070;
  font-size: 0.875rem;
}
.post-item .inner-content .content .meta .author {
  color: #003479;
}
.post-item .inner-content .content .meta .author:hover {
  text-decoration: underline;
}
.post-item .inner-content .content .meta .date {
  margin-left: 0;
  display: block;
  margin-top: 0.25rem;
}

/*--------------------------------------------------------------
# Article Detail CSS
--------------------------------------------------------------*/
.post-single-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.post-single-item:hover {
  transform: translateY(-2px);
}

.post-single-item .thumb {
  position: relative;
  max-height: 450px;
  overflow: hidden;
  margin-bottom: 0;
}

.post-single-item .thumb img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-single-item .thumb img:hover {
  transform: scale(1.05);
}

.post-single-item .content {
  padding: 1.5rem;
}

.post-single-item .content .meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #666;
  list-style: none;
  padding: 0;
}

.post-single-item .content .meta ul > li {
  text-transform: none;
  margin-right: 0;
}

.post-single-item .content .title {
  color: #003479;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.post-single-item .content .title:hover {
  color: #0056b3;
}

.post-single-item .content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

@media (max-width: 1199px) {
  .post-single-item .content .title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .post-single-item .content {
    padding: 1rem;
  }
  .post-single-item .content .title {
    font-size: 1.5rem;
  }
  .post-single-item .content p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Contact Page CSS
--------------------------------------------------------------*/
#contact {
  padding: 60px 0;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.contact .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.contact .info-item {
  flex: 0 0 calc(33.333% - 20px);
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .contact .contact-list {
    flex-direction: column;
    gap: 40px;
  }
  .contact .info-item {
    flex: 0 0 100%;
  }
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* ------------------------------------
Widget CSS
------------------------------------ */
.widget-item {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-bottom: 30px;
}

.widget-title {
  margin-bottom: 15px;
}

.widget-title .title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.widget-body {
  margin-bottom: 10px;
  cursor: pointer;
}

.widget-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-categories ul li {
  margin: 0;
}

.widget-categories ul li a {
  background-color: #003479;
  color: #fff;
  padding: 6px 16px;
  text-transform: capitalize;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 14px;
  display: inline-block;
}

.widget-categories ul li a:hover {
  background-color: #002a66;
}

.widget-categories ul li a.active {
  background-color: #1f1f1f;
}

.widget-categories ul li a span {
  margin-left: 6px;
  font-size: 12px;
}

.widget-blog-post {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-blog-post li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.widget-blog-post .thumb {
  margin-right: 15px;
  flex-shrink: 0;
}

.widget-blog-post .thumb a img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.widget-blog-post .content {
  flex: 1;
  overflow: hidden;
}

.widget-blog-post .content span {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.widget-blog-post .content h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.widget-blog-post .content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.widget-blog-post .content h4 a:hover {
  color: #003479;
}

.text-muted {
  color: #999999 !important;
}
