/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Lato", sans-serif;
  --nav-font: "Lato", 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: rgba(110, 110, 110, 1);
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgb(247, 165, 33);
  /* 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;
  --black-color: #333333;
  --text-button-color: rgba(30, 30, 30, 1);
  --text-white: #EDEDED;
  --text-purple: #2B123A;
  /* 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: #2B123A;
  /* The default color of the main navmenu links */
  --nav-hover-color: #F0EAF4;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-background-color: linear-gradient(179.92deg, #6C2C91 42.29%, #200D2B 211.17%);
  /* Used as the background color for the main navigation menu */
  --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: #666666;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(100, 0, 125);
  /* 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: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgb(37, 0, 46);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.purple-light-background {
  --background-color: #F8F5FA;
  --default-color: #666666;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: rgb(57, 0, 71);
  font-family: var(--default-font);
}

.index-page {
  color: var(--default-color);
  background-color: rgba(108, 44, 145, 1);
  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);
  letter-spacing: 0.4px;
}

h1 {
  color: #F0EAF4;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

h2 {
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 32px;
  leading-trim: NONE;
  letter-spacing: 0.5px;
  color: var(--text-purple);
}

h3 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--text-purple);
}

h5 {
  font-size: 20px;
  font-weight: 700;
}

h6 {
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: #6C2C91;
}

p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255);
  --default-color: #ffffff;
  --heading-color: rgb(0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  box-shadow: 0px 20px 50px 0px #0000001A;

}

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

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

.header .logo h6 {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--heading-font);
  color: rgba(65, 26, 87, 1);
  align-items: center;
  line-height: 22px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

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

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

  .navmenu li {
    position: relative;
    height: 100% !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    height: 100%;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    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);
    background: var(--nav-background-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 0px 20px 0px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #8D769A;
    font-weight: 700;
    font-size: 24px;
    padding: 20px 20px;
    font-family: var(--nav-font);
    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: #4C1F66;
    color: #F0EAF4;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: #4C1F66;
    color: #F0EAF4;
  }

  .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-dropdown-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); */
    background: #411A57;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    background-color: #411A57;
    text-transform: uppercase;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer p {
  color: rgba(210, 207, 213, 1);
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
  color: #D2CFD5;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  width: 160px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--text-white);
  transition: 0.3s;
  background-color: rgba(108, 44, 145, 1);
  line-height: 16px;
  font-weight: 400;
  padding: 0 20px;
  /* margin: 0px auto 10px auto; */
  margin-bottom: 10px;
}


.footer .social-links a:hover {
  background: #562374;
  color: var(--text-white);
  border-color: var(--text-white);
}

.footer h6 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  color: var(--text-white);
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 16px;
  line-height: 0;
  color: #D2CFD5;

}

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

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

.footer .footer-links ul a {
  color: #D2CFD5;
  font-size: 16px;
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form input {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 3px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, rgb(255, 255, 255), transparent 80%);
  display: flex;
  transition: 0.3s;
}

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

.footer .footer-newsletter .newsletter-form input[type=email],
.footer .footer-newsletter .newsletter-form input[type=text] {
  border: 0;
  padding: 10px 10px;
  width: 70%;
  background-color: rgba(77, 61, 85, 1);
  color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 12px;
  padding: 10px 20px;
  margin: 10px 0;
  background: rgba(247, 165, 33, 1);
  color: var(--black-color);
  transition: 0.3s;
  border-radius: 4px;
  font-weight: 600;
}

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

.footer .copyright {
  height: 80px;
  background-color: rgb(57, 0, 71);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
}

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

.footer .credits {
  font-size: 15px;
}

.footer .credits a {
  color: rgba(210, 207, 213, 1);
}


.footer .credits a:hover {
  color: var(--accent-color);
}

