/*
Theme Name: Farmagitechs Profile Theme
Theme URI: https://www.farmagitechs.co.id/
Author: Dywa Pratama
Author URI: https://www.dywapratama.com/
Description: Farmagitechs WordPress Theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: farmagitechs-profile-theme
*/

/* ====== BEGINING GLOBAL SELECTOR ====== */
/* ROOT */

@font-face {
    font-family: Inter;
    src: url("./assets/fonts/inter/Inter-Regular.woff2") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url("./assets/fonts/inter/Inter-Medium.woff2") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url("./assets/fonts/inter/Inter-Bold.woff2") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url("./assets/fonts/inter/Inter-ExtraBold.woff2") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --heading-color: #66371a;
    --secondary-color: #f08519;
    --feature-color: #faeadb;
    --orange_1: #fcd8b9;
    --orange_2: #faeae6;
    --orange_3: #fff5e7;


    --purple_1: #f8f1fc;
    --blue_1: #e5efff;
}
* {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
    height: 100%;
}
body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
/* BT ADD */
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-100 {
    margin-bottom: 100px;
}
.ml-30 {
    padding-right: 30px;
}
.ml-50 {
    padding-right: 50px;
}
.container {
    width: 100%;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 40px;
}
.max-w100 {
    max-width: 100%;
}
.section-paddiing {
    padding-bottom: 180px;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-uppercase {
    text-transform: uppercase;
}
.color-black {
    color: #000;
}
.color-white {
    color: #fff;
}
.transparent-bg {
    color: #000;
    background-color: #0000;
}
.color-dark {
    color: var(--heading-color) !important;
}
.d-block, .d-none {
    display: flex;
}
.inline-block {
    display: inline-block;
}
.position-absolute {
    z-index: -1;
    position: absolute;
    inset: 0% auto auto 0%;
}
.align-center-both {
    justify-content: center;
    align-items: center;
    display: flex;
}
.d-flex {
    display: flex;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-visible {
    overflow: visible;
}
.is-magnetic {
    display: inline-block;
}
.button-content {
    grid-column-gap: 10px;
    display: flex;
}
.btn-wrapper {
    justify-content: center;
    align-items: center;
    display: inline-block;
}
.button-text {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}
.primary-button {
    z-index: 0;
    background-color: var(--heading-color);
    border-radius: 100px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 50px;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
}
.button-bg-block {
    z-index: -1;
    background-color: var(--secondary-color);
    border-radius: 100px;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border: 4px solid var(--secondary-color);
}
.nav-icon-menu:before {
    color: var(--heading-color);
    content: "\2630";
    font-size: 24px;
}
[class*="-icon-"] {
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-family: webflow-icons !important;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
   }
}
@media screen and (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
   }
}
@media screen and (max-width: 479px) {
}
/* ANIMATION */
.slide-down {
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 0.4s ease-out 0s forwards;
}
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}
.slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.on-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.4s ease 0s forwards;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
.on-fade-in {
    opacity: 0;
    animation: slideUp 0.4s ease 0s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
   }
}
.h-move {
    transform: translateX(-10px);
    animation: MoveHorizontal 6s linear infinite;
}
@keyframes MoveHorizontal {
    0% {
        transform: translateX(-10px);
   }
    33.33% {
        transform: translateX(10px);
   }
    66.66% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(-10px);
   }
}
.h-move.reverse {
    transform: translateX(10px);
    animation: MoveHorizontalReverse 6s linear infinite;
}
@keyframes MoveHorizontalReverse {
    0% {
        transform: translateX(10px);
   }
    33.33% {
        transform: translateX(-10px);
   }
    66.66% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(10px);
   }
}
.v-move {
    transform: translateY(-10px);
    animation: MoveVertical 6s linear infinite;
}
@keyframes MoveVertical {
    0% {
        transform: translateY(-10px);
   }
    33.33% {
        transform: translateY(10px);
   }
    66.66% {
        transform: translateY(0);
   }
    100% {
        transform: translateY(-10px);
   }
}
.v-move.reverse {
    transform: translateY(10px);
    animation: MoveVerticalReverse 6s linear infinite;
}
@keyframes MoveVerticalReverse {
    0% {
        transform: translateY(10px);
   }
    33.33% {
        transform: translateY(-10px);
   }
    66.66% {
        transform: translateY(0);
   }
    100% {
        transform: translateY(10px);
   }
}
/* NAVBAR */
.navigation-area {
    margin-top: 30px;
    position: relative;
    z-index: 5;
}
.navbar-container {
    z-index: 5;
    background-color: #0000;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.navbar-wrapper {
    background-color: #fff;
    border-radius: 24px;
    justify-content: space-between;
    align-items: center;
    padding: 16px 35px;
    display: flex;
    box-shadow: 0 4px 60px #00000014;
}
.navbar-brand {
    flex: none;
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
}
.nav-right-content {
    grid-column-gap: 24px;
    align-items: center;
    display: flex;
}
.nav-right-content.mobile {
    display: none;
}
.nav-menu-wrapper {
    display: flex;
}
.nav-menu-two {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    display: flex;
}
.nav-button {
    z-index: 0;
    background-color: var(--heading-color);
    border-radius: 100px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    position: relative;
    overflow: hidden;
}
.nav-menu-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}
.nav-menu-button:focus {
    outline: 0;
}
.nav-link {
    color: var(--heading-color);
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-link:hover {
    color: var(--secondary-color);
}
.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
}
.nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 999;
    background: #000000;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0) 100% );
    transition: opacity 0.3s ease;
}
.nav-overlay [data-nav-menu-open] {
    top: 0;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.search-active .search-overlay {
    opacity: 1;
    visibility: visible;
}

.search-overlay .close-search-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    line-height: 0;
}

