/**
* Template Name: KnightOne
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Updated: Oct 16 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #fcdb00; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #000000; /* The default color of the main navmenu links */
    --nav-hover-color: #fcdb00; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #fcdb00; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    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);
}

/* VIDEO SECTION */

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    justify-content: center; /* Pusatkan secara horizontal */
    align-items: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 3; /* Pastikan di atas overlay */
}

.video-content h1 {
    color: white;
}
.video-content img {
    max-width: 90%; /* Supaya responsif, tidak melebihi lebar parent */
    height: auto; /* Menjaga aspek rasio */
    min-width: 150px !important; /* Pastikan tetap terlihat di layar kecil */
    z-index: 15; /* Pastikan lebih tinggi dari overlay */
}

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

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

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

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

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

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

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

.con-title {
    padding: 5px;
    margin-left: 40px;
}
@media (min-width: 1640px) {
    /* Monitor lebih besar */
    .con-title {
        padding: 5px;
        margin-left: 80px;
    }
}
.title {
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    color: green;
}
.con-title .app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.con-title .app-buttons img {
    width: 150px;
    height: 50px;
}

/* 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: #d1d1d100;
    --default-color: #000000;
    --heading-color: #000000;
    color: #fcdb00;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
    max-height: 80px; /* Ukuran default */
    width: auto;
    margin-right: 8px;
}

/* Ukuran standar untuk teks dalam logo */
.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: #fcdb00;
}

/* --- RESPONSIVE DESIGN --- */

/* Jika layar lebih besar dari 1440px */
@media (min-width: 1440px) {
    .header .logo img {
        max-height: 100px; /* Lebih besar di layar besar */
    }
    .header .logo h1 {
        font-size: 40px;
    }
    .header .logo span {
        font-size: 40px;
    }
}

/* Jika layar lebih kecil dari 768px */
@media (max-width: 768px) {
    .header .logo img {
        max-height: 60px; /* Lebih kecil di layar kecil */
    }
    .header .logo h1 {
        font-size: 24px;
    }
    .header .logo span {
        font-size: 24px;
    }
}

/* Jika layar lebih kecil dari 480px (HP kecil) */
@media (max-width: 480px) {
    .header .logo img {
        max-height: 50px;
    }
    .header .logo h1 {
        font-size: 20px;
    }
    .header .logo span {
        font-size: 20px;
    }
}


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

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

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    background-color: #ffffff;
    color: green;
}

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

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

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

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

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

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

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: green;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: green;
    }

    .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;
    }
}

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

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

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

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

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

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

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

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

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer p {
    font-size: 15;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer .social-links {
    margin: 0 0 30px 0;
}

.footer .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    line-height: 1;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: none;
}

.footer .flex {
    display: flex;
    justify-content: space-between;
}

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

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: 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 var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@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: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    padding: 60px 0 30px; /* 60px atas, 0 kiri-kanan, 20px bawah */
    scroll-margin-top: 72px;
    overflow: clip;
    min-height: 100%;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 57px;
        height: 100%;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    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:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
}

.section-title p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Pastikan tidak dipaksa 100vh */
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .hero {
        height: 40vh !important; /* Pastikan tingginya menyesuaikan */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero img {
        width: 100%;
        height: auto; /* Gambar menyesuaikan tinggi otomatis */
        display: block;
    }
}


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

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

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

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }
    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
}

.services .service-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
    margin: 0;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

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

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

@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }

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

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

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

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

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

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
    position: relative;
    min-height: 400px;
}

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

.features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.features .features-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
}

.features .features-item p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.clients .client-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.clients .client-logo:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
}

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

.stats:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

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

.stats .subheading {
    text-align: center;
}

.stats .subheading h3 {
    font-weight: 700;
    font-size: 36px;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

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

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

/*--------------------------------------------------------------
# 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: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-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 0 10px 0;
    }
}

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

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    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: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing .pricing-item h3 {
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.pricing .pricing-item h4 {
    color: var(--accent-color);
    font-size: 42px;
    font-family: var(--default-font);
    font-weight: 500;
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 20px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .pricing-item ul li {
    padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .pricing-item .btn-buy {
    color: var(--accent-color);
    background-color: transparent;
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

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

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

.pricing .recommended .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 13px;
    padding: 3px 25px 6px 25px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
    margin-top: 15px;
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
    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-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.recent-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
}

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

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

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

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
    margin-top: 40px;
}

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

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

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

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

.contact .php-email-form {
    height: 100%;
}

.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: var(--surface-color);
    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 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

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

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

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

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

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

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

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

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

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

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

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .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;
}

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

.blog-details .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;
}

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

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

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

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

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

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

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

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

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

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

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

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

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

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

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

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

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

.blog-author-widget img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author-widget h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
    margin: 5px 0;
}

.blog-author-widget .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
    font-size: 18px;
}

.blog-author-widget .social-links a:hover {
    color: var(--accent-color);
}

.blog-author-widget p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 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;
}

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

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

.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%);
}

.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;
}
.progress-bar {
    width: 80%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 20px auto;
    position: relative;
}
.progress-bar::after {
    content: "";
    width: 30%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}
.nav-slid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.nav-slid button {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
}
.nav-slid button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}
.nav-slid button i {
    font-size: 1em;
    font-weight: 500;
}
.gallery {
    padding: 2rem;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.der-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.der {
    display: flex;
    transition: transform 0.5s ease;
    gap: 50px;
    margin-bottom: 28px;
}

.der img {
    flex-shrink: 0;
    border-radius: 10px;
    width: 33.33%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 250px;
}

.der img:hover {
    transform: scale(1.05);
}

.der-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.der-container button:hover {
    background-color: #ddd;
}

.blm {
    left: 10px;
}

.lnj {
    right: 10px;
}

.progress-bar {
    margin-top: 1rem;
    height: 5px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #333;
    width: 0;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 1.5rem;
    }

    .gallery p {
        font-size: 0.9rem;
    }

    .der img {
        width: 100%;
    }

    .der-container button {
        width: 30px;
        height: 30px;
    }
    .der {
        gap: 20px;
        margin-bottom: 10px;
    }
}

.aboutus-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px;
    box-sizing: border-box;
    background-color: #ffffff; /* Warna background agar sedikit kontras */
}