@media (max-width: 1199px) {

  .footer .footer-about,
  .footer .footer-about a,
  .footer .footer-links li,
  .footer .footer-links,
  .footer .footer-newsletter .newsletter-form,
  .footer .social-links .social-list,
  .footer .copyright .copyright-items p,
  .footer h6 {
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: left;
    justify-content: center;
  }

  .footer .copyright .copyright-items {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s 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 1.5s 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: linear-gradient(180deg, rgba(108, 44, 145, 0.9) -24.13%, rgba(43, 18, 58, 0.9) 88.81%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs li a {
  color: var(--text-white);
}

.page-title .breadcrumbs .current {
  color: var(--accent-color);
}

.title-container {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}

.title-container h6 {
  font-size: 14px;
}

.title-container h3 {
  margin-bottom: 15px;
  font-weight: 400;
}

.underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  display: flex;
  gap: 4px;
}

.underline span {
  height: 4px;
  background-color: #F7A521;
  border-radius: 2px;
}

.underline .long {
  width: 40px;
}

.underline .short {
  width: 20px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (min-width: 1024px) {

  section,
  .section {
    padding: 150px 0;
  }
}


@media (max-width: 1024px) {

  section,
  .section,
  .blog {
    padding: 100px 0;
  }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: rgb(56, 2, 83);
}

.hero .carousel {
  /* width: 100%; */
  min-height: 70vh;
  padding: 30px 0 0 0;
  margin: 0;
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background: linear-gradient(180.04deg, rgba(76, 31, 102, 0) 24.97%, #2B123A 99.97%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  padding-bottom: 5px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}


@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: #EDEDED;
  font-weight: 500;
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 100%;
  }
}

.hero .btn-get-started {
  color: var(--text-purple);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid transparent;
}

.hero .btn-get-started:hover {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}


.hero .cta-btn {
  font-family: var(--accent-color);
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid transparent;
  color: var(--accent-color);
  animation: fadeInUp 1s both 0.4s;
}

.hero .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid transparent;
  color: var(--text-purple);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  /* width: 10%; */
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 35px;
  }
}


@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    /* width: 5%; */
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero .fixed-width {
  width: 100px !important;
  flex: 0 0 100px !important;
  max-width: 100px !important;
}



.hero .social-links {
  gap: 30px;
  flex: 0 0 auto;

}

.hero .social-links a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #6C2C91;
  color: #fff;
  flex-shrink: 0;
}

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




/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  .featured-services {
    padding: 150px 0;
  }
}

@media (max-width: 1024px) {
  .featured-services {
    padding: 100px 0;
  }
}


.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.berita .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.berita .card-body {
  padding: 20px;
  background: #F9F8FA;
  border: 1px solid #D4D1D6;
  border-top: none;
  border-bottom: none;
}


.berita .card-title {
  color: var(--text-purple);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.berita .card-text {
  color: #666666;
  font-size: 14px;
  line-height: 25px;
  padding-top: 10px;
}

.berita .berita-lanjut {
  background-color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  height: 48px;
  padding: 0px 25px;
}

.berita .berita-lanjut i {
  color: rgba(30, 30, 30, 1);
  width: 9px;
}

.berita .berita-lanjut p {
  color: #1E1E1E;
  font-weight: 600;
  font-size: 13px;
}

.berita .clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Batasi hingga 4 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Container slide */
.swiper-logo .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F8FA;
  border-radius: 10px;
  padding: 2px 60px;
  border: 1px solid #D4D1D6;
  box-shadow: 0px 15px 20px 0px #0000000D;

}

/* Gambar dalam slide */
.swiper-logo .swiper-slide img {
  max-height: 70px;
  max-width: 250px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: scale(1);
}

/* Hover efek gambar */
.swiper-logo .swiper-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.2);
}



.slide-track img {
  height: 150px;
  animation: scroll 20s linear infinite;
}

.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.slider {
  margin-top: 50px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%)
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content h3 {
  color: var(--text-purple);
}