.search-overlay .close-search-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.search-overlay .close-search-btn:hover svg {
    transform: rotate(90deg);
}

.search-overlay .search-form-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-overlay .search-form .search-field {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    padding: 15px 50px 15px 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-overlay .search-form .search-field:focus {
    border-bottom-color: var(--secondary-color);
}

.search-overlay .search-form .search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.search-overlay .search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

/* Hide default screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .search-overlay .close-search-btn {
        top: 20px;
        right: 20px;
    }
    .search-overlay .search-form .search-field {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 991px) {
    .nav-menu-wrapper {
        max-height: 1px;
        padding: 0;
        text-align: center;
        background: white;
        min-width: 200px;
        position: absolute;
        left: 0;
        right: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        margin: 0 60px;
        z-index: 6;
        transition: max-height 0.3s ease, padding 0.6s ease, margin 0.3s ease, border-radius 0.4s ease;
        box-shadow: 0 4px 60px #00000014;
        border-radius: 0;
   }
    [data-nav-menu-open] {
        max-height: 100vh !important;
        padding: 40px;
        margin: 0 20px;
        overflow: hidden;
        border-radius: 20px;
   }
    .nav-right-content.mobile {
        display: block;
   }
    .nav-menu-wrapper ul {
        flex-direction: column;
        margin-bottom: 36px;
   }
    .nav-menu-button {
        display: block;
   }
}
@media screen and (max-width: 767px) {
    .navbar-brand {
        max-width: 120px;
        padding-left: 0px;
   }
    .nav-menu-button img {
        width: 18px;
   }
    [data-nav-menu-open] {
        margin: 0 20px;
   }
}
@media screen and (max-width: 479px) {
}
/* BANNER AREA */
.banner-area.overflow-hidden.section-paddiing {
    padding-bottom: 100px;
}
.banner-orbit-wrap {
    z-index: -1;
    position: absolute;
    top: -15px;
}
.outer-circle-logo {
    z-index: 5;
    position: absolute;
    inset: 0% auto auto 0%;
}
.outer-circle-logo.plus-logo {
    z-index: -1;
    inset: auto auto 50% -0.6%;
}
.outer-circle {
    width: 100%;
}
.orbit-outer-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}
.orbit-mid-wrap {
    object-fit: cover;
    width: 73%;
    height: 74%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: 11% 0% 0%;
}
.mid-circle {
    z-index: -1;
    width: 100%;
    position: absolute;
    inset: 50% 0% 0% 50%;
    transform: translate(-50%, -50%);
}
.mid-circle-logo {
    z-index: -1;
    position: absolute;
    inset: 0% auto auto 0%;
}
.mid-circle-logo.pp {
    display: none;
    top: 18%;
    left: 2%;
}
.mid-circle-logo.sn {
    display: none;
    inset: auto auto 6% 14%;
}
.mid-circle-logo.email {
    display: none;
    inset: auto 6% 14% auto;
}
.mid-circle-logo.pen {
    display: none;
    inset: 30% -1% 0% auto;
}
.orbit-inner-wrap {
    z-index: -2;
    margin-left: auto;
    margin-right: auto;
}
.inner-circle {
    z-index: -2;
    width: 100%;
    position: absolute;
    inset: 50px auto auto 2px;
}
.banner-content {
    text-align: center;
    margin-top: 60px;
}
.banner-image-wrapper {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    align-items: flex-start;
}
.banner-title-wrap {
    margin: 0 auto;
    max-width: 80%;
}
.banner-title {
    margin-left: auto;
    margin-right: auto;
}
.banner-title-extra-color {
    color: var(--secondary-color);
}
.banner-paragraph {
    letter-spacing: -0.18px;
    max-width: 40ch;
    margin: 27px auto 40px;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 135%;
}
.login-wrap {
    text-decoration: none;
}
.login-text {
    color: var(--heading-color);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}
.banner-bottom-wrap {
    grid-column-gap: 85px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    display: flex;
}
.banner-bottom-single-item {
    width: 60%;
}
.banner-bottom-title {
    font-family: "Inter";
    color: var(--heading-color);
    font-size: 28px;
    line-height: 110%;
    text-align: center;
}
.banner-bottom-single-item.alt {
    border-left: 2px solid var(--heading-color);
    padding-left: 30px;
}
.banner-botton-item-icon {
    margin-bottom: 16px;
}
.banner-bottom-item-content {
    grid-column-gap: 5px;
    align-items: center;
    display: flex;
}
.bottom-item-text {
    color: #a292af;
    margin-top: 3px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}