.aboutus-text-section {
    position: relative;
    padding: 40px;
    background: #009e0f;
    box-shadow: 5px 5px 15px rgba(251, 255, 0, 0.7); /* Efek shadow kuning */
    border-radius: 12px;
    max-width: 45%;
    z-index: 2; /* Pastikan di atas gambar */
    margin-left: -680px; /* Sesuaikan nilai negatif ini agar lebih kiri */
}

.aboutus-text-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

.aboutus-text-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    text-align: justify;
    margin-top: 10px;
}

@media (min-width: 1600px) {
    .aboutus-text-section h1 {
        font-size: 2.6em;
    }

    .aboutus-text-section p {
        font-size: 1.2em;
        line-height: 1.5;
    }
}

.aboutus-image-section {
    flex: 1; /* Supaya gambar memenuhi sisa area */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%; /* Ukuran gambar lebih dominan */
    height: 100%;
    z-index: 1;
}

.aboutus-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsif */
@media (max-width: 1024px) {
    .aboutus-container {
        text-align: center;
        padding: 20px;
    }

    .aboutus-text-section {
        max-width: 80%;
    }

    .aboutus-image-section {
        position: relative;
        width: 100%;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .aboutus-image-section img {
        max-height: 60vh;
    }
}

.button-container2 {
    text-align: center;
    margin-top: 3em;
}

.bw-button2 {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    border: 2px solid black;
    border-radius: 50px;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.bw-button2:hover {
    background-color: #ffb400;
    color: white;
    border: 2px solid white;
}
@media (max-width: 768px) {
    .aboutus-container {
        flex-direction: column;
        align-items: center;
        padding: 5px;
        min-height: auto; /* Jangan pakai tinggi tetap */
    }
    .aboutus-text-section {
        max-width: 90%;
        margin: 20px;
        z-index: 1;
        padding: 10px;
    }
    .aboutus-image-section {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .aboutus-image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .aboutus-text-section h1 {
        font-size: 18px;
    }

    .aboutus-text-section p {
        font-size: 14px;
        line-height: 1.5;
        color: #000;
    }
}

        .ery {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            background: #ffcc00;
            overflow: hidden;
            padding: 10px;
            box-sizing: border-box;
        }

        .ery .left-con {
            max-width: 30%;
            text-align: left;
            margin: 0 auto;
            justify-content: center;
            align-items: center;
        }

        .ery .right-con {
            max-width: 70%;
            width: 700px;
        }

        @media screen and (min-width: 1600px) {
            .right-con {
                max-width: 95%;
                /* Perbesar width */
            }

            .left-con {
                max-width: 25%;
                /* Kurangi width left-con agar right-con lebih luas */
            }
        }

        .teksontent {
            width: 100%;
            color: #fff;
            padding-right: 20px;
        }

        .teksontent h1 {
            color: #008000;
            margin: 0;
            font-weight: 700;
            font-size: 4em;
        }

        .teksontent span {
            color: #ffffff;
        }

        .teksontent p {
            font-size: 1.5em;
            line-height: 1;
            margin: 10px 0;
        }

        .teksontent .more-btn {
            display: inline-block;
            background: white;
            color: black;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 2.2em;
            margin-top: 1em;
        }

        .teksontent .more-btn:hover {
            background: #009e0f;
            color: white;
        }

        .swiper {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            height: 600px;
            max-height: 100%;
            /* Sesuaikan dengan kebutuhan */
        }

        .swiper-pagination-bullet {
            background: white;
        }

        @media screen and (max-width: 768px) {
            .ery {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            .left-con {
                max-width: 100%;
                text-align: center;
                align-items: center;
                padding: 10px;
            }

            .right-con {
                max-width: 100%;
                width: 100%;
            }

            .swiper {
                max-width: 100%;
            }

            .swiper-button-prev,
            .swiper-button-next {
                width: 40px;
                height: 40px;
            }

            .swiper-button-prev::after,
            .swiper-button-next::after {
                font-size: 20px;
            }

            .teksontent h1 {
                color: #008000;
                margin: 0;
                font-size: 4em;
                font-weight: 700;
            }

            .teksontent p {
                font-size: 1.5em;
                margin: 10px 0;
            }

            .teksontent .more-btn {
                font-size: 1.5em;
                margin-top: 1em;
            }

            .left-con,
            .right-con {
                flex-basis: 100%;
                /* Ambil seluruh lebar */
                text-align: center;
            }

            .swiper-slide img {
                height: 100%;
                /* Biarkan gambar menyesuaikan */
            }
        }

        /* Tombol Navigasi */
        .swiper-button-prev,
        .swiper-button-next {
            width: 50px;
            height: 50px;
            background: white;
            /* Latar belakang putih */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            /* Efek bayangan */
            transition: all 0.3s ease-in-out;
        }

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

        /* Warna ikon */
        .swiper-button-prev i,
        .swiper-button-next i {
            font-size: 24px;
            color: #ffb400;
            /* Warna ikon */
        }

        /* Hover Effect */
        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: #ffb400;
            /* Ubah latar belakang saat hover */
        }

        .swiper-button-prev:hover i,
        .swiper-button-next:hover i {
            color: white;
            /* Ubah warna ikon saat hover */
        }

        /* Posisi Tombol */
        .swiper-button-prev {
            left: 10px;
        }

        .swiper-button-next {
            right: 10px;
        }
    

/* Galery style */
.gallery-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.gallery-title {
    font-size: 2.5em;
    margin-top: 2em;
    font-weight: bold;
    text-align: center;
}
.gallery-subtitle {
    font-size: 1.2em;
    color: #000;
    text-align: center;
}

.gallery-header {
    margin-bottom: 20px;
}

.gallery-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.gallery-header p {
    font-size: 1rem;
    color: #666;
}

.slider {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.slider-controls button {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: #333;
    color: #fff;
}

@media (min-width: 768px) {
    .slide {
        min-width: 33.33%;
    }
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
}

.container1 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.cont-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.cont {
    max-width: 600px;
    margin-bottom: 20px;
}

.cont h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.cont h1 span {
    color: #ffc107;
    font-weight: bold;
}

.cont p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.cont button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ffc107;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cont button:hover {
    background-color: #e6a500;
}

.image {
    width: 100%;
    height: auto;
}

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

@media (min-width: 768px) {
    .container1 {
        flex-direction: row;
    }

    .cont-wrapper {
        flex: 1;
    }

    .image {
        flex: 1;
        height: 100%;
    }
}

.container2 {
    position: relative; /* Penting agar ::before bisa diposisikan dengan benar */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-image: url("/assets/img/promo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay hitam transparan */
.container2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Warna hitam transparan */
    z-index: 1;
}

/* Pastikan konten tetap terlihat */
.container2-content {
    position: relative;
    z-index: 2; /* Pastikan berada di atas overlay */
    color: white; /* Agar teks terlihat jelas */
    text-align: center; /* Pusatkan teks jika diperlukan */
    padding: 50px 20px; /* Tambahkan padding agar teks tidak terlalu rapat */
}

.judul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
    margin-top: 1em;
}

.judul a {
    color: #fcdb00;
}

.judul div {
    display: flex;
    flex-direction: column; /* Susun elemen ke bawah */
    align-items: flex-start; /* Pastikan sejajar ke kiri */
}

.judul h1 {
    font-size: 2em;
    color: #ffffff;
    font-weight: 700;
    margin: 0; /* Hilangkan margin default */
    padding: 0; /* Pastikan tidak ada padding */
}
.judul p {
    color: #ffffff;
    margin: 0; /* Hilangkan margin default */
    padding: 0; /* Pastikan tidak ada padding */
}

@media (max-width: 768px) {
    .judul h1 {
        font-weight: 700;
        text-align: left;
    }
    .judul p {
        text-align: left;
        margin-top: 5px;
    }
    .judul a {
        font-size: 1em;
        margin-top: 15px;
        text-align: left;
    }
    .judul {
        flex-direction: column;
        align-items: left;
    }
}

.promo-darcs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .promo-darcs {
        justify-content: space-between;
    }
}

.darc {
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    flex: 1 1 300px; /* Minimal 300px, bisa lebih fleksibel */
    max-width: calc(30% - 10px); /* Agar hanya 2 per baris */
}

.darc:hover {
    transform: translateY(-5px);
}

.darc img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-top: 15px;
    border-radius: 10px;
}

.darc-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
}

.darc h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
}