.content .read-more,
.read-more {
  background: var(--accent-color);
  color: var(--text-button-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 20px 50px 0px #0000001A;
  border: 2px solid transparent;
}

.content .read-more i,
.read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.content .read-more:hover,
.read-more:hover {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* .content .read-more:hover i {
  margin-left: 10px;
} */
.about .about-images {
  justify-content: end;
  padding-right: 10px;
}

.about .about-images img {
  border-radius: 10px;

}

.image-container {
  position: relative;
  background-color: rgb(229, 209, 235, 0.7);
  border-radius: 15px;
  padding: 0 20px 10px 0;
  display: inline-block;
}

.image-container img,
.about .overlay {
  position: relative;
  top: -30px;
  left: -30px;
  border-radius: 15px;
}

.play-button {
  position: absolute;
  bottom: 34px;
  right: 39px;
  background-color: #8000aa;
  border-radius: 50%;
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(226, 213, 233, 1);
  z-index: 2;
}

.play-button i {
  color: white;
  font-size: 24px;
  line-height: 1;
}

.about .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 22, 73, 0.3);
  z-index: 1;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 1199px) {
  .about .about-images {
    justify-content: center;
  }

  .image-container {
    width: 90%;
  }

  .image-container img,
  .about .overlay {
    top: -20px;
    left: -15px;
  }

  .play-button {
    bottom: 25px;
    right: 27px;
    width: 60px;
    height: 60px;
    border: 5px solid rgba(226, 213, 233, 1);
  }

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .image-container {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 60px 30px 70px 30px;
  width: 100%;
  margin: 0;
}

.stats .stats-item span {
  font-size: 38px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

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

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

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Milestone Section
--------------------------------------------------------------*/

.timeline {
  margin: 0px 0;
  list-style-type: none;
  display: flex;
  padding: 0;
  text-align: center;
}

.timeline li {
  transition: all 200ms ease-in;
}

.timestamp {
  width: 100%;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 100;
}

.timestamp .date {
  font-size: 32px;
  font-weight: 600;
  color: #6C2C91;
  ;
}

.status {
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  border-top: 12px solid #6C2C91;
  position: relative;
  transition: all 200ms ease-in;
  font-size: 16px;
}

.status span {
  font-weight: 400;
  padding-top: 20px;
}

.status li,
.status p {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.status span:before {
  content: '';
  width: 36px;
  height: 36px;
  background-color: #fafbfe;
  border-radius: 25px;
  border: 6px solid #F7A521;
  position: absolute;
  top: -25px;
  left: calc(50% - 12px);
  transition: all 200ms ease-in;
}


.status .card {
  box-shadow: 0px 15px 20px 0px #0000000D;
  border-radius: 15px;
  background: #F0EAF4;
  border: 1px solid #E2D5E9;
  overflow: hidden;
}

.swiper-control {
  text-align: right;
}

.swiper-container,
.swiper-berita {
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
  padding: 0 0px 20px 0px;
}

.swiper-slide {
  width: auto;
  text-align: left;
  font-size: 18px;
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 150px 0;
  position: relative;
  clip-path: inset(0);
  overflow: hidden;
}

.proyek {
    padding-top: 40px !important;
  }

@media (max-width: 768px) {
  .proyek {
    padding-top: 100px !important;
  }
}



.call-to-action .call-to-action-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: linear-gradient(180deg, rgba(108, 44, 145, 0.9) -24.13%, rgba(43, 18, 58, 0.9) 88.81%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.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: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.call-to-action a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.call-to-action .img-overlay-wrapper img {
  display: block;
  width: 100%;
}

.call-to-action .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 22, 73, 0.3);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  z-index: 1;
}

.call-to-action .card {
  border-radius: 15px;
  border-color: transparent;
}

.call-to-action .card img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.call-to-action .card-body {
  padding: 30px;
}

.call-to-action h3 {
  color: var(--text-white);
}

.call-to-action h2 {
  color: var(--text-white);
}

.call-to-action .jelajah h5 {
  color: var(--text-white);
  font-weight: 500;
}

.call-to-action h6 {
  color: var(--accent-color);
}

.call-to-action span {
  font-size: 14px;
  color: #666666;
}


.call-to-action .layanan-title p {
  color: #EDEDED;
}

.call-to-action h5 {
  font-size: 18px;
}


.portfolio-header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}

.blog-item {
  border-radius: 20px;
  height: 400px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  margin: 10px 0px 25px 0px;
}

.blog .swiper {
  padding: 0 0px;
}

.blog-item img {
  transition: .5s;
  height: 100%;
  object-fit: cover;
}

.blog-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180.04deg, rgba(76, 31, 102, 0) 24.97%, #2B123A 99.97%);
  z-index: 1;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.blog-location {
  position: absolute;
  top: 0;
  right: 0;
  margin: 25px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F7A521;
  z-index: 2;
  border-radius: 50px;
  align-items: center;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  color: var(--text-purple);
}

.blog-overlay {
  position: absolute;
  padding: 22px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.blog .blog-overlay h2 {
  color: var(--accent-color);
}

.blog .blog-overlay h5,
.blog .blog-overlay p {
  color: var(--text-white);
}

/* .custom-swiper-btn {
  background-color: rgba(108, 44, 145, 1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-swiper-btn:hover {
  background-color: rgba(108, 44, 145, 0.8);
  color: #ffd700;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
} */

.swiper-nav-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.custom-swiper-btn {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 41px;
  height: 41px;
  margin-top: 0;
  background: #6C2C91;
  border-radius: 50%;
  color: #F0EAF4;
  box-shadow: 0px 15px 20px 0px #0000000D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-swiper-btn:hover {
  background: #562374;
  color: var(--accent-color);
}

.custom-swiper-btn::after {
  display: none;
}

.call-to-action .blog-coment {
  background-color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  height: 48px;
  padding: 0px 25px;
}

.call-to-action .blog-coment i {
  color: rgba(30, 30, 30, 1);
  width: 9px;
}

.call-to-action .blog-coment p {
  color: #1E1E1E;
  font-weight: 600;
  font-size: 13px;
}

.call-to-action .people {
  max-width: 80%;
  width: 50%;
}




@media (max-width: 1199px) {
  .call-to-action .people {
    position: relative;
    left: -90px;
    top: 0px;
  }

  .berita .col-lg-6 {
    padding: 0px 2rem;
  }
}

/*--------------------------------------------------------------
# PORTFOLIO
--------------------------------------------------------------*/

.solusi-portfolio {
  position: relative;
  clip-path: inset(0);
  padding: 150px 0 0 0;
}

@media (max-width: 767px) {
  .solusi-portfolio {
    padding: 100px 0 0 0;
  }
}

.solusi-portfolio .call-to-action-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.solusi-portfolio:before {
  content: "";
  background: linear-gradient(180deg, rgba(108, 44, 145, 0.9) -24.13%, rgba(43, 18, 58, 0.9) 88.81%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.solusi-portfolio .container {
  position: relative;
  z-index: 3;
}

.solusi-portfolio h6 {
  color: var(--accent-color);
}

.solusi-portfolio h2,
.solusi-portfolio h3 {
  color: var(--text-white);
}

.solusi-portfolio .text-solusi-portfolio {
  padding: 0px 6rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .slider-container {
    height: 300px;
  }
}

.slider-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  object-fit: fill;
}

.before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0px;
}

.before-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
  transition: background-color 0.2s;
}

.slider-handle:hover {
  background-color: #ddd;
}

.slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 24px;
  color: #333;
  transform: translate(-50%, -50%);
}