.bottom-item-text.alt {
    color: var(--secondary-color);
    margin-top: 0;
}
.bottom-item-text-2 {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
}
.banner-bottom-image {
    margin-top: 20px;
}
.section-title {
    max-width: 19ch;
    margin-bottom: 22px;
}
.section-title.mw100 {
    max-width: 100%;
}
.section-title.mw100-copy, .section-title.mw100-copy-copyadawd {
    max-width: 100%;
    margin-bottom: 48px;
}
.section-title-extra-color {
    color: var(--secondary-color);
    text-align: center;
    font-weight: 800;
}
.section-title-extra-color._2nd {
    color: #49b654;
}
.section-paragraph {
    max-width: 38ch;
    font-size: 20px;
    line-height: 150%;
}
.section-paragraph.mw100 {
    max-width: 100%;
    margin-bottom: 25px;
}
.section-paragraph.mw100-copy, .section-paragraph.mw100-copy-copy {
    max-width: 100%;
    margin-bottom: 0;
}
.banner-image-anim {
    position: relative;
    width: 50%;
}
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
}
.banner-image.relative {
    position: relative;
}
@media screen and (min-width: 1920px) {
    .banner-bottom-image {
        width: 60%;
   }
    .banner-bottom-single-item {
        display: flex;
        flex-direction: column;
        align-items: center;
   }
}
@media screen and (max-width: 991px) {
    .banner-content {
        margin-top: 70px;
   }
    .banner-image-anim {
        width: 60%;
   }
    .banner-title {
        font-size: 80px;
   }
    .banner-bottom-single-item {
        width: 70%;
   }
}
@media screen and (max-width: 767px) {
    .banner-content {
        margin-top: 50px;
   }
    .banner-image-anim {
        width: 85%;
   }
    .banner-bottom-image {
        margin-top: 10px;
   }
    .banner-title {
        font-size: 53px;
   }
    .banner-orbit-wrap {
        display: none;
   }
    .banner-bottom-single-item {
        width: 90%;
   }
}
@media screen and (max-width: 479px) {
    .banner-content {
        margin-top: 40px;
   }
    .banner-bottom-single-item {
        width: 100%;
   }
    .banner-bottom-title {
        font-size: 20px;
   }
}
/* SERVICES AREA */
.services-area.section-paddiing.overflow-hidden {
    padding-bottom: 64px;
}
.services-content-wrap {
    margin-bottom: 65px;
}
.services-item-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.services-single-item {
    background-color: var(--orange_1);
    text-align: center;
    border-radius: 24px;
    padding: 64px 48px;
}
.services-single-item._2nd, .services-single-item._3rd, .services-single-item._4th {
    background-color: var(--orange_1);
}
.services-icon {
    margin-bottom: 35px;
}
.service-item-title {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: Inter, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}
.service-desciption {
    font-size: 18px;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .services-single-item {
        padding: 20px;
   }
}
@media screen and (max-width: 767px) {
    .services-item-wrapper {
        grid-template-columns: 1fr 1fr;
   }
}
@media screen and (max-width: 479px) {
    .services-item-wrapper {
        grid-template-columns: 1fr;
   }
}
/* VIDEO AREA */
.video-content {
    height: 100vh;
    background-image: url(./assets/images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 200px;
}
.video-area {
    position: relative;
}
.video-play-button-wrapper {
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    top: 0;
    left: 0;
}
.video-play-button-wrapper div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-play-button-wrapper div:first-child img {
    cursor: pointer;
    width: 50%;
    height: 50%;
}
.play-button {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.video-subtitle-text {
    font-family: Inter, sans-serif;
    font-size: 24px;
}
.video-subtitle {
    display: flex;
    gap: 8px;
    align-items: center;
}
.text-white {
    color: white;
}
/* ====== VIDEO LIGHTBOX STYLES ====== */

.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Disembunyikan secara default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px; /* Lebar maksimal video */
    aspect-ratio: 16 / 9; /* Menjaga rasio video 16:9 */
    background-color: #000;
}

#video-player-container {
    height: 100%;
}

#video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
/* FEATURE AREA */
.features-area {
    padding-bottom: 240px;
}
.features-area.overflow-hidden {
    padding-bottom: 90px;
}
.feature-content-wrap {
    margin-bottom: 75px;
    display: flex;
    justify-content: space-between;
}
.feature-thumbnail {
    align-self: flex-end;
}
.feature-items-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.feature-icon-wrap {
    background-color: var(--orange_1);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 12px;
    display: flex;
}
.feature-item-title {
    color: var(--heading-color);
    letter-spacing: 0;
    max-width: 18ch;
    margin-bottom: 12px;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}