.darc-content p {
    font-size: 0.9rem;
    color: #fff;
    text-align: left;
}

/* Link */
.promo-link {
    color: #fcdb00;
    font-weight: bold;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 3em;
}

.promo-link i {
    transition: transform 0.3s;
}

.promo-link:hover i {
    transform: translateX(5px);
}

.bulat {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

.bulat span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    transition: background 0.3s;
    cursor: pointer;
}

.bulat span.nyala {
    background: #007bff;
}

@media (max-width: 768px) {
    .darc-content h3 {
        font-size: 1.2rem;
    }

    .darc-content p {
        font-size: 0.8rem;
    }
    .darc {
        max-width: 100%;
    }
    .darc-content {
        flex-direction: column; /* Stack ke bawah */
        text-align: center; /* Pusatkan teks */
    }
}

@media (max-width: 576px) {
    .darc img {
        height: fit-content;
    }
}

/* galeri baru */
/* Galeri Baru */
.lingkup {
    text-align: center;
    width: 100%;
    max-width: 2000px;
    padding: 10px 30px;
    margin: 0 auto;
    min-height: auto;
    margin-top: 2em;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.image-lingkup {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 1600px) {
    .lingkup {
        width: 100%; /* Pastikan selebar layar */
        max-width: none;
        margin: 0 auto;
        padding: 0;
    }

    .image-lingkup {
        width: 100%; /* Pastikan selebar layar */
        max-width: none;
        margin: 0 auto;
        padding: 0;
    }

    .image-lingkup img {
        width: 100vw; /* Gambar selebar layar */
        max-width: none;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .button-lingkup button {
        padding: 0;
        font-size: 14px;
        margin-top: 1em;
    }
}

@media (min-width: 1200px) {
    .lingkup {
        max-width: 1000px; /* Perbesar batas maksimal */
    }

    .image-lingkup {
        max-width: 900px; /* Perbesar batas maksimum gambar */
    }
    .button-lingkup {
        margin-top: 2em; /* Add space between button and image */
        margin-bottom: 3em;
    }
}
@media (min-width: 1024px) {
    .lingkup {
        width: 100%;
        padding: 10px 10px;
        margin: 0 auto;
        max-width: 900px; /* Perbesar batas maksimal */
        margin: 0 auto;
    }

    .image-lingkup {
        width: 100%;
        padding: 10px 10px;
        margin: 0 auto;
        max-width: 800px;
        margin: 0 auto;
    }
    .button-lingkup {
        margin-top: 2em; /* Add space between button and image */
        margin-bottom: 3em;
    }
    .van.left {
        left: 3px; /* Move buttons outside the image */
    }
    .van.right {
        right: 3px; /* Move buttons outside the image */
    }
}

.image-lingkup img {
    width: 100%;
    height: auto; /* Agar tetap proporsional */
    display: none;
    border-radius: 5px;
    object-fit: cover;
}

.image-lingkup img.active {
    display: block;
}

/* Kurangi ruang kosong di bawah */
.lingkup,
.image-lingkup {
    margin-bottom: 0;
    padding-bottom: 0;
}

.van {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: fit-content;
    height: fit-content;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    border: #000000 1px solid;
}
.van.left {
    left: -100px; /* Move buttons outside the image */
}
.van.right {
    right: -100px; /* Move buttons outside the image */
}
.button-lingkup {
    margin-top: 1em; /* Add space between button and image */
}
.button-lingkup a {
    justify-content: center; /* Pusatkan horizontal */
    align-items: center; /* Pusatkan vertikal */
    text-align: center;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 10px 20px; /* Sesuaikan padding */
    font-size: 16px;
    cursor: pointer;
    color: black;
    text-decoration: none; /* Hilangkan underline */
    width: fit-content; /* Sesuaikan lebar dengan konten */
}

.button-lingkup a:hover {
    background-color: #ffb400;
    border: 2px solid #fff;
    color: #fff;
}
@media (max-width: 600px) {
    .van.left {
        left: -30px; /* Adjust button position for smaller screens */
    }
    .van.right {
        right: -30px; /* Adjust button position for smaller screens */
    }
    .button-lingkup button {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 1em;
    }
}

@media (max-width: 1600px) {
    .button-lingkup button {
        margin-top: 3em;
    }
}

.utama {
    width: min(980px, 85%);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-block: min(20vh, 5em);
}
.utama1 {
    width: min(980px, 85%);
    margin: 0 auto;
    min-height: 100vh;
    justify-content: center;
    padding-block: min(20vh, 5em);
}
.utama .header {
    margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
    .utama {
        padding-block: 3em;
    }

    .utama .header h1 {
        font-size: 3rem; /* Ukuran lebih besar di tablet */
    }

    .utama .header p {
        max-width: min(35ch, 100% - 2rem);
    }

    .utama .item {
        height: 350px;
    }
}

@media screen and (max-width: 600px) {
    .utama .header {
        margin-bottom: 70px !important;
    }

    .utama .header h1 {
        font-size: 2.5rem; /* Ukuran lebih besar di handphone */
    }

    .utama .header p {
        max-width: 90%;
    }

    .utama .item {
        height: 250px;
    }

    .owl-nav {
        top: -60px !important;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
    }
}

.utama .header h1 {
    font-weight: 800;
    font-size: 4rem; /* Ukuran besar default di desktop */
    margin: 5px -5px 15px;
}

.utama .header span {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #471aa0;
}

.utama .header p {
    max-width: min(40ch, 100% - 2rem);
    line-height: 1.6;
    color: #565656;
}

.utama .item {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.utama .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px 25px;
    color: #fff;
    background: #020024;
    background: linear-gradient(0deg, #020024 0%, #000032a1 3%, #17d9ff00 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.utama .item .overlay span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 60px;
    padding: 10px 20px;
    display: inline-block;
}

.utama .item .overlay > div h2 {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

@media screen and (max-width: 600px) {
    .owl-nav {
        top: -60px !important;
    }
}

.owl-nav button {
    background: #fff !important;
    width: 45px;
    height: 45px;
    font-size: 25px !important;
    box-shadow: 0px 0px 17px #00000005;
    border-radius: 50%;
}

.owl-nav button:nth-of-type(1) {
    margin-right: 13px;
}

/* dibawah berita */
.kepala {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.kartu-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.kartu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.kartu:hover {
    transform: scale(1.05);
}

.kartu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.kartu-content {
    padding: 15px;
}

.kartu-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.kartu-content p {
    font-size: 14px;
    color: #555;
}

.tmbl-container {
    text-align: right;
    margin-top: -5px;
    padding: 50px 20px; /* 50px untuk atas & bawah, 20px untuk kiri & kanan */
}

.tmbl {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: orange;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tmbl:hover {
    background-color: #ffb400;
    color: #fff;
    border: 2px solid transparent;
}

@media (max-width: 768px) {
    .kartu img {
        height: 150px;
    }
}

/* footer */
.they {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff88;
}
.palar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.palar h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}
.palar h1 span {
    color: #ffd700;
}
.content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.content .left {
    max-width: 60%;
}
.content .left h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: left;
    color: green;
}
.content .left p {
    font-size: 16px;
    color: green;
    line-height: 1.5;
    text-align: left;
}
.content .right {
    max-width: 35%;
}
.content .right h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: green;
}
.content .right p {
    font-size: 16px;
    color: green;
    margin: 0 0 10px 0;
}
.kakier {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.kakier .contact {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.kakier .contact .left {
    font-size: 16px;
    color: green;
}

.kakier .contact .right {
    display: flex;
    text-align: right;
    flex-direction: column;
    margin-left: auto; /* Mendorong elemen ke kanan */
}

.text-black11 {
    color: green !important;
}

.kakier .contact .right h3 {
    font-size: medium;
    color: green;
}

.kakier .contact .right p {
    font-size: small;
    color: green;
}
.kakier .contact div {
    margin-right: 20px;
    display: flex;
    align-items: center;
    color: green;
}
.kakier .contact div i {
    margin-right: 5px;
    color: green;
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .kakier .contact div {
        flex-wrap: wrap;
        flex-direction: row;
    }
    .content .left,
    .content .right {
        max-width: 100%;
    }
    .kakier {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
        width: 100%;
    }
    .kakier .contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .kakier .contact .left {
        display: flex; /* Menggunakan flexbox */
        align-items: center; /* Pusatkan vertikal */
        justify-content: center; /* Pusatkan horizontal */
        text-align: center; /* Pusatkan teks */
        flex-direction: column; /* Susun elemen secara vertikal jika diperlukan */
    }
    .kakier .contact .right {
        display: flex;
        text-align: center;
        flex-direction: column;
        margin-left: 0px; /* Mendorong elemen ke kanan */
    }
    .kakier .contact div {
        margin-right: 0px;
    }
    .kakier .contact div i {
        margin-right: 5px;
    }
    .kakier .contact div {
        margin-bottom: 10px;
    }
}

footer hr {
        border: none;
        height: 4px;
        background-color: orange;
        margin-bottom: 20px;
      }
.gr-mt{
margin-top: 1em;
}
      .gr-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .gr-box {
        width: 5%; /* Ukuran default untuk desktop */
        padding: 5px;
        background-color: #f0f0f000;
        border: 2px solid green;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .gr-box img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        transition: 0.3s ease-in-out;
      }
      @media (max-width: 768px) {
        .gr-box {
          width: 30%;
        }
      }
      @media (max-width: 480px) {
        .gr-box {
          width: 28%;
        }
      }

/* outlet style */
.outlet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    margin: 1em 0;
}
@media (min-width: 1640px) {
    /* Monitor lebih besar */
    .outlet-container {
        margin: 0 0;
        margin-bottom: 2em;
    }
    
    .teks-awal h1,
    .teks-awal span {
        font-size: 48px;
    }

    .teks-awal p,
    .teks-awal a {
        font-size: 20px;
    }

    .description {
        font-size: 22px;
    }

    .outlet {
        width: 28%;
    }

    .outlet h3 {
        font-size: 24px;
    }

    .outlet p {
        font-size: 18px;
    }
}
@media (min-width: 1920px) {
    /* Monitor lebih besar (Full HD) */
    .outlet-container {
        max-width: 1600px !important;
        margin: 0 0;
        margin-top: -1em;
        margin-bottom: 2em;
    }

    .teks-awal h1,
    .teks-awal span {
        font-size: 52px;
    }

    .teks-awal p,
    .teks-awal a {
        font-size: 22px;
    }

    .description {
        font-size: 24px;
    }

    .outlet {
        width: 26%;
    }
.outlet img {
    width: 100%;
    height: 385px;
}

    .outlet h3 {
        font-size: 26px;
    }

    .outlet p {
        font-size: 20px;
    }
}
.teks-awal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .teks-awal {
        flex-direction: column;
        align-items: left;
    }
    .teks-awal a {
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: left;
    }
    .teks-awal a i {
        margin-left: 5px;
    }
}
.teks-awal h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: green;
}
.teks-awal span {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: orange;
}

.teks-awal p {
    color: green;
    margin: 0;
}
.teks-awal a {
    color: orange;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.teks-awal a i {
    margin-left: 5px;
}
.description {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}
.outlets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.outlet {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 30%;
    margin-bottom: 20px;
}
.outlet img {
    width: 100%;
    height: 285px;
    border-bottom: 1px solid #ddd;
}
.outlet h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 5px;
    text-align: left;
    padding-left: 10px;
    color: #009e0f;
}
.outlet p {
    font-size: 16px;
    color: #ffb400;
    ont-weight: 500;
    margin: 0 0 15px;
    padding: 10px 10px;
    text-align: justify;
}
@media (max-width: 768px) {
    .outlets {
        flex-direction: column;
        align-items: center;
    }
    .outlet {
        width: 100%;
    }
    .outlet img {
        width: 100%;
        height: fit-content;
    }
}

/* berita style */
.berita-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.berita-header {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider1 {
    position: relative;
    display: flex;
    overflow: hidden;
}
.berita-header h1 {
    font-size: 2em;
    color: #333;
}
.berita-header h1 span {
    color: #f1c40f;
}
.berita-header p {
    font-size: 1.2em;
    color: #666;
    flex: 1;
}
.berita-head {
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.berita-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.berita-content img {
    max-width: 100%;
    border-radius: 10px;
}

.berita-content .text {
    flex: 1;
    margin-left: 20px;
}

.berita-content .text p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.berita-content .text a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.berita-nav {
    display: flex;
    justify-content: center;
    margin-left: 20px;
}
.berita-nav .nav-button {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
}

.berita-nav .nav-button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}
.berita-nav .nav-button i {
    font-size: 1.2em;
}
@media (max-width: 768px) {
    .berita-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .berita-content {
        flex-direction: column;
    }
    .berita-content .text {
        margin-left: 0;
        margin-top: 20px;
    }
    .berita-nav {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* apl style */

.button-container {
    text-align: center;
    margin-top: 2em;
}

.bw-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    border: 2px solid black;
    border-radius: 50px;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.bw-button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}

.apbg {
    width: 100%;
    height: 100vh;
    padding: 0px 0;
    background-image: url("/assets/img/appco.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; /* Pastikan posisi relatif untuk overlay */
}

/* Tambahkan overlay hitam transparan */
.apbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Warna hitam transparan */
    z-index: 1; /* Pastikan overlay berada di atas */
}

/* Pastikan konten tetap terlihat */
.apl-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative; /* Pastikan konten di atas overlay */
    z-index: 2;
    height: 100vh;
}

.apl-container-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1em;
}
.text-apl-section {
    max-width: 50%;
    padding-right: 20px;
}
.text-apl-section h1 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.app-buttons img {
    width: 75px;
    height: 50px;
}
.app-buttons2 {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    justify-content: flex-start; /* Posisikan ke kiri */
    align-items: center; /* Pastikan elemen sejajar vertikal */
}

.app-buttons2 img {
    width: 50%;
    height: auto;
}
.image-apl-section {
    max-width: 50%;
}
.image-apl-section img {
    max-width: 100%;
    width: 600px;
    height: auto;
    margin-top: 1em;
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .text-apl-section {
        max-width: 50%;
        padding-right: 10px;
    }
    .text-apl-section h1 {
        color: #ffffff;
        text-align: left;
    }
    .app-buttons2 img {
        width: 150px;
        height: auto;
    }
    .image-apl-section img {
        max-width: 100%;
        width: 600px;
        height: auto;
        margin-top: 1em;
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .apl-container {
        flex-direction: column-reverse;
        text-align: center;
        height: fit-content;
    }
    .apbg {
        height: fit-content;
    }
    .apl-container-detail {
        flex-direction: column-reverse;
        text-align: center;
    }
    .text-apl-section,
    .image-apl-section {
        max-width: 100%;
        padding: 0;
    }
    .image-apl-section img {
        width: 100%;
        height: fit-content;
    }
    .text-apl-section {
        padding-top: 10px;
    }
    .text-apl-section h1 {
        font-size: 1.5rem;
        text-align: left;
        padding: 20px 20px;
    }
    .app-buttons2 {
        display: flex;
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 25px;
        gap: 5px;
        justify-content: flex-start; /* Posisikan ke kiri */
        align-items: left; /* Pastikan elemen sejajar vertikal */
    }
    .app-buttons2 img {
        width: 120px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .coba-container {
        height: 100%;
    }
}
.coba-container {
    position: relative; /* Tambahkan ini agar ::before dapat bekerja */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coba-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coba-container-content {
    position: relative; /* Pastikan konten berada di atas overlay */
    z-index: 2;
    color: white; /* Agar teks tetap terlihat di atas background hitam */
}

.coba-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
    margin-top: 1em;
}
.coba-header h1 {
    font-size: 3em;
    color: green;
    margin: 0;
    font-weight: 700;
}
.coba-header h1 span {
    color: orange;
    font-weight: 700;
}
.coba-header p {
    font-size: 1.5em;
    color: green;
    margin: 0;
    font-weight: 400;
}

.coba-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 1em;
    height: fit-content;
}
.coba-content:hover {
    transform: scale(1.05);
}
.coba-content img {
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.coba-content .text {
    flex: 1;
    margin-left: 20px;
}
.coba-content .text p {
    font-size: 1em;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
}
.coba-content .text h5 {
    color: #000000;
    text-align: justify;
    font-weight: 700;
}
.coba-content .text a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.navigation {
    display: flex;
    align-items: center;
}
.navigation .nav-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff00;
    color: orange;
    margin-left: 10px;
    cursor: pointer;
    border: 1px solid orange;
}

.navigation .nav-button:hover {
    background-color: orange;
    color: white;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .coba-header {
        flex-direction: column;
        text-align: center;
    }
    .navigation {
        margin-top: 10px;
    }
    .coba-content {
        flex-direction: column;
        text-align: center;
    }
    .coba-content .text {
        margin-left: 0;
        margin-top: 20px;
    }
}
.ener {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .ener {
        flex-wrap: wrap;
        max-width: fit-content;
    }
    .ener .social-icons-end {
        margin: 10px auto;
    }
}
.ener div {
    display: flex;
    align-items: center;
}
.ener div p {
    margin: 0 10px;
}
.ener .social-icons-end a {
    margin: 0 5px;
    background-color: #000000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    padding: 5px 10px;
}
.ener .social-icons-end a:hover {
    background-color: #ffffff;
    color: #000000;
}
.ener .social-icons-end a i {
    font-size: 20px;
}

/* news slider */
.news-con {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.news-con .left,
.news-con .right {
    flex: 1;
}
.news-con .right {
    background: #fff;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Efek bayangan */
}
.news-con .right img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}
.news-con .right .text-news-con {
    flex: 1;
    padding: 15px;
}
.news-con .right h5 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 0;
}
.news-con .right p {
    font-size: 1em;
    line-height: 1.5;
    text-align: justify;
}
.news-con .right a {
    display: inline-block;
    margin-top: 20px;
    color: green;
    text-decoration: none;
    font-weight: bold;
}
.newslir {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.newslis {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.newsli {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.newslir .prev,
.newslir .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid orange;
    padding: 10px;
    cursor: pointer;
}
.newslir .prev {
    left: 10px;
}
.newslir .next {
    right: 10px;
}
@media (max-width: 768px) {
    .newsli {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .newsli img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
.news-con .right p {
    font-size: 0.95em;
    line-height: 1.3;
    text-align: justify;
}
}
@media (max-width: 768px) {
    .news-con .right .text-news-con {
        padding: 0px;
        padding-left: 0px;
        margin-left: 9px;
        margin-right: 9px;
        padding-right: 0px;
        margin-bottom: 15px;
    }
    .news-con {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    .news-con .right {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    .news-con .right img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .newslir {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .newslis {
        text-align: center;
        align-items: center;
    }
}
@media (min-width: 1280px) {
    /* Laptop besar & desktop */
    .news-con .right {
        max-width: 100%;
    }
}

@media (min-width: 1640px) {
    /* Monitor lebih besar */
    .news-con .right {
        max-width: 100%;
        height: 70%;
    }
    .news-con .right img {
        width: 100%; /* Perbesar gambar di dalam card */
        max-width: 50%; /* Batasi ukuran maksimal */
        height: 100%;
        object-fit: cover;
    }

    .news-con .right .text-news-con {
        font-size: 1.2em; /* Perbesar teks agar lebih nyaman dibaca */
    }

    .news-con .right h5 {
        font-size: 2em; /* Perbesar judul */
    }

    .news-con .right p {
        font-size: 1.1em; /* Perbesar teks deskripsi */
    }
}

      .at-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 2em;
    display: flex;
    align-items: center;
}

.at-image img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50px;
    z-index: 1;
}

.at-text {
    position: relative;
    background-color: green;
    color: white;
    padding: 30px;
    border-top-right-radius: 30%;
    border-bottom-right-radius: 30%;
    width: 100%;
    max-width: 700px;
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

      .at-text h2 {
        font-size: 3rem;
        font-weight: bold;
        color: orange;
      }
      .at-text p {
        margin: 5px 0;
        font-size: 1.1rem;
        line-height: 1.5;
      }
      .at-text a {
        color: yellow;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
        text-align: right;
        margin-right: 25px !important;
      }
@media screen and (max-width: 1024px) {
.at-text h2 {
        font-size: 2.5rem !important;
      }
.at-text p {
        font-size: 1rem !important;
      }
}
@media screen and (min-width: 1600px) {
.at-text h2 {
        font-size: 3rem !important;
      }
.at-text p {
        font-size: 1.6rem !important;
        margin: 27px 0 !important;
      }
.at-text a {
        margin-right: 25px !important;
        font-size: 1.2rem !important;
      }
.at-text {
    max-width: 900px !important;
}
}
@media screen and (min-width: 1900px) {
.at-text h2 {
        font-size: 3.8rem !important;
      }
.at-text p {
        font-size: 1.7rem !important;
        margin: 10px 0 !important;
        line-height: 1.5;
      }
.at-text a {
        margin-right: 65px !important;
        font-size: 1.5rem !important;
      }
.at-text {
    max-width: 900px !important;
}
.ry-text-section {
        padding: 20px 90px !important;
      }
      .ry-text-section h1 {
        font-size: 4.5rem !important;
      }
}
@media screen and (max-width: 768px) {
    .at-container {
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
    }

    .at-image img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
        position: relative;
        left: 0;
    }

    .at-text {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 50vh;
        border-radius: 0;
        padding: 15px;
        text-align: center;
        margin-top: -3em;
        border-radius: 50px 50px 0 0; /* Lengkungan di atas */
    }
.at-text h2 {
        font-size: 1.7rem;
        font-weight: bold;
        color: yellow;
      }
      .at-text p {
        margin: 10px 0;
        font-size: 0.9rem;
        line-height: 1;
        text-align: justify;
      }
      .at-text a {
        color: yellow;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
      }
}

.disc-container {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        text-align: center;
      }
      .disc-container h1 {
        color: green;
        font-size: 3rem;
        font-weight: bold;
        font-style: italic;
        margin-bottom: 5px;
      }
      .disc-container p.subtitle {
        color: green;
        font-size: 1rem;
        margin-bottom: 20px;
      }
      .disc-container .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        width: 100%;
      }
      .disc-item {
    position: relative;
    display: flex;
    align-items: stretch; /* Pastikan elemen anak mengisi tinggi penuh */
    color: white;
    text-align: left;
    min-height: 200px;
    width: 100%;
    gap: 3px;
    overflow: hidden; /* Mencegah konten keluar */
}

.disc-item img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.disc-item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
.disc-item .content h3 {
    color: white;
    font-size: 1.6em;
    font-weight: 700;
        }
.disc-item .content p {
    color: white;
    font-size: 1em;
    font-weight: 500;
}

      .disc-item.yellow {
        background: orange;
      }
      .disc-item.green {
        background: green;
      }
      .disc-item.blue {
        background: royalblue;
      }
      .disc-item.pink {
        background: pink;
      }
      .disc-btn {
    display: inline-block; /* Mengikuti ukuran teks */
    background: white;
    color: green;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid green;
    text-align: center;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Mencegah button melebar */
    width: auto !important; /* Pastikan tidak mengikuti parent */
    max-width: max-content; /* Batasi agar tidak lebih besar */
}

.disc-btn:hover {
    background: green;
    color: white;
    border-color: darkgreen;
}

      .disc-item.top img {
        order: 2;
        margin-left: 10px;
      }
      .disc-item.bottom img {
        order: -1;
        margin-right: 10px;
      }
/* Untuk layar 600px (Mobile) */
@media (max-width: 600px) {
    .disc-container h1 {
        font-size: 2rem;
    }

    .disc-container p.subtitle {
        font-size: 0.9rem;
    }

    .disc-container .grid {
        grid-template-columns: 1fr !important; /* Hanya satu kolom */
    }

    .disc-item {
        flex-direction: column; /* Susun vertikal */
        text-align: center;
    }

    .disc-item img {
        width: 100% !important; /* Gambar full width */
        height: auto; /* Batasi tinggi gambar */
        padding: 0 !important;
        margin: 0 !important;
    }

    .disc-item .content {
        padding: 10px;
    }
}

/* Untuk layar 768px (Tablet) */
@media (max-width: 768px) {
    .disc-container h1 {
        font-size: 2.5rem;
    }

    .disc-container .grid {
        grid-template-columns: repeat(2, 1fr);
    }

.disc-item .content h3 {
    font-size: 1em;
        }
.disc-item .content p {
    font-size: 0.8em;
}

    .disc-item img {
        height: 100%;
    }

    .disc-item .content {
        padding: 20px;
    }
.disc-btn {
    font-size: 0.8;
    color: green;
    padding: 5px 10px;
    margin-top: 5px;
}
}

/* Untuk layar besar 1600px+ */
@media (min-width: 1600px) {
    .disc-container h1 {
        font-size: 3.5rem;
    }

    .disc-container p.subtitle {
        font-size: 1.2rem;
    }

    .disc-item .content {
        padding: 30px;
    }
}
.tmbl-disc {
    text-align: right;
    margin-top: 15px;
    padding: 20px 20px;
}

.disc-tmbl {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00000000;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: rgb(255, 58, 91);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.disc-tmbl:hover {
    background-color: rgb(255, 58, 91);
    color: #fff;
    border: 2px solid transparent;
}


.ry-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffc107;
        min-height: 100vh;
        padding: 20px;
      }
      .ry-text-section {
        flex: 0 0 30%;
        padding: 20px 50px;
      }
      .ry-text-section h1 {
        font-size: 3.5rem;
        font-style: italic;
        font-weight: 900;
        color: green;
      }
      .ry-text-section h1 span {
        font-style: italic;
        color: white;
        font-weight: 900;
      }
      .ry-text-section p {
        font-size: 1.2rem;
        color: green;
        margin-top: 20px;
      }
      .ry-slider-container {
        flex: 0 0 70%;
        position: relative;
        max-width: 70%;
        overflow: hidden;
        border-radius: 10px;
      }

      .ry-slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        justify-content: center; /* Pastikan gambar tetap di tengah */
      }

      .ry-slide {
        min-width: 100%;
        display: flex;
        justify-content: center;
      }

      .ry-slide img {
        width: 80%; /* Kurangi lebar gambar agar ada ruang di kiri & kanan */
        max-width: 80%;
        display: block;
        border-radius: 10px;
        margin: auto;
      }

      .ry-slider-container .prev,
      .ry-slider-container .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: green;
        font-size: 2em;
        background-color: rgba(0, 0, 0, 0);
        padding: 5px 10px;
        cursor: pointer;
        border: 1px solid green;
        border-radius: 50%;
        z-index: 10;
      }
.ry-slider-container .prev:hover,
.ry-slider-container .next:hover {
  background-color: green; /* Warna latar hijau saat hover */
  color: white; /* Warna teks putih saat hover */
}
      .ry-slider-container .prev {
        left: 5%;
      }

      .ry-slider-container .next {
        right: 5%;
      }

      .ry-slider-container .dots {
        text-align: center;
        margin-top: 10px;
      }
      .ry-slider-container .dot {
        height: 10px;
        width: 10px;
        margin: 5px;
        background-color: #41ff3a;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        color: #7bff76;
      }
      .ry-slider-container .active {
        background-color: green;
      }
      @media (max-width: 768px) {
        .ry-container {
          flex-direction: column;
          text-align: center;
          height: auto; /* Biarkan tinggi menyesuaikan kontennya */
          min-height: 100vh; /* Pastikan tetap mengisi layar penuh */
        }

        .ry-text-section {
          width: 100%;
          padding: 10px;
        }

        .ry-slider-container {
          width: 100%;
          max-width: 100%;
        }

        .ry-slide img {
          width: 100%; /* Sesuaikan ukuran gambar */
        }
      }
@media (max-width: 768px) {
    .ry-slider-container .prev,
    .ry-slider-container .next {
        font-size: 1.5em; /* Perkecil ukuran tombol di layar kecil */
        padding: 5px 8px; /* Kurangi padding */
        border-width: 2px; /* Pastikan border tetap terlihat */
    }

    .ry-slider-container .prev {
        left: 3vw; /* Posisikan lebih dekat ke tepi */
    }

    .ry-slider-container .next {
        right: 3vw; /* Posisikan lebih dekat ke tepi */
    }
}

/* Tambahan untuk layar sangat kecil (HP kecil, <480px) */
@media (max-width: 480px) {
    .ry-slider-container .prev,
    .ry-slider-container .next {
        font-size: 1.2em; /* Lebih kecil di HP kecil */
        padding: 4px 6px;
    }

    .ry-slider-container .prev {
        left: 2vw;
    }

    .ry-slider-container .next {
        right: 2vw;
    }
}