.label {
  position: absolute;
  top: 50%;
  /* Tengah secara vertikal */
  transform: translateY(-50%);
  padding: 4px 10px;
  background-color: #FFFFFF;
  color: #2B123A;
  font-size: 14px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.8;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

@media (max-width: 600px) {
  .label {
    font-size: 14px;
    margin: 5px 10px;
  }

  .label-before {
    left: 10px;
  }

  .label-after {
    right: 10px;
  }
}

.portfolio-container .slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.swiper-berita .swiper-slide {
  display: flex;
  height: auto;
}





/*-------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  .blog {
    padding: 150px 0;
  }
}

@media (max-width: 767px) {
  .blog {
    padding: 100px 0;
  }
}


.blog h2 {
  color: var(--text-purple);
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

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

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.berita-posts article {
  background-color: var(--surface-color);
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  padding: 30px;
  width: 100%;
}

.berita-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
  width: 100%;
}

.berita-posts .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* biar gambar tidak gepeng */
  display: block;
}

.berita-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.berita-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.berita-posts .title a:hover {
  color: var(--accent-color);
}

.berita-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.berita-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.berita-posts .meta-top ul li+li {
  padding-left: 20px;
}

.berita-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.berita-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.berita-posts .content {
  margin-top: 20px;
}

.berita-posts .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.berita-posts .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding: 0px;
  color: color-mix(in srgb, var(--text-purple), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li,
.blog-pagination li a,
.blog-pagination .active>.page-link,
.blog-pagination .disabled>.page-link,
.blog-pagination .page-item:first-child .page-lin {
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0px 3px;
  border-radius: 10px;
}

.blog-pagination .page-item:first-child .page-link,
.blog-pagination .page-item:last-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}