.feature-item-paragraph {
    max-width: 30ch;
    font-size: 18px;
}
.spacer-h {
    width: 0px;
    height: 100px;
    margin-top: 100px;
}
.spacer {
    width: 0px;
    height: 0px;
    margin-top: 80px;
}
.spacer-lg {
    width: 0px;
    height: 0px;
    margin-top: 120px;
}
.spacer-sm {
    width: 0px;
    height: 0px;
    margin-top: 30px;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .feature-items-wrapper {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
   }
}
@media screen and (max-width: 767px) {
    .feature-content-wrap {
        gap: 40px;
        flex-flow: column;
        margin-bottom: 40px;
   }
}
@media screen and (max-width: 479px) {
    .feature-items-wrapper {
        gap: 24px;
        grid-template-columns: 1fr;
   }
}
.product-area {
    padding-bottom: 80px;
}
.product-content-wrap {
    gap: 60px;
    display: flex;
}
.product-content-wrap.reverse {
    flex-direction: row-reverse;
}
.product-thumbnail {
    z-index: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.thumbnail-wrap {
    background-color: var(--orange_1);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 320px;
    display: flex;
}
.product-content {
    width: 50%;
}
.product-image {
    align-self: flex-end;
    width: 300px;
}
.product-addon {
    position: absolute;
}
.secondary-button {
    z-index: 0;
    background-color: var(--heading-color);
    border-radius: 100px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    position: relative;
    overflow: hidden;
}
.product-title {
    margin-bottom: 12px;
    max-width: 100%;
}
.product-description {
    max-width: 100%;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
    .section-paragraph {
        font-size: 21px;
   }
}
@media screen and (min-width: 1920px) {
    .section-paragraph {
        font-size: 22px;
   }
}
@media screen and (max-width: 991px) {
    .product-content {
        width: 100%;
   }
    .product-title {
        font-size: 48px;
   }
    .section-paragraph {
        max-width: 100%;
        font-size: 17px;
   }
    .product-content-wrap {
        gap: 0;
        flex-direction: column;
   }
    .product-thumbnail {
        margin-bottom: 60px;
   }
    .edoc-image {
        width: 280px;
   }
    .product-content-wrap.reverse {
        gap: 0;
        flex-direction: column;
   }
}
@media screen and (max-width: 767px) {
    .product-title {
        margin-top: 34px;
        font-size: 46px;
   }
    .product-content-wrap {
        margin-top: -50px;
   }
    .product-thumbnail {
        margin-bottom: 0px;
        margin-top: 40px;
   }
    .product-content-wrap.reverse {
        grid-auto-flow: dense;
   }
}
@media screen and (max-width: 479px) {
    .product-title {
        max-width: 100%;
        margin-bottom: 15px;
        font-size: 38px;
   }
    .section-paragraph.mb-35 {
        font-size: 16px;
   }
    .edoc-image {
        width: 180px;
        margin-left: -70px;
   }
}
.map-content {
    position: relative;
}
.map-card-wrap {
    display: flex;
    gap: 40px 
}
.map-card {
    background-color: var(--orange_1);
    border-radius: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    display: flex;
    width: 100%;
}
.map-image {
    width: 100%;
}
.map-image-absolute {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.map-pin {
    z-index: 2;
}
.map-card-title {
    color: var(--secondary-color);
    text-align: center;
    font-weight: 800;
}
.map-card-subtitle {
    text-align: center;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .map-card-wrap {
        gap: 20px 
   }
}
@media screen and (max-width: 767px) {
    .map-card-wrap {
        gap: 15px 
   }
    .map-card-title {
        font-size: 26px;
   }
    .map-card-subtitle {
        font-size: 20px;
   }
}
@media screen and (max-width: 479px) {
    .map-card-wrap {
        flex-direction: column;
   }
}
.client-area {
    margin-bottom: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #f9f9f9;
}
.client-marquee-wrapper {
    width: 100%;
    position: relative;
}
.client-marquee {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    > * {
        flex: 0 0 100%;
   }
}
.client-marquee-line {
    display: grid;
    gap: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    will-change: transform;
    animation: scrolling 20s linear infinite;
}
.client-marquee-line.reverse {
    animation-name: scrollingReverse;
}
.client-marquee-line img {
    width: 100%;
}
@keyframes scrolling {
    0% {
        transform: translateX(0%);
   }
    100% {
        transform: translateX(-100%);
   }
}
@keyframes scrollingReverse {
    0% {
        transform: translateX(-100%);
   }
    100% {
        transform: translateX(0%);
   }
}
.testimonial-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    width: 100%;
}
.testimonial-item {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;
    border-radius: 32px;
    overflow: hidden;
}
.testimonial-image-wrap {
    background-color: var(--orange_1);
    padding: 36px 0;
    display: flex;
    position: relative;
    justify-content: end;
}
.testimonial-image {
    width: 85%;
    margin-right: -48px;
    border-radius: 16px;
}
.testimonial-image img {
    width: 100%;
    height: fit-content;
}
.testimonial-quote {
    position: absolute;
    width: 80px;
    left: 20%;
    top: 42px;
}
.testimonial-quote-2 {
    transform: rotate(180deg);
    width: 80px;
}
.testimonial-text-wrap {
    padding: 36px 78px 36px 82px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-subname {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-top: 12px;
}
.testimonial-name {
    font-size: 32px;
    line-height: 120%;
}
.testimonial-content-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 40px;
    display: flex;
}
.testimonial-video-wrap {
    background-image: url("https://cdn.prod.website-files.com/68186e23563c3fc6fb10d99d/6822f6081cbe1867ff2c9c05_7ffb7f9ddf840cd9f110128a78040475_Frame%2014.png");
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    width: 50vw;
    min-width: 30vw;
    max-height: none;
    display: flex;
}
.testimonial-video-background {
    background-color: #fff;
    border-radius: 72px;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    display: flex;
}
.testimonial-text {
    color: var(--heading-color);
    font-family: Inter, sans-serif;
    font-size: 20px;
    line-height: 150%;
    margin-top: 30px;
}
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 20px;
}
.testimonial-square {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background-color: var(--orange_1);
    border-radius: 16px;
    margin-left: 15px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
}
@media screen and (min-width: 1280px) {
    .testimonial-text-wrap {
        padding: 56px 128px 56px 108px;
    }
    
    .testimonial-image-wrap {
        padding: 56px 0;
    }
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) { 
}
@media screen and (max-width: 767px) {
    .testimonial-image {
        height: 360px;
        overflow: hidden;
        margin-right: 0;
        margin-bottom: -116px;
    }

    .testimonial-item {
        grid-template-columns: 1fr;
    }
    
    .testimonial-image-wrap {
        justify-content: center;
        padding: 56px 0;
    }

    .testimonial-text-wrap {
        padding: 80px 56px 56px 56px;
    }
    .testimonial-quote {
        position: absolute;
        width: 80px;
        left: 7%;
        top: 32px;
    }
}
@media screen and (max-width: 479px) {
}




