/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header, Footer and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('../css/vendor/');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/rtmicons.css');
@import url('../css/vendor/DM-sans/stylesheet.css');


/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --primary: #FCFCFC;
    --navy-deep: #0A192F;
    --navy-light: #112240;
    --emerald: #1B4D3E;
    --emerald-light: #2D6A4F;
    --gold: #B88E44;
    --gold-soft: rgba(184, 142, 68, 0.1);
    --charcoal: #2C3E50;
    --text-main: #CCD6F6;
    --text-muted: #8892B0;
    --white: #FFFFFF;

    /* Legacy Mappings to prevent breakage */
    --green: var(--gold);
    --mild-cream: var(--navy-deep);
    --mild-gold: var(--gold);
    --mild-gold-soft: var(--gold-soft);
    --mild-charcoal: var(--white);
    --mild-text: var(--text-muted);

    --black: #020C1B;
    --grey: #8892B0;
    --grey-light: #A8B2D1;
    --grey-accent: #112240;
    --green-neon: #64FFDA;
    /* Using a more 'tech-finance' emerald/cyan */
    --green-dark: #0A192F;
    --green-accent: #1B4D3E;
    --gradient-premium: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    --gradient-gold: linear-gradient(135deg, #B88E44 0%, #8A6D3B 100%);
    --gradient-footer: linear-gradient(180deg, #020C1B 0%, #0A192F 100%);

    --font-1: "DM Sans", sans-serif;

    /* Perfect Gold Gradient */
    --gradient-gold-premium: linear-gradient(135deg, #B88E44 0%, #D4AF37 50%, #8A6D3B 100%);
}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    font-family: var(--font-1);
    color: var(--mild-text);
    background: #ffffff !important;
    overflow-x: hidden;
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    /* Reduced from 48px */
    font-weight: 500;
    line-height: 1.2;
}


h3 {
    font-size: 32px;
    /* Reduced from 42px */
    font-weight: 500;
    line-height: 1.3;
}

h4 {
    font-size: 28px;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    font-weight: 300;
}

h6 {
    font-size: 18px;
    font-weight: 600;
}

button,
a {
    font-size: 18px;
    font-family: var(--font-1);
}

p {
    font-size: 16px;
    font-family: var(--font-1);
    color: var(--grey);
}

ul {
    list-style: none;
}

.list-circle {
    list-style: disc var(--accent-color);
}

li {
    font-size: 16px;
}

img {
    object-fit: cover;
}

.text-accent {
    color: var(--green-neon);
}

.text-accent-2,
.text-gold-gradient {
    background: linear-gradient(135deg, #CFAF6E 0%, #D4AF37 50%, #A67C2E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #CFAF6E 0%, #D4AF37 50%, #A67C2E 100%) !important;
}

.price-text {
    font-size: 64px;
    font-weight: bolder;
}

.price-text2 {
    font-size: 40px;
    font-weight: bolder;
}

.display {
    font-size: 180px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-1);
}

.testimonial-name {
    font-size: 18px;
    font-family: var(--font-1);
    color: var(--accent-color);
}

.button-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-2);
}

.small-text {
    font-size: 14px;
    font-family: var(--font-1);
}

.fun-fact {
    font-size: 48px;
    font-weight: 600;
}

.ls-1 {
    letter-spacing: 0.1em;
}

.ls-2 {
    letter-spacing: 0.2em;
}

.fun-facts-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .fun-facts-section .col:not(:last-child) {
        border-right: 1px solid rgba(184, 142, 68, 0.2);
    }
}


/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading-refined {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.max-w-600 {
    max-width: 600px;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: #B58E50;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 6px 20px rgba(181, 142, 80, 0.25);
    margin-bottom: 1rem;
}

.sub-heading.cta {
    border: 1px solid var(--green-neon);
    color: var(--green-neon);
}

.text-color {
    color: var(--text-color);
}

.text-color-2 {
    color: var(--text-color-2);
}

.p-banner {
    color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
    border: none;
}

.form-label {
    font-size: 24px;
}

.form.contact textarea {
    background-color: transparent;
    border-radius: 10px;
    color: var(--primary);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-1);
}

.form.contact input,
.form.contact select {
    background-color: transparent;
    border-radius: 10px;
    color: var(--primary);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-1);
}

.form.contact input:focus,
.form.contact textarea:focus,
.form.contact select:focus {
    box-shadow: none;
    border: solid 1px --primary;
    background-color: transparent;
    color: var(--primary);
}

.form.contact input:autofill,
.form.contact input:autofill:focus {
    color: var(--primary);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--primary);
    font-family: var(--font-1);
}

.form.contact input::placeholder,
.form.contact textarea::placeholder {
    color: var(--primary);
    font-family: var(--font-1);
}

.form.contact .submit_form {
    padding-inline: 2rem;
    padding-block: 1rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--gradient-left);
    color: var(--primary);
    border-radius: 20px;
    border: solid 1px var(--gradient-left);
}

.form.contact .submit_form:hover {
    background-color: var(--gradient-left);
    color: var(--primary);
    border: solid 1px var(--gradient-right);
}

.form textarea {
    background-color: transparent;
    border-radius: 10px;
    color: var(--text-color-2);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-1);
}

.form input,
.form select {
    background-color: transparent;
    border-radius: 10px;
    color: var(--primary);
    border: 1px solid var(--primary);
    outline: none;
    font-family: var(--font-1);
}

/* Style khusus untuk opsi yang terpilih */
form select.form-select option:checked {
    color: var(--text-color-2);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 1px var(--primary);
    background-color: var(--primary);
    color: var(--accent-color-2);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--primary);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--primary);
    font-family: var(--font-1);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--primary);
    font-family: var(--font-1);
}

.custom-input-group {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(17.5px);
    border-radius: 20px;

}

.custom-email-input {
    border: none !important;
    background: transparent !important;
    color: var(--text-color) !important;
    padding-left: 20px;
    padding-right: 0;
    font-size: 18px;
}

.custom-email-input::placeholder {
    color: var(--accent-color-4);
    font-size: 18px;
}

.custom-submit-button {
    background-color: var(--black-1) !important;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 12px 24px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.custom-submit-button:hover {
    opacity: 0.9;
}

.form option {
    background-color: var(--primary);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 1rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--gradient-left);
    color: var(--primary);
    border-radius: 10px;
    border: 1px solid var(--gradient-left);
}


.submit_form:hover {
    background-color: var(--gradient-left);
    color: var(--black-1);
    border: 1px solid var(--gradient-left);
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: transparent;
    border-radius: 5px;
}

.submit_appointment {
    padding-inline: 3rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: var(--primary);
    background-color: transparent;
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: transparent;
    color: white;
    filter: none;
}

/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 480px;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header, Footer and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}

/* ---------------------------- */
/* Pre Header Styles            */
/* ---------------------------- */
.pre-header {
    background: var(--navy-deep);
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 142, 68, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 100px;
    overflow: hidden;
    opacity: 1;
}