.blog-pagination li a {
  color: #D4D1D6;
  border: 1px solid #D4D1D6;
}

.blog-pagination li a.active,
.blog-pagination .active>.page-link,
.blog-pagination li a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #1E1E1E;
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.single-post-berita {
  padding-bottom: 30px;
}

.single-post-berita .article {
  background-color: var(--surface-color);
  padding: 10px;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
}

.single-post-berita .post-img {
  margin: 30px 0px;
  overflow: hidden;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}

.single-post-berita .post-img img {
  width: 100%;

  object-fit: cover;
  /* biar gambar tidak gepeng */
  display: block;
  max-height: 400px;
}

.single-post-berita .title {
  color: var(--text-purple);
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 26px;
  line-height: 40px;
}

.single-post-berita .content {
  margin-top: 20px;
}

.single-post-berita .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.single-post-berita .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.single-post-berita .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.single-post-berita .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-post-berita .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.single-post-berita .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.single-post-berita .meta-top ul li+li {
  padding-left: 20px;
}

.single-post-berita .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.single-post-berita .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.single-post-berita .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.single-post-berita .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.single-post-berita .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.single-post-berita .meta-bottom a:hover {
  color: var(--accent-color);
}

.single-post-berita .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.single-post-berita .meta-bottom .cats li {
  display: inline-block;
}

.single-post-berita .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.single-post-berita .meta-bottom .tags li {
  display: inline-block;
}

.single-post-berita .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.single-post-berita .meta-bottom .share {
  font-size: 16px;
}

.single-post-berita .meta-bottom .share i {
  padding-left: 5px;
}

.social-share-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.social-share-wrapper ul li {
  display: inline-block;
}

.social-share-wrapper ul li a {
  display: inline-block;
  padding: 10px;
  color: #333;
  text-align: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-share-wrapper ul li a:hover {
  background-color: var(--text-purple);
  color: var(--accent-color);
}

.social-share-wrapper p,
.social-share-wrapper a {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}


/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# 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%);
}

/*--------------------------------------------------------------
# Tentang Perusahaan Section
--------------------------------------------------------------*/
.tentang-perusahaan .image-tentang {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 418px;
}

.tentang-perusahaan .image-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  color: #EDEDED;
  z-index: 2;
  text-align: center;
  background: #6C2C91;
  font-size: 14px;
}

.tentang-perusahaan .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tentang-perusahaan span {
  color: var(--accent-color);
}

/* @media (max-width: 1199px) {

  .t-perusahaan-content,
  .t-perusahaan-image {
    padding: 0 20px;
  }
} */

.hubungi-kami {
  padding: 130px 0;
  position: relative;
  clip-path: inset(0);
}