.working-area-content {
    margin-bottom: 65px;
}
.working-single-items-wrapper {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.working-icon-wrap {
    margin-bottom: 30px;
}
.working-item-title {
    letter-spacing: -.48px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 140%;
}
.working-item-description {
    max-width: 33ch;
    font-size: 18px;
}
.working-single-items-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 35px;
}
.working-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}
.working-item-description {
    font-size: 16px;
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 479px) {
    .working-single-items-wrapper {
        grid-template-columns: 1fr;
   }
}
.faq-paragraph {
    max-width: 66ch;
    margin-bottom: 0;
    font-size: 18px;
}
.p-m-wrap {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}
.faq-answer {
    height: auto;
    overflow: hidden;
}
.faq-answer-inner {
    max-width: 870px;
    margin-top: 24px;
    overflow: visible;
}
.faq-title {
    color: var(--heading-color);
    letter-spacing: -.56px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Inter, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}
.faq-item {
    border-bottom: 1px solid var(--heading-color);
    padding-top: 34px;
    padding-bottom: 34px;
    padding-right: 15px;
}
.minus {
    background-color: var(--heading-color);
    border-radius: 20px;
    width: 20px;
    height: 2px;
    position: absolute;
}
.faq-question {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    display: flex;
    cursor: pointer;
}
.faq-item-wrap {
    max-width: 1065px;
    margin-left: auto;
    margin-right: auto;
}
.plus {
    background-color: var(--heading-color);
    width: 2px;
    height: 18px;
    position: absolute;
}
.faq-answer {
    overflow: hidden;
    transition: height 0.4s ease;
}
.faq-item.open .plus {
    transform: scale(0);
    transition: transform 0.3s ease;
}
.faq-item .plus {
    transition: transform 0.3s ease;
}
.faq-item.open .minus {
    opacity: 1;
}
.faq-item .minus {
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* === START: CTA SECTION REDESIGN (LIGHT THEME) === */
.call-to-action-area {
    z-index: 1;
    position: relative;
}
.cta-content-wrapper {
    background-color: white;
    border-radius: 50px;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-inline: 60px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;
}
.cta-content {
    flex-direction: column;
    align-items: center;
    display: flex;
}
.cta-title {
    color: var(--heading-color);
    text-align: center;
    max-width: 25ch;
    margin-bottom: 48px;
}
.connect-form-block {
    width: 60%;
    margin-top: 0;
    margin-bottom: 0;
}
.text-field {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(102, 55, 26, 0.2);
    color: var(--heading-color);
    border-radius: 30px;
    min-height: 60px;
    margin-bottom: 0;
    padding-inline: 30px;
    transition: border-color 0.3s;
}
.text-field::placeholder {
    color: rgba(102, 55, 26, 0.6);
    text-transform: capitalize;
    font-size: 18px;
    line-height: 24px;
}
.text-field:focus {
    border-color: var(--heading-color);
    outline: none;
}
.cta-items-wrapper {
    grid-column-gap: 36px;
    align-items: center;
    margin-top: 30px;
    display: flex;
}
.cta-single-item {
    grid-column-gap: 8px;
    align-items: center;
    display: flex;
}
.cta-item-text {
    color: var(--heading-color);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}
.cta-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
textarea.text-field {
    padding-block: 20px;
    min-height: 200px;
    margin-bottom: 20px;
}
.cta-content .primary-button {
    background-color: var(--heading-color);
}
.cta-content .button-text {
    color: #ffffff;
}
.cta-content .button-bg-block {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.cta-content .primary-button:hover .button-text {
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    .cta-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 16px;
   }
    .connect-form-block {
        width: 90%;
   }
    textarea.text-field {
        margin-bottom: 12px;
   }
    .cta-content-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-inline: 30px;
   }
}
@media screen and (max-width: 479px) {
    .cta-inputs {
        gap: 10px;
        margin-bottom: 10px;
   }
    .connect-form-block {
        width: 100%;
   }
    textarea.text-field {
        margin-bottom: 8px;
   }
    .cta-content-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-inline: 20px;
   }
}
/* === END: CTA SECTION REDESIGN (LIGHT THEME) === */


.footer-area {
    z-index: 0;
    background-color: var(--orange_3);
    padding-top: 80px;
    position: relative;
}

.footer-addon {
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
    margin-top: -120px;
    height: 120px;
    background-color: var(--orange_3);
}

.footer-social-wrapper {
    display: none !important;
}

.footer-columns {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-transform: capitalize;
    grid-template-rows: auto;
    grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
}
.footer-menu-title {
    letter-spacing: -.11px;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 24px;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    color: var(--heading-color);
}
.footer-top {
    margin-bottom: 100px;
}
.footer-menu-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #0e0f18;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
}
.footer-menu-list li a {
    color: var(--heading-color);
    text-decoration: none;
    transition: all .3s;
}
.list-item {
    color: var(--heading-color);
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 150%;
    transition: all .3s;
}
.footer-menu-list li a:hover {
    color: var(--heading-color);
    text-decoration: none;
    color: var(--secondary-color);
}
.list-item:hover {
    color: var(--secondary-color);
    transform: translate(5px);
}
.copyright-content {
    z-index: 0;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
}
.copyright-text {
    color: var(--heading-color);
    letter-spacing: -.07px;
    margin-top: 7px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}