#header.scrolled .pre-header {
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    border-bottom: none;
    pointer-events: none;
}

.social-link-top i {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link-top:hover i {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.contact-link-top {
    font-family: var(--font-1);
    transition: all 0.3s ease;
}

.contact-link-top:hover {
    color: var(--gold) !important;
}

.contact-link-top i {
    transition: all 0.3s ease;
}

.contact-link-top:hover i {
    transform: scale(1.1);
}

/* Join Us Button Styles */
.btn-join-us {
    background: linear-gradient(135deg, #B88E44 0%, #E2C582 50%, #B88E44 100%);
    color: var(--navy-deep) !important;
    border: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    padding: 10px 25px !important;
}

.btn-join-us:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 142, 68, 0.3);
    filter: brightness(1.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Header Context */
.navbar .logo-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.navbar .main-logo {
    mix-blend-mode: normal;
    /* Discarded multiply rule; solid white navbar flawlessly blends logo background */
}

/* Footer Context */
footer .logo-container {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

footer .main-logo {
    mix-blend-mode: normal;
    /* Disables multiply so the logo is fully visible in the footer badge */
}

.main-logo {
    height: auto;
    max-height: 50px;
    /* Significantly supersized as requested */
    width: auto;
    display: block;
    mix-blend-mode: normal;
    transition: transform 0.3s ease;
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

.offcanvas-fullwidth {
    width: 100vw !important;
    max-width: 100vw;
}

.offcanvas-body {
    overflow: visible;
}

.navigation {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 0.5fr;
    align-items: center;
    color: var(--gray);
    transition: all 0.5s;
}

.navigation:hover {
    color: var(--primary);
}

.navigation .header-text {
    font-size: 48px;
    font-weight: 600;
}

.navigation a {
    color: var(--gray);
    transition: all 0.5s;
}

.navigation:hover a {
    color: var(--primary);
}

.navigation img {
    opacity: 0;
    margin-block: -3rem;
    justify-self: center;
    transition: all 1s;
    transform: scale(1);
    position: relative;
    z-index: 9999;
}

.navigation:hover img {
    opacity: 1;
}

.navbar .r-container {
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
    padding-inline: 40px;
    padding-block: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding-block: 1rem;
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding-inline: 1rem;
}

.nav-link {
    font-size: 16px;
    font-family: var(--font-1);
    font-weight: bold;
    color: var(--grey-light);
    text-align: center;
    padding-block: 1.2rem;
}

.nav-link:hover {
    color: var(--green-accent);
    text-align: center;
}

.nav-link.active {
    color: var(--green-accent) !important;
    text-align: center;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color-2);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    width: 200px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--grey);
    font-family: var(--font-1);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
    text-align: center;
    background-color: var(--primary);
    overflow: visible;
}

.dropdown-item.active {
    color: var(--primary);
    background-color: var(--green);
}

.dropdown-item:hover {
    background-color: var(--green);
    color: var(--primary);
}

.dropdown-item:focus {
    color: var(--primary);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 2em 3em 2em 3em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-green {
    background-color: var(--green);
}

.bg-black {
    background-color: var(--black);
}

.bg-grey {
    background: var(--grey);
}

.bg-grey-light {
    background-color: var(--gray-light);
}

.bg-grey-accent {
    background-color: var(--grey-accent);
}

.bg-green-neon {
    background-color: var(--green-neon);
}

.bg-green-dark {
    background-color: var(--green-dark);
}

.bg-gradient-left {
    background: var(--gradient-left);
}

.bg-gradient-right {
    background: var(--gradient-right);
}

.bg-gradient-bottom {
    background: var(--gradient-bottom);
}

.bg-gradient-footer {
    background: var(--gradient-footer);
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-avatar-group {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.hero-avatar-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-avatar-item:first-child {
    margin-left: 0;
}

.hero-avatar-item:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.hero-avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.premium-title-shadow {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(181, 142, 80, 0.4) !important;
}

.check-item-premium {
    background: rgba(181, 142, 80, 0.05);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(181, 142, 80, 0.1);
    transition: all 0.3s ease;
}

.check-item-premium:hover {
    background: rgba(181, 142, 80, 0.1);
    transform: translateY(-2px);
}

.gradient-white {
    background: linear-gradient(90deg, #FCFCFC 37.29%, rgba(252, 252, 252, 0) 96.57%);
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}

.num-hover {
    color: var(--primary);
    transition: all 0.5s;
}

.num-hover:hover {
    color: var(--green-neon);
}

.btn-accent {
    background: var(--gradient-gold-premium) !important;
    border: none !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 30px rgba(184, 142, 68, 0.25) !important;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(184, 142, 68, 0.35) !important;
    color: #ffffff !important;
}

.btn {
    border-radius: 50px !important;
    padding: 14px 34px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    transition: all 0.3s ease-in-out !important;
}

.btn-outline-navy {
    background: transparent !important;
    border: 2px solid var(--navy-deep) !important;
    color: var(--navy-deep) !important;
}

.btn-outline-navy:hover {
    background: var(--navy-deep) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2);
}

.btn-outline-white {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.btn-outline-white:hover {
    background: #ffffff !important;
    color: var(--navy-deep) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-img {
    transition: transform 5s ease;
}

.hero-section:hover .hero-img {
    transform: scale(1.05);
}

.green {
    color: var(--green);
}

.black {
    color: var(--black);
}

.grey {
    color: var(--grey);
}

.grey-light {
    color: var(--grey-light);
}

.grey-accent {
    color: var(--grey-accent);
}

.green-neon {
    color: var(--green-neon);
}

.green-dark {
    color: var(--green-dark);
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-black {
    border-color: var(--black) !important;
}

.border-green {
    border-color: var(--green-dark) !important;
}

.custom-border {
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: var(--primary);
    border-radius: 0 0 0 50%;
    background-color: var(--primary);
}

.custom-border-2 {
    border-width: 15px 0 0 15px;
    border-style: solid;
    border-color: var(--grey-accent);
    border-radius: 50% 0 0 0;
    background-color: var(--grey-accent);
}

.custom-border-2.accent {
    border-color: var(--primary);
    background-color: var(--primary);
    font-size: 64px;
}

.custom-border-3 {
    border: 1px solid var(--green-dark);
    background-color: var(--primary);
    border-radius: 50%;
    aspect-ratio: 1/1;
    padding: 15px;
    display: flex;
    font-size: 64px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: max-content;
    transition: all 0.2s ease;
}

.clipped-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 73%, 82% 73%, 82% 100%, 0 100%, 0% 80%, 0% 20%)
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: grey !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.text-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.text-marquee-content {
    display: inline-block;
    animation: text-marquee 70s linear infinite;
    font-size: 100px;
    padding-right: 50%;
}

@keyframes text-marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-block: 2rem;
    background: rgba(181, 142, 80, 0.03);
    border-top: 1px solid rgba(181, 142, 80, 0.1);
    border-bottom: 1px solid rgba(181, 142, 80, 0.1);
    /* Faded edges for premium feel */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-container.bg-premium-gold {
    background: linear-gradient(90deg, #B58E50 0%, #8A6D3B 100%);
    box-shadow: 0 15px 35px rgba(181, 142, 80, 0.2);
    border: none;
    padding-block: 2.5rem;
}

.marquee-content {
    display: inline-flex;
    gap: 6rem;
    animation: marquee-scroll 60s linear infinite;
    align-items: center;
    vertical-align: middle;
}

.reverse .marquee-content {
    animation-direction: reverse;
}

.marquee-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* Elegant wide spacing */
    font-weight: 600;
    margin: 0;
    color: inherit;
    font-family: 'Inter', sans-serif;
}

.marquee-item i {
    opacity: 0.6;
    font-size: 24px !important;
}

/* Background Premium Gold Text Color */
.bg-premium-gold .marquee-item h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-premium-gold .marquee-item i {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

img.rotate {
    width: 300px;
    animation: rotation 6s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.swiperTestimonials {
    overflow: visible;
}

.swiperTestimonials2 {
    position: relative;
    padding-bottom: 40px;
}

.swiperStep .swiper-slide.swiper-slide-thumb-active h4 {
    color: var(--accent-color);
}

.swiperStep {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiperStep2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.swiperStep2 .swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiperStep {
    width: 100%;
    height: 100%;
}

.swiperStep .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiperStep {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiperStep .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.swiperStep .swiper-slide-thumb-active {
    opacity: 1;
}

.swiperTestimonials .swiper-slide-next,
.swiperTestimonials .swiper-slide-prev {
    opacity: 0.5 !important;
}

.padding-swiper {
    position: relative;
    padding-inline: 5rem;
}

.mySwiper {
    position: relative;
    padding-bottom: 156px;
}

.swiperImage {
    position: relative;
    width: 100%;
}

.swiper-pagination {
    margin-top: 1rem;
    position: relative;
}


.swiper-pagination-bullet {
    background: var(--grey-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--green-dark);
}

.swiper-slide {
    padding: 0.5rem;
}

.swiper-slide,
.swiperService .swiper-slide {
    display: flex;
    height: auto;
    align-items: stretch;
}

.swiperService .swiper-slide {
    padding: 2.5rem 1.25rem;
    /* Specific breath for scaling effects */
}



.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 27px;
}

.swiperStep2 .swiper-button-next::after,
.swiperStep2 .swiper-button-prev::after {
    font-size: 45px;
}

.swiperStep2 .swiper-button-next,
.swiperStep2 .swiper-button-prev {
    right: -1rem;
    top: 15rem;
    width: 95px;
    height: 95px;
    border: 6px solid var(--primary);
    background: linear-gradient(180deg, #050505 -77.42%, #01C7F3 100%);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent,
.swiper-button-prev.accent {
    bottom: 10px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent {
    right: 0;
    transform: translateY(20px);
}

.swiper-button-prev.accent {
    left: 0;
    transform: translateY(20px);
}

.swiper-button-next.accent2,
.swiper-button-prev.accent2 {
    top: 15px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next.accent2 {
    right: 0;
    transform: translateY(20px);
}

.swiper-button-prev.accent2 {
    left: 0;
    transform: translateY(20px);
}

/* Center the buttons horizontally */
.swiperStep2 .swiper-button-next {
    right: 0;
    transform: translateY(20px);
}

.swiperStep2 .swiper-button-prev {
    left: 0;
    transform: translateY(20px);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    top: 25rem;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Center the buttons horizontally */
.mySwiper .swiper-button-next {
    right: 45%;
    transform: translateY(20px);
}

.mySwiper .swiper-button-prev {
    left: 45%;
    transform: translateY(20px);
}

/* Center the buttons horizontally */
.swiper-button-next.service {
    right: -9%;
    /* Gerakkan tombol next ke kanan dari tengah */
    transform: translateY(20px);
}

.swiper-button-prev.service {
    left: -7%;
    /* Gerakkan tombol prev ke kiri dari tengah */
    transform: translateY(20px);
}

/* Style for both next and prev buttons */
.swiperImage .swiper-button-next,
.swiperImage .swiper-button-prev {
    bottom: 10px;
    /* Posisikan tombol di bagian bawah */
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: var(--background-color);
    /* Warna background semi-transparan */
    color: var(--accent-color);
    border-radius: 50%;
    /* Membuat tombol bulat */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Center the buttons horizontally */
.swiperImage .swiper-button-next {
    left: 50%;
    /* Gerakkan tombol next ke kanan dari tengah */
    transform: translateY(20px);
}

.swiperImage .swiper-button-prev {
    left: 47%;
    /* Gerakkan tombol prev ke kiri dari tengah */
    transform: translateY(20px);
}

/* Ukuran icon panah */
.swiperImage .swiper-button-next::after,
.swiperImage .swiper-button-prev::after {
    font-size: 24px;
}

/* Hover effect */
.swiperImage .swiper-button-next:hover,
.swiperImage .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--primary);
    /* Background lebih gelap saat hover */
}

.custom-swiper {
    width: 100%;
    height: 600px;
    padding-right: 3rem;
}

.custom-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-scrollbar {
    width: 6px;
    position: absolute;
    right: 10px;
    top: 0px;
    margin-top: 150px;
    bottom: 0;
    background: #e0e0e0;
    border-radius: 10px;
    z-index: 9999;
}

.swiper-scrollbar.swiper-scrollbar-vertical {
    height: 300px;
}

.custom-scrollbar .swiper-scrollbar-drag {
    background: #ff9800;
    border-radius: 10px;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.width-subscribe {
    width: 50%;
}

.read-more {
    color: var(--green);
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
}

.read-more.blog {
    color: var(--text-color);
    transition: all 0.5s;
}

.read-more:hover {
    color: var(--black);
}

.tags {
    font-family: var(--font-1);
    font-size: 18px;
    color: var(--gray);
    transition: all 0.5s;
}

.tags:hover {
    color: var(--primary);
}

.tags.active {
    color: var(--primary);
}

.tags.accent:hover {
    color: var(--black-1);
}

.tags.accent.active {
    color: var(--black-1);
}

.btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-1);
    font-weight: 600;
    position: relative;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;

}

.btn::before,
.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-accent {
    background: var(--gradient-left);
    border: 1px solid var(--gradient-left);
    color: var(--primary);
    transition: all 1s ease;
    padding: 12px 24px;
    border-radius: 20px;
    overflow: hidden;
}

.btn-accent:hover {
    background: var(--gradient-right);
}

.btn-accent:hover span {
    animation: MoveScaleRightInitial 0.3s forwards, MoveScaleRightEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleRightInitial {
    to {
        transform: translate3d(105%, 0, 0) scale3d(2, 1, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleRightEnd {
    from {
        transform: translate3d(-100%, 0, 0) scale3d(2, 1, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-accent:hover {
    color: var(--primary);
}

.btn-accent.accent {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--black-1);
}

.btn-accent.accent:hover {
    background-color: var(--black-1);
    color: var(--primary);
}

.btn-accent-underline {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    color: var(--text-color);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
}

.btn-accent-underline::before,
.btn-accent-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.btn-accent-underline::before {
    transform: scaleX(1);
    transform-origin: 0% 50%;
    transition: transform 0.3s ease-in-out;
}

.btn-accent-underline:hover::before {
    transform-origin: 100% 50%;
    transform: scaleX(0);
}

.btn-accent-underline::after {
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition: transform 0.3s ease-in-out 0.3s;
}

.btn-accent-underline:hover::after {
    transform: scaleX(1);
}

.btn-accent-underline:hover {
    background: linear-gradient(78.12deg, #A9F8B5 0.32%, #DFF494 99.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-toggler-accent {
    background-color: var(--black);
    border: 1px solid var(--black);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    padding: 12px 24px;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}


.btn-toggler-accent:hover {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-accent-outline {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 10px;
    overflow: hidden;
}

.btn-accent-outline:hover {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-accent-outline:hover span {
    animation: MoveScaleRightInitial 0.3s forwards, MoveScaleRightEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleRightInitial {
    to {
        transform: translate3d(105%, 0, 0) scale3d(2, 1, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleRightEnd {
    from {
        transform: translate3d(-100%, 0, 0) scale3d(2, 1, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-accent-icon {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding-left: 32px;
    border-radius: 20px;
    padding-right: 4.5rem;
    height: 56px;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
}

.btn-accent-icon:hover {
    border: 1px solid transparent;
}

.btn-accent-icon .icon-box {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    border-radius: 19px;
    background: linear-gradient(78.12deg, #A9F8B5 0.32%, #DFF494 99.52%);
    box-shadow: 0px 4px 4.8px rgba(4, 4, 4, 0.4);
    color: var(--primary);
    padding: 15px;
    width: 54px;
    height: 54px;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out, width 0.4s ease-in-out;
}

.btn-accent-icon:hover .icon-box {
    width: 100%;
    height: 54px;
}

.btn-accent-icon:hover i {
    animation: MoveScaleRightInitial 0.3s forwards, MoveScaleRightEnd 0.3s forwards 0.3s;
}

.partner {
    display: flex;
    justify-content: center;
    height: 100%;
}

.partner.accent {
    padding-block: 40px;
    padding-inline: 50px;
    border-radius: 10px;
    color: var(--grey);
    background: var(--grey-accent);
    width: max-content;
}

.partner.accent:hover {
    background: var(--gradient-left);
}

.partner.accent:hover svg {
    color: var(--primary);
}

.partner svg {
    color: var(--grey);
    width: 216px;
    height: 51px;
    transition: all 0.5s ease;
}

.partner:hover svg {
    color: var(--green);
}

.image-footer .social-item {
    color: var(--primary);
    background-color: var(--accent-color);
}

.image-footer:hover .image-footer-blur {
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(2px);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.image-footer {
    position: relative;
    width: max-content;
}

.image-footer .image-zoom {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.image-footer:hover .image-zoom {
    transform: scaleY(1);
}


.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
    transition: all 0.5s;
}

.link:hover {
    color: var(--green-neon);
}

.content .link {
    color: var(--gray);
    transition: all 0.5s;
}

.content .link:hover {
    color: var(--black-1);
}

a .icon-box-2 {
    transition: all 0.5s ease;
    transform: rotate(0deg);
}

a:hover .icon-box-2 {
    transform: rotate(45deg);
}

.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.6) 100%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 23.17%, rgba(1, 199, 243, 0.3) 127.38%);
}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.bg-overlay-2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(255, 239, 225, 0.96), rgba(255, 239, 225, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.bg-blur {
    position: absolute;
    background: rgba(24, 21, 24, 0.3);
    border: 1px solid rgba(207, 171, 130, 0.2);
    backdrop-filter: blur(17.5px);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.linear-gradient {
    padding: 14px 42px;
    background-color: var(--accent-color-2);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.5%, rgba(1, 199, 243, 0.2) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.06%, rgba(1, 199, 243, 0.61) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.video-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 56, 63, 0.144) 0%, rgba(4, 56, 63, 0.72) 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */

.devider {
    border-left: 1px solid var(--black-1);
    margin-bottom: 1rem;
    height: 10rem;
    margin-left: 0;
}

.devider-progress {
    position: absolute;
    width: calc(100% - 15rem);
    border-top: 1px dashed var(--gray-outline);
    margin-top: 66px;
    margin-left: 7rem;
    z-index: -1;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-1);
}

.font-3 {
    font-family: var(--font-1);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.bg-attach-cover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-container.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2.4px);
    border-right: 1px solid var(--accent-color);
    border-top: 1px solid var(--accent-color);
}

.character-img {
    position: relative;
    z-index: 2;
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 12px;
    width: 76px;
    height: 76px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-2);
    margin-left: -15px;
    overflow: hidden;
    border: 5px solid var(--primary);
}

.bg-box {
    bottom: 0;
    right: 0;
    height: 60%;
    width: 50%;
    border: solid 3px var(--accent-color-2);
}

.icon-box {
    display: flex;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--green);
    color: var(--primary);
    padding: 10px;
    width: max-content;
    height: max-content;
    transition: all 0.5s;
}

.icon-box-2 {
    display: flex;
    justify-content: center;
    font-size: 75px;
    font-weight: bold;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background: var(--gradient-left);
    color: var(--primary);
    padding: 16px;
    width: max-content;
    height: max-content;
    transition: all 0.5s;
    border: 1px solid transparent;
}

.icon-box-2:hover {
    background: var(--primary);
    border: 1px solid var(--green);
    color: var(--green);
}

.icon-box.link {
    background: var(--gradient-left);
    color: var(--primary);
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.btn-accent {
    background: linear-gradient(135deg, #CFAF6E, #A67C2E) !important;
    color: #fff !important;
    border: 1px solid var(--mild-gold) !important;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #8A6D3B !important;
    border-color: #8A6D3B !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 142, 80, 0.3);
}

.sub-heading {
    background: var(--mild-gold-soft) !important;
    color: var(--mild-gold) !important;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
}

.sub-heading h6 {
    color: var(--mild-gold) !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent {
    box-shadow: 22px 22px 44.7px rgba(4, 4, 4, 0.4);
    border-radius: 20px;
}

.text-404 {
    font-size: 200px;
    font-weight: bold;
    font-family: var(--font-1);
}

.number-text {
    font-size: 96px;
    font-weight: bold;
}

.text-banner {
    font-size: 200px;
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.swiperImage.floating-left {
    margin-left: 16rem;
}

.padding-custom {
    padding-bottom: 10rem
}

.floating-footer {
    position: relative;
    margin-top: -20rem;
    z-index: 1;
}

.floating-404 {
    position: relative;
    margin-block: -10rem;
    z-index: 1;
}

.floating-counter {
    margin-right: -3rem;
}

.floating-cta {
    position: absolute;
    bottom: 0;
    right: 0;
}

.radius-partner {
    border-top-left-radius: 30px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(24, 21, 24, 0.5);
    border: 0.5px solid var(--text-color);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hotspot:hover {
    background-color: var(--accent-color);
}

.hotspot i {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.hotspot:hover i {
    color: white;
}

/* Tooltip */
.hotspot::after {
    content: attr(data-text);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
    display: none;
}

.hotspot:hover::after {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.position-responsive {
    position: absolute;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

.list-group-item {
    background: var(--green);
    border-radius: 20px !important;
    color: var(--primary);
    transition: all 0.5s;
}

.list-group .link {
    background: var(--green);
    color: var(--primary);
    transition: all 0.5s;
    padding: 10px;
    border-radius: 20px !important;
}

.list-group .link.active {
    color: var(--primary);
    background: var(--gradient-left);

}

.list-group .link:hover {
    color: var(--primary) !important;
    background: var(--gradient-left);
    text-decoration: none;
}

.list-group .link .icon-box {
    background-color: var(--accent-color);
    color: var(--primary);
}

.list-group .link.active .icon-box {
    background-color: var(--primary);
    color: var(--accent-color);
}

.list-group .link:hover .icon-box {
    background-color: var(--primary);
    color: var(--accent-color);
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list li {
    padding: 0;
    font-size: 16px;
    font-family: var(--font-1);
}

.list li .link {
    transition: all 0.5s;
    color: var(--gray);
    font-size: 16px;
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--primary);
}

.list li .link.active,
.list li .link.active i {
    color: var(--primary);
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-box {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 30px;
    width: 200px;
    border-radius: 8px;
}

.countdown-box h2 {
    margin: 0;
    font-size: 2em;
}

.countdown-box p {
    margin: 0;
    font-size: 1.2em;
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
    flex-direction: row-reverse;
}

.customer-item:nth-child(1) {
    z-index: 6;
}

.customer-item:nth-child(2) {
    z-index: 5;
}

.customer-item:nth-child(3) {
    z-index: 4;
}

.customer-item:nth-child(4) {
    z-index: 3;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 16px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 18px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
}

.social-item.accent {
    color: var(--green);

    border: 1px solid var(--green);
}

.social-item:hover {
    background: var(--gradient-left);
    color: var(--primary);
    border: 1px solid var(--gradient-left);
}

.social-item-2 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 24px;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    background: transparent;
}

.social-item-2:hover {
    background: transparent;
    color: var(--black-1);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    font-family: var(--font-2);
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item>a {
    color: var(--primary);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--green-neon);
    font-family: var(--font-2);
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--green-neon);
}

/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

.request-loader {
    position: relative;
    height: 134px;
    width: 134px;
    border-radius: 50% !important;
    border: solid 1px var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 25px;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    background: var(--gradient-left);

}

.request-loader.accent {
    height: 42px;
    width: 42px;
    font-size: 16px;
}

.request-loader.accent2 {
    height: 48px;
    width: 48px;
    font-size: 16px;
}

.request-loader:hover {
    color: var(--green);
    background: var(--primary);
    border: solid 1px var(--green);
}

.request-loader.accent2:hover {
    color: var(--primary);
    background: transparent;
    border: solid 1px var(--primary);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--green);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.5s;
    background-color: var(--primary);
}

.card-counter {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 8px;
    background-color: transparent;
    height: 100%;
}

.card-counter.accent {
    background-color: var(--black-1);
    color: var(--primary);
}

.card-counter.accent2 {
    background-color: var(--gray-hover);
    color: var(--black-1);
}

.card-service {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 32px;
    color: var(--navy-deep);
    background: #ffffff;
    padding: 30px 20px;
    height: 100% !important;
    /* Forces all cards to take the height of the container */
    min-height: 520px;
    /* Standardize card size as requested */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border: 1px solid rgba(181, 142, 80, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.card-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfaf4 0%, #ffffff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.card-service h5 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card-service p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--navy-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 28px;
    border: 1px solid var(--gold-soft);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.05);
}

.card-service:hover,
.swiper-slide-active .card-service,
.swiper-slide-duplicate-active .card-service {
    border-color: rgba(181, 142, 80, 0.4);
    transform: scale(1.08) translateY(-15px);
    /* Scale slightly larger for 'big' effect */
    box-shadow: 0 35px 70px rgba(181, 142, 80, 0.15);
    z-index: 10;
}

.card-service:hover::before,
.swiper-slide-active .card-service::before {
    opacity: 1;
}

.card-service:hover .service-icon-wrapper,
.swiper-slide-active .card-service .service-icon-wrapper,
.swiper-slide-duplicate-active .card-service .service-icon-wrapper {
    background: var(--gold);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(181, 142, 80, 0.3);
}

.card-service .icon-box.link {
    width: 54px;
    height: 54px;
    background: #f8f9fa;
    color: #B58E50;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-service:hover .icon-box.link,
.swiper-slide-active .card-service .icon-box.link {
    background: var(--navy-deep);
    color: #ffffff;
    border-color: var(--navy-deep);
    transform: translateX(5px);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.card-feature {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.card-feature img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.card-feature:hover {
    transform: translateX(50%);
    z-index: 2;
}

.card-feature .details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.card-feature:hover .details {
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card:hover .icon-box.accent-color-2 {
    color: var(--accent-color-2);
}

.card-pricing {
    color: var(--green);
    background: var(--primary);
    border-radius: 40px;
    border: 1px solid var(--green-dark);
    padding: 30px;
    height: 100%;
    text-align: center;
}

.card-pricing:hover {
    background: linear-gradient(180.36deg, #4A3B1F 75.9%, #B58E50 109.48%);
    transform: scale(1.02);
    border: 1px solid transparent;
    color: var(--primary);
}

.card-pricing:hover i {
    color: var(--green-neon);
}

.card-pricing:hover .sub-heading {
    border-color: var(--green-neon);
    color: var(--primary);
}

.card-pricing p,
.card-pricing span {
    color: var(--grey);
}

.card-pricing a span {
    color: var(--primary);
}

.card-pricing:hover p,
.card-pricing:hover span {
    color: var(--primary);
}

.card-pricing .custom-border-4 {
    border-bottom: 1px solid var(--green);
}

.card-pricing:hover .custom-border-4 {
    border-bottom: 1px solid var(--primary);
}

.card-pricing:hover .custom-border-3 {
    background-color: var(--green-dark);
    border: 5px solid var(--primary);
}


.card.card-pricing .social-item {
    background-color: var(--black-1);
    color: var(--primary);
    height: 23px;
    width: 23px;
    font-size: 12px;
}

.card-pricing-middle {
    transform: scale(1);
    flex: 1.00;
    color: white;
}

.card.card-pricing:hover .btn-accent-outline {
    background-color: var(--text-color);
    color: var(--primary);
}

.card.card-pricing .btn-accent-outline i {
    color: var(--text-color);
}

.card.card-pricing:hover .btn-accent-outline i {
    color: var(--primary);
}

.card-overlay .card-body {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    top: 10;
    transform-origin: bottom;
    transition: all 0.5s;
}

.card-overlay .team-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    top: 10;
    transform-origin: bottom;
    transition: all 0.5s;
    background: linear-gradient(180deg, rgba(74, 59, 31, 0) 70%, #B88E44 91.57%, #B88E44 111.18%);
    opacity: 0;
    transform: scaleY(0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;
    border-radius: 1rem;
}

.card-overlay:hover .team-overlay {
    opacity: 1;
    transform: scaleY(1);
}

.testimonial-container {
    background-color: var(--grey-accent);
    position: relative;
    padding: 50px;
    border-radius: 20px;
    color: var(--black-1);
    border: 1px solid var(--gray-outline);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 0.5rem;
    position: relative;
}

.testimonial-container:hover i {
    color: var(--gray);
}

.services-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

.features-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.feature-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--accent-color);
    color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box-middle {
    transform: scaleY(1.15) scaleX(1.05);
}

.feature-box-middle h3,
.feature-box-middle p {
    position: relative;
    transform: none;
    will-change: contents;
}

/* Class Cards */
.class-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.class-course {
    display: none;
}

.class-course.active {
    display: block;
}

.class-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    color: var(--accent-color);
    background-color: var(--background-color);
    align-items: center;
    height: 100%;
    padding: 1.5rem;
    transition: all 0.5s;
}

.class-card:hover {
    background-color: var(--accent-color-7);
    color: var(--accent-color-2);
}

.class-card:hover .icon-box {
    background-color: var(--accent-color-2);
    border: 1px solid var(--accent-color-2);
    color: var(--primary);

}

.class-card:hover .custom-border {
    background-color: var(--accent-color-7);
    border-color: var(--accent-color-7);
}

.class-info {
    color: var(--primary);
    margin: 20px;
    font-family: var(--font-1);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.class-speakers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.class-price {
    font-size: 1.2em;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: max-content;
}

.class-link {
    color: #ff3b3b;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.class-duration {
    display: none;
}

.class-duration.active {
    display: block;
}

/* Tab Navigation */

.tab-container {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    height: 100%;
}

.background-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-right: 15px;
    padding-left: 15px;
    height: 100%;
    width: 50%;
}

.tabs img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tab-content {
    padding-right: 15px;
    padding-left: 15px;
    min-height: 100%;
    width: 50%;
}

.tab {
    flex: 1;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.5s;
}

.tab.active {
    color: var(--primary);
    padding: 8px 10px;
    background-color: var(--accent-color);
    border-radius: 30px;
}

.tab .title-tab {
    font-size: 32px;
    font-weight: bold;
    padding: 30px;
}

.tab.active .title-tab {
    background-color: var(--primary);
}

.content {
    display: none;
    height: 100%;
    transition: all 0.5s;
}

.content.active {
    display: block;
}

.tab .content {
    display: none;
}

.tab.active {
    display: block;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolom */
    gap: 0;
    /* Jarak antar elemen 0 untuk mengatur garis */
    position: relative;
}

.grid-item-1 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-2 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-3 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-4 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-5 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-6 {
    border-left: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--text-color);
    --secondary-progress-color: var(--accent-color-2);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    border-radius: 3px;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 18px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    bottom: calc(100% + 0.5rem);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #f1c644;
}

.rating li.inactive {
    color: #d9d9d9;
}

.glass-effect {
    background: rgba(4, 4, 4, 0.70);
    backdrop-filter: blur(2.4px);
}

#player-container {
    width: 100%;
    height: 100%;
    margin-top: 5rem;
}

#player-bg-artwork {
    position: fixed;
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    background-image: url("https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
}

#player-bg-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: 2;
}

#player {
    position: relative;
    height: 100%;
    z-index: 3;
}

#player-track {
    width: auto;
    flex: 1 1 0px;
    height: 100%;
    padding: 13px 10px 10px 13px;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
}

#album-name {
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
}

#track-name {
    color: var(--accent-color);
    font-size: 13px;
    margin: 2px 0 13px 0;
}

#track-time {
    height: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

#current-time {
    float: left;
}

#track-length {
    float: right;
}

#current-time,
#track-length {
    color: var(--text-color);
    font-size: 11px;
    border-radius: 10px;
    transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
    color: var(--text-color);
    background-color: transparent;
}

#seek-bar-container,
#seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
}

#seek-bar-container {
    background-color: var(--text-color);
    cursor: pointer;
}

#seek-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
}

#s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

#seek-time,
#s-hover {
    background-color: #3b3d50;
}

#seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--accent-color);
    transition: 0.2s ease width;
    z-index: 1;
}

#player-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    padding: 16px;
    width: 100%;
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(17.5px);

}

#album-art {
    width: 115px;
    height: 115px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    border-radius: 50%;
    overflow: hidden;
}

#album-art.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: var(--accent-color-3);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
}

#album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}

#album-art img.active {
    opacity: 1;
    z-index: 1;
}

#album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

#buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    opacity: 0;
    z-index: 2;
}

#album-art img,
#buffer-box {
    transition: 0.1s linear all;
}

#album-art.buffering img {
    opacity: 0.25;
}

#album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
    opacity: 1;
}

#player-controls {
    width: auto;
    display: flex;
    gap: 2rem;
    height: 100%;
    float: right;
    overflow: hidden;
}

.control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
}

.button i {
    display: block;
    color: #d6dee7;
    font-size: 16px;
    text-align: center;
    line-height: 1;
}

.button,
.button i {
    transition: 0.2s ease all;
}

.button:hover i {
    color: #fff;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-btn-padding-x: 0;
}

.accordion .accordion-item {
    background-color: var(--primary);
    border-bottom: 1px solid var(--green);
    color: var(--black-1);
    outline: none;
    border-radius: 0px;
    overflow: hidden;
    backdrop-filter: blur(2.4px);
    border-top: none;
    border-right: none;
    border-left: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: var(--primary);
    border: none;
    color: var(--green);
    outline: none;
    border-radius: 0px !important;
    font-family: var(--font-1);
    font-size: 24px;
    font-weight: 600;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    color: var(--text-color);
}


.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23000000" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23000000" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>')
}

.accordion .accordion-button:not(.collapsed) {
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--green);
    background-color: var(--primary);
}


.accordion .accordion-body {
    color: var(--black);
    background-color: var(--gray-hover);
    font-size: 16px;
    font-family: var(--font-1);
    padding-inline: 0;
    padding: 30px;
    padding-top: 0;
}

.accordion.accent .accordion-body {
    background-color: transparent;
}

.accordion-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    overflow: visible;
}

.service-scroll {
    height: 710px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
    width: 3px;

}

/* Track */
.service-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Handle on hover */
.service-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-2);
}


@media only screen and (max-width:993px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1,
    .display-1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .banner-heading-refined {
        font-size: 1.7rem !important;
        line-height: 1.1;
    }


    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    button,
    a {
        font-size: 13px;
    }

    .text-banner {
        font-size: 50px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    .w-max-content {
        width: 100%;
    }

    .width-subscribe {
        width: 100%;
    }

    /* ---------------------------- */
    /* Header, Footer and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 120px;
    }

    .display-3.number {
        font-size: 1.8rem !important;
    }

    .display-5 {
        font-size: 1.1rem !important;
    }

    .fun-facts-section {
        margin-top: 0 !important;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .fun-facts-section .col {
        border-bottom: 1px solid rgba(184, 142, 68, 0.2);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .fun-facts-section .col:nth-child(even) {
        border-left: 1px solid rgba(184, 142, 68, 0.2);
    }

    .fun-facts-section .col:nth-last-child(-n+2) {
        border-bottom: none;
    }



    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    footer {
        height: 100%;
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .p-banner {
        color: var(--text-color);
    }


    .section {
        padding: 4em 2em 4em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
    }

    .padding-custom {
        padding-bottom: 0;
    }

    .floating-footer {
        margin: -3rem;
    }

    .floating-404 {
        margin: -3rem;
    }

    .floating-counter {
        margin-right: calc(-.5 * var(--bs-gutter-x));
    }

    .floating-cta {
        position: initial;
    }

    .cta-floating-box {
        padding: 1.5rem !important;
        border-radius: 30px !important;
        margin-top: 2rem;
    }

    .cta-floating-box h5 {
        font-size: 1.2rem !important;
    }


    .radius-partner {
        border-radius: 30px;
    }

    .border-testimonial {
        border-right: none;
    }

    .accordion-item {
        flex: 1 1 100%;
    }

    /* Ketika ada item yang di-hover */
    .accordion-item:hover {
        flex: 1 1 100%;
    }

    /* Jika ada item yang di-hover, semua accordion lainnya memiliki ukuran yang sama */
    .accordion-container:hover .accordion-item {
        flex: 1 1 100%;
    }

    .accordion-container:hover .accordion-item:hover {
        flex: 1 1 100%;
    }

    .accordion-item .asset {
        height: 100%;
        transition: all 0.5s;
        display: none;
        position: absolute;
        top: 9rem;
        right: 4rem;
        z-index: 0;
    }

    .service-container {
        background-color: transparent;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }

    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .tabs.studio {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 2;
        background: rgba(35, 31, 32, 0.3);
        backdrop-filter: blur(17.5px);
        padding: 30px;
        align-items: center;

    }

    .tabs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .tab-content {
        position: relative;
        left: 0;
    }

    .tab-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    .class-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    footer .d-flex.flex-column {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        padding: 0;
    }

    footer .r-container>.row>.col-lg-4,
    footer .r-container>.row>.col-lg-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .logo-container {
        max-width: 150px;
        margin-bottom: 20px;
    }


    footer .link.d-flex.flex-row {
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 1.5rem !important;
        margin-top: 1rem;
    }


    footer .list {
        padding: 0 0 0 0;
    }

    .footer {
        position: relative;
    }

    .footer-img {
        position: relative;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .padding-swiper {
        position: relative;
        padding-inline: 2rem;
    }

    .swiperImage {
        padding-bottom: 0;
    }

    .service-scroll {
        padding-right: 1rem;
    }

    .swiper-button-next.accent,
    .swiper-button-prev.accent {
        top: 12rem;
        height: 80px;
        width: 80px;
        border: 5px solid var(--primary);
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 12rem;
        height: 80px;
        width: 80px;
        border: 5px solid var(--primary);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px;
    }

    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        top: 28rem;
        width: 40px;
        height: 40px;
    }

    /* Center the buttons horizontally */
    .mySwiper .swiper-button-next {
        right: 0;
        transform: translateY(20px);
    }

    .mySwiper .swiper-button-prev {
        left: 70%;
        transform: translateY(20px);
    }

    .swiperStep2 .swiper-button-next::after,
    .swiperStep2 .swiper-button-prev::after {
        font-size: 16px;
    }

    .swiperStep2 .swiper-button-next,
    .swiperStep2 .swiper-button-prev {
        width: 50px;
        height: 50px;
        border: 3px solid var(--primary);
    }

    /* Center the buttons horizontally */
    .swiperStep2 .swiper-button-next {
        right: 7%;
        transform: translateY(20px);
    }

    .swiperStep2 .swiper-button-prev {
        left: 7%;
        transform: translateY(20px);
    }

    .icon-box.link {
        font-size: 25px;
        padding: 25px;
    }

    .tab-content {
        width: 100%;
    }

    .tabs {
        width: 100%;
    }

    .devider-progress {
        display: none;
    }

    .devider {
        height: 5rem;
        margin-left: 2rem;
    }

    .request-loader {
        height: 80px;
        width: 80px;
    }

    .icon-box-2 {
        font-size: 40px;
    }

}

/* Custom Premium FAQ Card Layout */
.custom-card-accordion .accordion-item {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    /* Ensure background colors abide by border-radius */
    transition: all 0.3s ease;
}

.custom-card-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.25rem 1.75rem;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    color: #2C3E50 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Active State */
.custom-card-accordion .accordion-button:not(.collapsed) {
    background-color: var(--gold) !important;
    color: #ffffff !important;
    border-radius: 12px 12px 0 0 !important;
}

.custom-card-accordion .accordion-button:focus {
    box-shadow: none !important;
}

/* + and - Icons */
.custom-card-accordion .accordion-button::after {
    background-image: none !important;
    content: '-';
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    /* White icon on active block */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.3s ease;
}

.custom-card-accordion .accordion-button.collapsed::after {
    content: '+';
    color: #333333;
    /* Dark icon on inactive block */
}

/* Body Styling */
.custom-card-accordion .accordion-body {
    background-color: #ffffff;
    color: #555555;
    border: none !important;
    padding: 1.25rem 1.75rem 1.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0 0 12px 12px !important;
}

/* Premium FAQ Enhancements */


.faq-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 1.5rem;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(184, 142, 68, 0.15) !important;
}

.faq-accordion-container .accordion-button {
    box-shadow: none !important;
}


/* Custom Premium FAQ Card Layout */
.custom-card-accordion .accordion-item {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    /* Ensure background colors abide by border-radius */
    transition: all 0.3s ease;
}

.custom-card-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.25rem 1.75rem;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    color: #2C3E50 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Active State */
.custom-card-accordion .accordion-button:not(.collapsed) {
    background-color: var(--gold) !important;
    color: #ffffff !important;
    border-radius: 12px 12px 0 0 !important;
}

.custom-card-accordion .accordion-button:focus {
    box-shadow: none !important;
}

/* + and - Icons */
.custom-card-accordion .accordion-button::after {
    background-image: none !important;
    content: '-';
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    /* White icon on active block */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.3s ease;
}

.custom-card-accordion .accordion-button.collapsed::after {
    content: '+';
    color: #333333;
    /* Dark icon on inactive block */
}

/* Body Styling */
.custom-card-accordion .accordion-body {
    background-color: #ffffff;
    color: #555555;
    border: none !important;
    padding: 1.25rem 1.75rem 1.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0 0 12px 12px !important;
}

/* Premium FAQ Enhancements */


.faq-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 1.5rem;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(184, 142, 68, 0.15) !important;
}

.faq-accordion-container .accordion-button {
    box-shadow: none !important;
}

.faq-accordion-container .accordion-button:not(.collapsed)::after {
    color: #ffffff !important;
}

.w-fit-content {
    width: fit-content;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-gold-soft {
    background: rgba(184, 142, 68, 0.1) !important;
}

.text-navy {
    color: var(--navy-deep) !important;
}

/* Page Breadcrumb Section */
.page-breadcrumb {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%),
        url('../image/hero-finance.png') center/cover no-repeat;
    border-bottom: 1px solid rgba(184, 142, 68, 0.1);
}

.page-breadcrumb h2 {
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a {
    color: var(--gold) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--navy-light) !important;
    opacity: 0.6;
}

@media (max-width: 991.98px) {
    .page-breadcrumb {
        padding: 140px 0 70px;
    }
}

/* Footer Perfection Styles */
.footer-link {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--gold) !important;
    padding-left: 5px;
}

.hover-gold:hover {
    color: var(--gold) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.social-item:hover {
    background: var(--gold) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* --- Mobile Responsiveness Excellence --- */
@media (max-width: 1199.98px) {

    .mobile-nav-menu .nav-link {
        padding-block: 15px !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
        font-size: 1.15rem !important;
        font-weight: 600 !important;
    }

    .mobile-nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-nav-menu .btn-join-us {
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        padding-block: 12px !important;
    }
}

@media (max-width: 991.98px) {
    .main-logo {
        max-height: 55px !important;
        margin: 0 auto;
    }

    .navbar .container-fluid {
        padding-inline: 15px !important;
        border-radius: 12px !important;
    }

    .section {
        padding: 3em 1.5em !important;
    }

    .hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-link:hover {
        padding-left: 0;
    }

    .social-container {
        justify-content: center !important;
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Newsletter refinement */
    .input-group {
        max-width: 100% !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column !important;
        gap: 10px;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .input-group input {
        border-radius: 12px !important;
        text-align: center;
        background: #ffffff !important;
        border: 1px solid var(--gold-soft) !important;
        padding: 12px !important;
        width: 100% !important;
    }

    .input-group button {
        border-radius: 12px !important;
        width: 100% !important;
        padding: 12px !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .main-logo {
        max-height: 25px !important;
    }

    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .display-1 {
        font-size: 2.15rem !important;
        line-height: 1.05 !important;
        letter-spacing: -1.5px !important;
        font-weight: 800 !important;
        margin-bottom: 2.5rem !important;
    }

    .lead {
        display: none !important;
    }


    .navbar-toggler {
        padding: 0;
    }

    footer .section {
        padding: 2.5em 1em !important;
    }

    footer .rounded-5 {
        border-radius: 25px !important;
        padding: 1.5rem !important;
    }

    .hero-mobile-pt {
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-content-mobile {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        /* Absolute Depth Scrim for total legibility */
        background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%) !important;
        padding-top: 50px !important;
        padding-bottom: 30px !important;
        z-index: 5;
    }

    .hero-section .position-relative.overflow-hidden {
        min-height: 480px !important;
        height: 85vh !important;
    }

    .hero-text-content {
        padding-inline: 15px !important;
    }

    .btn-accent,
    .btn-outline-white {
        width: fit-content !important;
        margin-bottom: 8px;
        padding-block: 8px !important;
        padding-inline: 20px !important;
        font-size: 0.85rem !important;
        border-width: 1.5px !important;
    }

}


.faq-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .faq-image {
        height: 320px !important;
    }
}

/* Hero Banner Container Responsiveness */
.hero-banner-container {
    height: 90vh;
    min-height: 700px;
}

@media (max-width: 991.98px) {
    .hero-banner-container {
        height: 70vh;
        min-height: 600px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner-container {
        height: 60vh;
        min-height: 450px;
    }

    .btn-join-us-mobile {
        background: linear-gradient(135deg, #B88E44 0%, #E2C582 50%, #B88E44 100%);
        color: var(--navy-deep) !important;
        border: none;
        font-size: 0.85rem;
        padding: 8px 18px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-join-us-mobile:hover {
        transform: translateY(-2px);
    }
}
/* --- Process Section & Testimonials --- */
.text-gold-gradient {
    background: linear-gradient(135deg, #B88E44 0%, #E2C582 50%, #B88E44 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback for transparency */
    display: inline; /* Use inline for wrapping */
}
.bg-gold-gradient {
    background: linear-gradient(135deg, #B88E44 0%, #E2C582 50%, #B88E44 100%);
}
.sub-heading {
    display: inline-block;
    background: var(--gold-soft);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--gold);
    margin-bottom: 1rem;
}
.sub-heading h6 {
    color: var(--gold);
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.process-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 142, 68, 0.1);
    border-color: var(--gold-soft);
}
.process-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gold-soft);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.process-card.dark {
    background: var(--navy-deep);
    color: #fff;
    border: none;
}
.process-card.dark .process-icon-circle {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.process-card.dark h5 { color: #fff; }

.process-graphic {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 30px;
}

/* Graphic 1: Bar Chart */
.bar-chart-graphic {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.chart-bar {
    width: 20px;
    background: var(--gold);
    border-radius: 4px;
    opacity: 0.3;
}
.chart-bar.active { opacity: 1; }
.bar-1 { height: 40px; }
.bar-2 { height: 70px; }
.bar-3 { height: 55px; }

/* Graphic 2: Timeline */
.timeline-graphic {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.timeline-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.timeline-line {
    width: 50px;
    height: 2px;
    background: var(--gold-soft);
}

/* Graphic 3: Checkmark */
.check-graphic {
    width: 80px;
    height: 80px;
    background: var(--gold-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    transform: rotate(-10deg);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(184, 142, 68, 0.15);
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy-deep);
    line-height: 1.8;
}
.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--gold-soft);
}