.hubungi-kami img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hubungi-kami:before {
  content: "";
  background: linear-gradient(180deg, rgba(108, 44, 145, 0.9) -24.13%, rgba(43, 18, 58, 0.9) 88.81%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hubungi-kami .container {
  position: relative;
  z-index: 3;
}

.hubungi-kami h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
}

.hubungi-kami h5 {
  color: var(--text-white);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.hubungi-kami .text-hubungi-kami {
  padding: 0px 6rem;
}


@media (max-width: 1199px) {
  .hubungi-kami .text-hubungi-kami {
    padding: 0px 0px;
  }
}

.sejarah .image-tentang {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 418px;
}

.sejarah .image-tentang::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 22, 73, 0.3);
  z-index: 2;
}

.sejarah .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* @media (max-width: 1199px) {

  .sejarah-content,
  .sejarah-image {
    padding: 0 20px;
  }
} */

.komitmen-kami {
  padding: 130px 0;
  position: relative;
  clip-path: inset(0);
}

.komitmen-kami img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.komitmen-kami:before {
  content: "";
  background: linear-gradient(180deg, rgba(108, 44, 145, 0.9) -24.13%, rgba(43, 18, 58, 0.9) 88.81%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.komitmen-kami .container {
  position: relative;
  z-index: 3;
}

.komitmen-kami h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.komitmen-kami p {
  color: var(--text-white);
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;

}

.komitmen-kami .text-komitmen-kami {
  padding: 0px 6rem;
}

@media (max-width: 1199px) {
  .komitmen-kami .text-komitmen-kami {
    padding: 0px 0px;
  }
}

#milestone .card-body h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

#milestone .card-body ul li {
  font-size: 16px;
  line-height: 25px;
}

.visi-misi .visi {
  text-align: center;
  align-items: center;
}

.visi-misi .visi {
  background: linear-gradient(265.83deg, #612883 1.75%, #411A57 92.03%);
  border-radius: 15px;
  padding: 20px 6rem;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .visi-misi .visi {
    padding: 20px 10px;
  }
}


.visi-misi h3 {
  color: var(--accent-color);
}

.visi-misi .visi p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-white);
}

.visi-misi .misi {
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}

.visi-misi .misi img {
  display: block;
  height: 80px;
  object-fit: cover;
}

.visi-misi .misi h3 {
  color: var(--text-white);
  padding: 12px 0;
  margin: 0px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.visi-misi .misi p {
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  color: var(--text-white);
}

.visi-misi #misi-2 {
  background: rgba(65, 26, 87, 1);
}

.visi-misi #misi-3 {
  background: rgba(76, 31, 102, 1);
}

.visi-misi #misi-4 {
  background: rgba(86, 35, 116, 1);
}

.visi-misi #misi-5 {
  background: rgba(97, 40, 131, 1);
}

/*--------------------------------------------------------------
# Tentang Perusahaan Section
--------------------------------------------------------------*/
.layanan-kami .layanan-kami-container .card {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: none;
}


.layanan-kami .layanan-kami-container .card img {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}


.layanan-kami .layanan-kami-container .card-body {
  background-color: #411A57;
  padding: 30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;

}

.layanan-card .image-caption h5 {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.layanan-card .image-caption p {
  color: var(--text-white);
  font-weight: 300;
  padding: 0px;
  margin: 0px;
}


.layanan-card .image-tentang {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.layanan-card .image-tentang img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.layanan-card .image-caption {
  flex-grow: 1;
  background: #4C1F66;
  color: white;
  padding: 2rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}





.produk-jasa .produk-jasa-item {
  align-items: center;
  /* padding: 5px; */
  padding: 25px 5px;
  box-shadow: 0px 15px 20px 0px #0000000D;
  border: none;
  align-items: center;
  border-radius: 15px;
}

.produk-jasa .card-body {
  align-content: center;
  padding: 10px 5px;
}

.produk-jasa .produk-jasa-item h6 {
  font-size: 16px;
}

.produk-jasa .drilling h6 {
  color: var(--text-white);
}

.produk-jasa .w-treat h6 {
  color: var(--text-purple);
}

.accordion {
  box-shadow: 0px 20px 50px 0px #0000001A;
}

.accordion-button {
  font-size: 14px;
  font-weight: 600;
}

/* Left Column Styling (Yellow) */
#accordionLeft .accordion-button:not(.collapsed) {
  background-color: rgba(255, 193, 7, 0.1);
  color: #0d6efd;
}

#accordionLeft .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#accordionLeft .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Right Column Styling (Black) */
#accordionRight .accordion-button::after,
#accordionRight .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.accordion-list {
  border-radius: 5px;
  padding: 0;
  font-size: 14px;
}