.footer-logo {
    margin-bottom: 16px;
}

/* === START: Footer Social Icons Redesign === */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 55, 26, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--heading-color);
    transition: fill 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    background-color: var(--secondary-color);
}

.footer-social-link:hover svg {
    fill: #ffffff;
}
/* === END: Footer Social Icons Redesign === */

@media screen and (max-width: 991px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
   }
    .copyright-content {
        flex-flow: wrap;
   }
}
@media screen and (max-width: 767px) {
    .footer-columns {
        grid-template-columns: 1fr;
   }
    .copyright-content {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        flex-flow: wrap;
        padding-bottom: 30px;
        display: flex;
   }
}
@media screen and (max-width: 479px) {
}






.timeline-wrap {
    display: grid;
    grid-template-columns: 1fr 0.2fr 1fr;
    align-items: center;
    justify-items: center;
}

.timeline-year {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: var(--heading-color);
    color: white;
    font-size: 18px;
    font-family: Inter, Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-bubble {
    width: 100%;    
    display: grid;
    grid-template-columns: 1fr 0.06fr;
    align-items: center;
}

.timeline-bubble.reverse {
    grid-template-columns: 0.06fr 1fr;
}

.timeline-bubble-body {
    min-height: 250px;
    background-color: var(--orange_1);
    border-radius: 12px;
    padding: 32px;
}

.timeline-bubble-body.orange {
    background-color: var(--secondary-color);
}

.timeline-bubble-twitch img {
    width: 100%;
}

.timeline-bubble.reverse img {
    transform: rotate(180deg);
}

.timeline-title {
    font-size: 34px;
    margin-bottom: 8px;
}

.timeline-images {
    height: 220px;
    border-radius: 10px;
    background-size: cover;
}

.timeline-line, .timeline-spacer div {
    width: 6px;
    height: 100%;
    background-color: var(--heading-color);
}

.timeline-line.transparent {
    background-color: transparent;
}

.timeline-center {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 100px 1fr;
    justify-items: center;
}

.timeline-spacer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.support-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.our-services-card {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;
    border-radius: 12px;
}

.our-services-area ol {
    padding-left: 16px;
}

.our-services-area ol li {
    color: var(--heading-color);
}

.our-services-area p {
    line-height: 180%;
}








.article-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 60px;
    gap: 40px;
}

.article-card {
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.article-card__image-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.article-card__image {
    display: block;
    width: 100%;
    object-fit: cover;    
    height: auto !important;
}

.article-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .article-card__image-overlay {
    opacity: 1;
}

.article-card__image-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.article-card__small-logo {
    max-width: 70px;
    height: auto;
    opacity: 0.8;
}

.article-card__category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75em;
    font-weight: bold;
    z-index: 2;
}

.article-card__date-badge {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7em;
    font-weight: 600;
    z-index: 2;
}

.article-card__content {
    padding: 20px;
}

.article-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card__title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-card__title a:hover {
    color: var(--secondary-color);
}

.article-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.article-card__meta-item {
    display: flex;
    align-items: center;
}

.article-card__meta-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    fill: currentColor;
}

.article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    padding: 8px 0; 
    transition: color 0.2s ease;
}

.article-card__read-more:hover {
    color: var(--secondary-color);
}

.article-card__read-more-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.article-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.article-title a {
    text-decoration: none;
    color: var(--heading-color);
    transition: color .3s ease;
} 

.article-title a:hover {
    color: var(--secondary-color);
} 

.button-content {
    color: white;
}

.article-pref, .article-next {
    width: 32px !important;
    height: 32px !important;
}

.article-next {
    transform: rotate(180deg);
}