.accordion-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;

}

#accordionLeft .accordion-body {
  border: 1px solid #411A57;
  border-top: none;
}

#accordionLeft .accordion-list li {
  border-bottom: 1px solid #411A57;
  background: #C4ABD380;
  padding: 5px 10px;
  font-weight: 600;
}

#accordionLeft .accordion-list li:last-child {
  border-bottom: none;
}

#accordionLeft .accordion-list li::before {
  background-color: #411A57;
}

#accordionRight .accordion-list li {
  border-bottom: 1px solid #F7A521;
  background: #FDE4BC;
  padding: 5px 10px;
  font-weight: 600;
}


#accordionRight .accordion-list li:last-child {
  border-bottom: none;
}


#accordionRight .accordion-list li::before {
  background-color: #F7A521;
}

#accordionRight .accordion-body {
  border: 1px solid #F7A521;
  border-top: none;
}

#accordionLeft .accordion-item:first-of-type>.accordion-header .accordion-button {
  background: #411A57;
  color: var(--accent-color);
}

#accordionRight .accordion-item:first-of-type>.accordion-header .accordion-button {
  background: #F7A521;
  color: #1E1E1E;
}


.accordion-list li {
  display: flex;
  align-items: center;
  padding: 0;
}

.accordion-list li:last-child {
  border-bottom: none;
}

.accordion-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 12px 12px 12px 15px;
}


.rekam-jejak .swiper {
  padding: 0 0px;
}

.rekam-header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}

.rekam-item {
  border-radius: 20px;
  height: 400px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  margin: 10px 0px 25px 0px;
}

.rekam-item img {
  transition: .5s;
  height: 100%;
  object-fit: cover;
}

.rekam-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180.04deg, rgba(76, 31, 102, 0) 24.97%, #2B123A 99.97%);
  z-index: 1;
}

.rekam-item:hover img {
  transform: scale(1.1);
}

.rekam-location {
  position: absolute;
  top: 0;
  right: 0;
  margin: 25px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F7A521;
  z-index: 2;
  border-radius: 50px;
  align-items: center;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  color: var(--text-purple);
}

.rekam-overlay {
  position: absolute;
  padding: 22px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.rekam-jejak .rekam-overlay h2 {
  color: var(--accent-color);
}

.rekam-jejak .rekam-overlay h5,
.rekam-jejak .rekam-overlay p {
  color: var(--text-white);
}

/* @media (max-width: 1199px) {

  .layanan-kami .layanan-kami-container,
  .produk-jasa .produk-jasa-container {
    padding: 0px 20px;
  }
} */


/*--------------------------------------------------------------
# Sustainibility
--------------------------------------------------------------*/

.k-lingkungan .image-tentang {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 418px;
}

.k-lingkungan .image-tentang::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 22, 73, 0.3);
  z-index: 2;
}

.k-lingkungan .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.k-lingkungan .k-lingkungan-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.k-lingkungan-content .card {
  border-radius: 15px;
  border: 1px solid #E2D5E9;
  background: #F0EAF4;
  box-shadow: 0px 15px 20px 0px #0000000D;

}


@media (max-width: 1199px) {

  .k-lingkungan .k-lingkungan-content,
  .k-lingkungan .k-lingkungan-image {
    padding: 0px 20px;
  }
}