@media screen and (min-width: 1280px) {
    .article-area {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .article-area {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 767px) {
    .article-area {
        grid-template-columns: 1fr;
    }
    .article-card__title {
        font-size: 1.1rem;
    }
    .article-card__meta {
        font-size: 0.75rem;
        gap: 10px;
    }
}






.article-detail-wrap {
    line-height: 180%;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    gap: 40px;
    align-items: start;
}

.article-detail-wrap h1, .article-detail-wrap h2, .article-detail-wrap h3, .article-detail-wrap h4, .article-detail-wrap h5 {
    line-height: 100%;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: Inter, sans-serif;
}

.article-detail-wrap h1 {
    font-size: 48px;
}

.article-detail-wrap h2 {
    font-size: 32px;
}

.article-detail-wrap h3 {
    font-size: 24px;
}

.article-detail-wrap h4 {
    font-size: 20px;
}

.article-detail-wrap h5 {
    font-size: 16px;
}

.article-detail-wrap a {
    color: #4281da;
}

.entry-content p {
    font-family: Inter, sans-serif;
    margin-top: 1em;
    margin-bottom: 1em;
}

.article-detail-wrap img {
    width: 100%;
    height: auto !important;
}

.article-detail-wrap {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
}

.article-content {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;;
    margin-bottom: 32px;
    border-radius: 12px;
}

.article-detail-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.article-detail-navigation-wrap{
    background-color: var(--orange_1);
    padding: 20px;
    border-radius: 6px;
}

.article-detail-navigation a {
    text-decoration: none;
    color: var(--heading-color);
}

.article-detail-navigation .nav-subtitle {
    font-size: 24px;
}

.nav-subtitle {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-bottom: 12px;
}

.nav-subtitle.end {
    justify-content: end;
}

.article-detail-navigation .nav-title {
    font-size: 14px;
    display: block;
    line-height: 150%;
}

.article-detail-navigation a:hover {
    text-decoration: underline;
}

.article-detail-navigation .nav-next {
    text-align: end;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

.article-search {
    display: flex;
    border: 1px solid var(--heading-color);
    border-radius: 8px;
    overflow: hidden;
}

.article-search input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
}

.recent-post-item {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-item img {
    width: 100%;
    height: 100%;
}

.recent-post-title, .recent-post-date {
    color: var(--heading-color);
    font-weight: 500;
    font-family: Inter, sans-serif;
    line-height: 140% !important;
    display: inline-block;
}

.recent-post-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
}

.recent-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Custom styles for single post page additions */

.widget-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    margin-top: 40px;
    border-bottom: 2px solid var(--orange_1);
    padding-bottom: 10px;
}

/* Tags Styling */
.tags-links-wrapper {
    margin-top: 30px;
}

.tags-links a {
    display: inline-block;
    background-color: var(--orange_1);
    color: var(--heading-color);
    padding: 5px 15px;
    margin: 5px 5px 5px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.tags-links a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Social Share Icon Styling */
.social-share-wrapper {
    margin-top: 30px;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, opacity 0.2s;
}

.social-share-button:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.social-share-button svg {
    width: 22px;
    height: 22px;
}

.social-share-button.facebook { background-color: #1877F2; }
.social-share-button.twitter { background-color: #1DA1F2; }
.social-share-button.whatsapp { background-color: #25D366; }
.social-share-button.linkedin { background-color: #0A66C2; }

/* Comments Card Styling */
.comments-wrapper-card {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .comments-wrapper-card {
        padding: 40px;
    }
}
@media (max-width: 991px) {
    .article-detail-wrap {
        grid-template-columns: 1fr;
    }
}
/* Category List Styling */
.category-list-wrapper {
    margin-top: 40px;
}

.category-list-wrapper h2 {
    margin-bottom: 20px;
}

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

.category-list li {
    background-color: var(--orange_2);
    margin-bottom: 10px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.category-list li:hover {
    background-color: var(--orange_1);
    transform: translateX(5px);
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
}

.category-list li a::after {
    content: '›';
    font-size: 20px;
    color: var(--secondary-color);
}

/*
 * Custom Comment Template Styles
 */

 .comments-area {
    margin-top: 40px;
    font-family: Inter, sans-serif;
}

.comments-title,
.comment-reply-title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--orange_1);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment-list ol { /* For threaded comments */
    list-style: none;
    padding-left: 40px;
}

.comment-body {
    padding: 25px;
    margin-bottom: 25px;
    background-color: #fff;
    border: 1px solid var(--orange_2);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img { /* Avatar */
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author .fn {
    font-size: 18px;
    font-weight: bold;
    color: var(--heading-color);
}

.comment-metadata a {
    font-size: 14px;
    color: #777;
    text-decoration: none;
}
.comment-metadata a:hover {
    text-decoration: underline;
}

.comment-content {
    line-height: 1.7;
}

.reply .comment-reply-link {
    display: inline-block;
    padding: 2px 20px;
    background-color: var(--orange_1);
    color: var(--heading-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.reply .comment-reply-link:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/*
 * FINAL Custom Comment Styles (Replicating Image)
 */

 .comments-area {
    margin-top: 40px;
    font-family: Inter, sans-serif;
}

.comments-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    gap: 10px;
}

.comments-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--heading-color);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") no-repeat center;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual comment layout */
.comment-body {
    display: flex;
    gap: 20px;
}

.comment-list > li:last-of-type > .comment-body {
    border-bottom: none;
}

/* Avatar on the left */
.comment-avatar img {
    border-radius: 8px; /* Rounded square corners */
}

/* Main content block on the right */
.comment-main {
    flex-grow: 1;
}

/* Header for author and reply button */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.comment-author .fn,
.comment-author .fn a {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}

/* Comment text */
.comment-content {
    line-height: 1.7;
    color: #444;
}

/* Metadata at the bottom (date/time) */
.comment-footer-meta {
    margin-top: 10px;
}

.comment-metadata a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.comment-metadata a:hover {
    text-decoration: underline;
}


/* Threaded comments indentation */
.comment-list .children {
    list-style: none;
}

/* Styling the form to remain consistent */
.comment-reply-title {
    font-size: 22px;
}
.comment-form {
    margin-top: 20px;
    border-radius: 12px;
}
.comment-form p { margin-bottom: 3px; margin-top: 8px; }
.comment-form label { display: block; font-size: 14px; font-weight: 500; color: var(--heading-color); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 18px; border: 1px solid #ddd; border-radius: 8px; background-color: #fff; font-family: Inter, sans-serif; font-size: 1em; box-shadow: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.comment-form input[type="text"]:focus, .comment-form input[type="email"]:focus, .comment-form input[type="url"]:focus, .comment-form textarea:focus { border-color: var(--secondary-color); box-shadow: 0 0 0 2px var(--orange_1); outline: none; }
.comment-form .submit { font-family: Inter, sans-serif; font-size: 16px; font-weight: 500; color: white; background-color: var(--heading-color); border: none; border-radius: 100px; padding: 12px 30px; cursor: pointer; transition: background-color 0.3s ease; }
.comment-form .submit:hover { background-color: var(--secondary-color); }

.comment-form-cookies-consent {
    margin: 20px 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-reply-title {
    margin-top: 60px !important;
}
.comment-content p {
    margin: 0;
}







.partner-content {
    background-image: url(./assets/images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 120px;
}

.partner-subtitle-text {
    font-family: Inter, sans-serif;
    font-size: 24px;
}
.partner-subtitle {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 60px;
}
.partner-meeting-form, .contact-form {
    padding: 80px 10vw;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 60px;
    border-radius: 12px;
    margin-bottom: 60px;

}


.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-field-fullname {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-input {
    width: 100%;
    padding: 16px 20px;
    border: var(--heading-color) 1px solid;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
}

.form-field-label {
    margin-bottom: 4px;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    color: var(--heading-color);
}

.form-field-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.form-field-checkbox input {
    margin-top: 4px;
}


.contact-single-items-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-single-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--orange_1);
    padding: 40px;
    border-radius: 16px;
}

/* ====== FORM STATUS MESSAGES ====== */
.form-success-message,
.form-error-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid;
    font-family: Inter, sans-serif;
    font-size: 1.1em;
    text-align: center;
}

.form-success-message {
    background-color: #deffe2;
    border-color: #49b654;
    color: #247144;
}

.form-error-message {
    background-color: #faeae6;
    border-color: #f08519;
    color: #c0392b;
}








.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slides img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    font-size: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin: 15px 0;    position: absolute;
    bottom: 0;
    width: 100%;
}

.carousel-dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.606);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: white;
}

.carousel-shadow {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(#00000026 60%, #000000b5);
}









/* ====== BEGIN: SEARCH PAGE STYLES ====== */

.search-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.search-form-containert {
    margin: 20px auto 0;
    padding: 20px;
    background-color: var(--orange_2);
    border-radius: 12px;
}

/* Override default search form styles */
.search-form-containert .search-form {
    display: flex;
    gap: 15px;
}

.search-form-containert .search-field {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--orange_1);
    border-radius: 8px;
    font-size: 1em;
    font-family: Inter, sans-serif;
    color: var(--heading-color);
}
.search-form-containert .search-field:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px var(--orange_1);
}

.search-form-containert .search-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background-color: var(--heading-color);
    color: white;
    font-family: Inter, sans-serif;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form-containert .search-submit:hover {
    background-color: var(--secondary-color);
}

.search-form-containert label {
    width: 100%;
}

/* Search Results Area */
.search-results-area {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.search-result-item {
    display: flex;
    gap: 30px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.1);
}

.search-result-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
}

.search-result-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.search-result-content {
    display: flex;
    flex-direction: column;
}

.search-result-content .entry-title {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.3;
}

.search-result-content .entry-title a {
    text-decoration: none;
    color: var(--heading-color);
}
.search-result-content .entry-title a:hover {
    color: var(--secondary-color);
}


.search-result-content .entry-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.search-result-content .entry-summary {
    flex-grow: 1;
    color: #555;
    line-height: 1.6;
}
.search-result-content .entry-summary p {
    margin: 0;
}

.search-result-content .entry-footer {
    margin-top: 20px;
}


/* No Results Styling */
.no-results-container {
    text-align: center;
    padding: 80px 40px;
    background-color: #fff;
    border: 1px dashed var(--orange_1);
    border-radius: 16px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.no-results-container .section-paragraph {
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .search-result-item {
        flex-direction: column;
        gap: 20px;
    }
    .search-result-thumbnail {
        width: 100%;
        height: 200px;
    }
    .search-result-content .entry-title {
        font-size: 20px;
    }
}
/* ====== END: SEARCH PAGE STYLES ====== */


.wa-link {
    z-index: 999;
    position: fixed;
    inset: auto 20px 20px auto;
}

.wa-image {
    height: 72px;
}

#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: none; /* Akan muncul setelah scroll */
}

#scrollTopBtn:hover {
    background-color: #555;
}

@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
    .wa-link {
        inset: auto 18px 18px auto;
    }
    .wa-image {
        height: 64px;
    }
    #scrollTopBtn {
        bottom: 98px;
        right: 18px;
    }
}
@media screen and (max-width: 767px) {
    .wa-image {
        height: 60px;
    }
    #scrollTopBtn {
        bottom: 88px;
    }
}
@media screen and (max-width: 479px) {
    .wa-image {
        height: 42px;
    }
    #scrollTopBtn {
        bottom: 70px;
    }
}
  






.entry-header.product {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
}

.entry-title.product {
    margin: 0;
}

/* ====== PRODUCT ARCHIVE STYLES ====== */
.produk-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.produk-grid-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produk-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(102, 55, 26, 0.15);
}

.produk-grid-item .produk-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.produk-grid-item .produk-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produk-grid-item .produk-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.produk-grid-item .produk-title a {
    text-decoration: none;
    color: var(--heading-color);
}
.produk-grid-item .produk-title a:hover {
    color: var(--secondary-color);
}

.produk-grid-item .produk-excerpt {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}
.produk-grid-item .produk-excerpt p {
    margin: 0;
}

@media (max-width: 991px) {
    .produk-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .produk-grid-wrapper {
        grid-template-columns: 1fr;
    }
}




@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 479px) {
}