.sustainability-card {
  background: #4C1F66;
  border-radius: 15px;
  box-shadow: 0px 20px 50px 0px #0000001A;
}

.sustainability-card h5 {
  color: var(--text-white);
}

/*--------------------------------------------------------------
# Kontak Kami
--------------------------------------------------------------*/

.kontak .image-tentang {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 418px;
}

.kontak .image-tentang::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 22, 73, 0.3);
  z-index: 2;
}

.kontak .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.kontak-links {
  gap: 40px;
}



.kontak-links-item {
  display: flex;
  padding: 10px 5px;
}

.kontak-links-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 16px;
  color: #411A57;
  background-color: #E2D5E9;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .kontak-links-text {
    padding-left: 10px;
  }
}


@media (min-width: 768px) {
  .kontak-links-text {
    padding-left: 20px;
  }
}



.kontak-links-text p {
  margin-bottom: 0;
  color: #666666;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
}

.kontak-links-text p.email {
  color: #6C2C91;
  font-size: 16px;
  /* pastikan sama dengan text lain */
  word-break: break-all;
  /* agar alamat email panjang tetap rapi */
}

.kontak-links-text .title {
  font-weight: 700;
}

.kontak-form input {
  height: 50px;
  border: 1px solid #D4D1D6;
  border-radius: 5px;
  background: #F9F8FA;
}

.kontak-form input::placeholder,
.kontak-form textarea::placeholder {
  color: #ACACAC;
  font-size: 14px;
}

.kontak-form textarea {
  border: 1px solid #D4D1D6;
  border-radius: 5px;
  background: #F9F8FA;
}


.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Rasio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.kontak .nav-tabs .nav-link {
  color: #6C2C91;
  background-color: #fff;
  font-weight: 500;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 15px 0px;
  font-size: 14px;
  border-bottom: 1px solid #D4D1D6;
}

.kontak .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #6C2C91;
  border-color: #6C2C91;
}

.kontak h4 {
  color: #2B123A;
  padding-bottom: 10px;
}



/* @media (max-width: 1199px) {

  .kontak .kontak-content,
  .kontak .kontak-image {
    padding: 0px 20px;
  }
} */

/*--------------------------------------------------------------
# Karir
--------------------------------------------------------------*/

.karir .input-group input,
.karir .input-group button {
  border: 1px solid #C4ABD380;
  border-radius: 10px;
}

.karir .input-group input {
  background: #ECE8EE;
  font-size: 13px;
  border: 1px solid #D4D1D680;
  box-shadow: 0px 15px 20px 0px #0000000D;
  background: #F9F8FA;
  padding: 10px 10px;

}

.karir .input-group button {
  background: linear-gradient(180deg, #6C2C91 0%, #562374 100%);
  font-size: 13px;
  color: #F0EAF4;
  padding: 0 40px;
}

.karir .pengumuman {
  background: #4C1F66;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.karir .pengumuman p {
  color: #EDEDED !important;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: #F9F8FA;
  padding: 30px;
  margin: 60px 0 30px 0;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  border: 1px solid #D4D1D6;
  border-radius: 15px;
}

.widget-title {
  color: var(--text-purple);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
  border-radius: 10px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-box {
  background-color: #4C1F66;
  padding: 30px;
  border-radius: 15px;
  color: var(--text-white);
}

.category-box h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.category-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.category-box li:not(:last-child)::after {
  content: "";
  display: block;
  border-bottom: 1px solid #826294;
  margin-top: 10px;
}

.dot {
  position: absolute;
  left: 0;
  top: 3px;
  height: 10px;
  width: 10px;
  background-color: var(--text-white);
  border-radius: 50%;
}


.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.client-logo {
  background: rgba(217, 217, 217, 1);
  height: 80px;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  align-items: center;
  justify-content: center;
}


.line {
  height: 20px;
  background-color: var(--accent-color);
}

.icon-email {
  color: var(--accent-color);
}