/* Fonts */
:root {
    --default-font: "Noto Sans JP", "Noto Color Emoji";
    --heading-font: "Noto Sans JP", ;
    --nav-font: "Noto Sans JP", sans-serif;
}

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: lightgreen;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: lightgreen;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.white-background {
    --background-color: #fff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: blueviolet;
    --default-color: #37517e;
    --heading-color: #37517e;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

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

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.bubbleflame {
    margin: 0 auto;
    background: #f3f0ff;
    border-radius: 42px;
    padding: 70px 70px 90px;
    position: relative;
}

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

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

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

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

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

    .header .navmenu {
        order: 3;
    }
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(40, 58, 90, 0.9);
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .navmenu .megamenu {
        position: static;
    }

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

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

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

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

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative
}

.copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    text-align: left;
}


.footer-right {
    text-align: right;
    white-space: nowrap;
}

.footer-left .logo {
    height: 25px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

@media (max-width: 992px) {
    .section-title {
        padding-bottom: 30px;
    }
}

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

@media (max-width: 992px) {
    .section-title h2 {
        font-size: 28px;
    }
}

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

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

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

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

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

.hero h1,
.hero h2,
.hero h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero p {
    color: var(--default-color);
    margin: 5px 0 30px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.emphasis sup {
    font-size: 0.45em;
    vertical-align: super;
    margin-left: 2px;
}

.headline-band {
    display: inline-block;
    background: rgba(38, 38, 120, .38);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 22px;
}


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

    .hero h2 {
        font-size: 26px;
    }

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

    .headline-band {
        font-size: 20px;
    }

}

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

    .hero h2 {
        font-size: 26px;
    }

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

    .headline-band {
        font-size: 20px;
    }

}


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

    .hero h2 {
        font-size: 20px;
    }

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

    .headline-band {
        font-size: 16px;
    }

}

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

    .hero h2 {
        font-size: 20px;
    }

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

    .headline-band {
        font-size: 16px;
    }

}

.cta-wrapper p i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #16a34a);
    color: white;
    font-size: 16px;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35);
    transition: transform 0.2s ease;
}

.cta-wrapper p i:hover {
    transform: scale(1.08);
}

.cta-wrapper p {
    align-items: center;
    margin-top: 12px;
    font-size: 16px;
}

.tel .number {
    font-weight: 700;
    font-size: 20px;
}

.sub-note-right {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.sub-note-right i {
    margin-right: 6px;
    color: #34d399;
}

/*--------------------------------------------------------------
# sub page hero
--------------------------------------------------------------*/
:root {
    --wavecolor: blueviolet;
}

.content {
    margin: 0 auto;
    padding: 0 20px;
}

.hero2 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 78vh;
    padding: 140px 0 100px;
    background:
        radial-gradient(circle at top left,
            rgba(155, 77, 202, 0.18),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(236, 72, 153, 0.12),
            transparent 30%),
        linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero2 h1 {
    margin-bottom: 28px;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
}

.hero2 .emphasis {
    background: linear-gradient(to right, #c084fc, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero2 p {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.hero-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {

    .hero2 {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero2 h1 {
        line-height: 1.2;
    }

    .hero2 p {
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-points {
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-points span {
        font-size: 13px;
        padding: 8px 14px;
    }

}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 40px 0;
}

.clients .section-title {
    padding-bottom: 30px !important;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-logos a {
    display: flex;
    justify-content: center;
}

.logo-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-box {
        height: 90px;
    }

    .logo-box img {
        width: 95%;
    }
}

.clients-logos a:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .bubbleflame {
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .work-process .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

.work-process .steps-item {
    background: white;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.work-process .steps-item:hover .steps-number {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.work-process .steps-image {
    position: relative;
    height: 280px;
}

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

@media (max-width: 992px) {
    .work-process .steps-image img {
        width: 80%;
        height: 80%;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }
}

.work-process .steps-content {
    position: relative;
    padding: 40px 30px 30px;
}

.work-process .steps-content .steps-number {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.work-process .steps-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 15px;
}

.work-process .steps-content p {
    font-size: 15px;
    color: #444444;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .work-process .steps-image {
        height: 240px;
    }

    .work-process .steps-content {
        padding: 35px 25px 25px;
    }

    .work-process .steps-content h3 {
        font-size: 22px;
    }
}

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .bubbleflame {
    max-width: 1000px;
}

@media (max-width: 1024px) {
    .pricing .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

.pricing .bubble-deco {
    position: absolute;
    top: -75px;
    left: -60px;
    width: 200px;
    height: auto;
    z-index: 2;
}

@media (max-width: 768px) {
    .pricing .bubble-deco {
        display: none;
    }
}

.pricing .pricing-item {
    background-color: var(--contrast-color);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border: 2px solid #D6CCFF;
    box-shadow: 0 8px 24px rgba(50, 30, 120, .08);
    border-radius: 24px;
    padding: 60px 40px;
    color: #222;
}

.pricing h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1d2246;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

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

.pricing h4 span {
    color: var(--default-color);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    text-align: left;
    line-height: 20px;
}

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

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

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

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

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

.pricing .featured {
    border-top-color: var(--accent-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }

    .pricing .pricing-item {
        padding: 60px 20px;
    }
}

.pricing-sub-note {
    color: #444444;
}

.pricing .featured {
    position: relative;
}

.pricing .featured .popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 15px 6px 15px;
    margin: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

.pricing-option {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.pricing-option-title {
    display: flex;
    align-items: center;

    margin-bottom: 12px;

    font-size: 0.95rem;
    font-weight: 700;
    color: #495057;
    letter-spacing: 0.02em;
}

.pricing-option-title i {
    color: #0d6efd;
    font-size: 1rem;
}

.pricing-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0;
    padding: 14px 16px;

    background: #f8f9fa;
    border: 1px solid #edf0f2;
    border-radius: 12px;

    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;

    line-height: 1.6;
}

.pricing-option-note {
    display: inline-block;

    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;

    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 999px;

    padding: 4px 10px;

    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .pricing-option {
        margin-top: 18px;
        padding-top: 16px;
    }

    .pricing-option-item {
        padding: 12px 14px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .pricing-option-note {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(155, 77, 202, 0.08);
    color: #7b4ce2;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.more-btn:hover {
    background: rgba(155, 77, 202, 0.14);
    color: #6a3fd0;
}

.price-cell {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1d2246;
}

.price-cell small {
    font-size: 14px;
    font-weight: 500;
    color: #7b8199;
}

@media (max-width: 768px) {
    .pricing-comparison {
        border-radius: 20px;
    }

    .pricing-comparison thead th {
        padding: 24px 18px;
    }

    .pricing-comparison tbody th,
    .pricing-comparison tbody td {
        padding: 16px 14px;
        font-size: 13px;
    }

}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .bubbleflame {
    max-width: 1150px;
}

@media (max-width: 1024px) {
    .faq-2 .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

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

.faq-2 .faq-container .faq-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: white;
}

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

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

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

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

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

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

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

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

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

.faq-2 .bubble-deco {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 2;
    top: -65px;
    right: -30px;
}

@media (max-width: 768px) {
    .faq-2 .bubble-deco {
        display: none;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .bubbleflame {
    max-width: 980px;
}

@media (max-width: 1024px) {
    .contact .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

.contact .bubble-deco {
    position: absolute;
    top: -75px;
    left: -60px;
    width: 200px;
    height: auto;
    z-index: 2;
}

@media (max-width: 768px) {
    .contact .bubble-deco {
        display: none;
    }
}

.contact .form-label {
    font-weight: 800;
}

.contact .form-item {
    display: none;
}

/*--------------------------------------------------------------
# empathy section
--------------------------------------------------------------*/
.empathy .bubbleflame {
    max-width: 1180px;
}

@media (max-width: 1024px) {
    .empathy .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

/*--------------------------------------------------------------
# cta button
--------------------------------------------------------------*/
.cta-wrapper {
    text-align: center;
    font-family: sans-serif;
    margin: 2em 0;
}

.cta-caption {
    color: #6d6dfb;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    min-width: 300px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(34, 197, 94, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-position 0.5s ease;
    background-size: 200% 100%;
    background-position: left center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22),
        0 4px 14px rgba(34, 197, 94, 0.45);
    background-position: right center;
    color: #fff;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #6d6dfb;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid #6d6dfb;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background: #6d6dfb;
    color: white;
}

.icon2 {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}

.icon2 i {
    color: var(--accent-color);
    font-size: 36px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .bubbleflame {
    max-width: 980px;
}

@media (max-width: 1024px) {
    .features-details .bubbleflame {
        max-width: 900px;
        padding: 50px 10px 70px;
    }
}

.features-details .features-item+.features-item {
    margin-top: 60px
}

.features-details .features-item img {
    border-radius: 15px
}

.issue-card {
    text-align: center;
    padding: 20px 15px;
    height: 100%;
    background: #fff;
    border: 2px solid #1d2246;
    border-radius: 28px;
}

.cloud-balloon {
    position: relative;
    display: inline-flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 110px;
    background: #153d6a;
    border: 3px solid #153d6a;
    border-radius: 60px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.7;
    color: #fff;
}

.issue-image {
    margin-top: 25px;
    text-align: center;
}

.issue-image img {
    height: 200px;
    max-width: 100%;
}

.issue-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

section.solution-callout {
    position: relative;
    overflow: visible !important;
    padding: 60px 40px;
    background: #fff !important;
}

section.solution-callout::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 50px solid #fff !important;
}

.solution-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.solution-person img {
    width: 190px;
    max-width: 100%;
}

.solution-message {
    background: #003f7d;
    color: #fff;
    padding: 34px 55px;
    border-radius: 24px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 992px) {
    .solution-message {
        padding: 10px 20px;
        border-radius: 24px;
        font-size: 26px;
    }
}

.reason-box {
    background: #f7f5f7;
    border: 2px solid #1d2246;
    border-radius: 28px;
    padding: 42px 44px;
}

.reason-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    color: darkviolet;
    margin-bottom: 22px;
}

.reason-box h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1d2246;
}

.reason-box p {
    font-size: 21px;
    margin-bottom: 26px;
    color: #1d2246;
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(2, 420px);
    justify-content: center;
    gap: 36px;
    margin: 0 auto;
}

@media(max-width:768px) {
    .issue-grid {
        grid-template-columns: 1fr;
    }
}

.issue-panel {
    width: 420px;
    background: white;
    border: 2px solid #1e2248;
    border-radius: 18px;
    padding: 38px 32px;
    text-align: center;
    color: black;

}

.issue-icon img {
    height: 150px;
    margin-bottom: 25px;
}

.issue-panel h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 28px;
    color: #1d2246;
}

.issue-panel p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

.issues-wrap {
    padding: 90px 20px;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    background: #EEE9FF;
    color: #5B3DBA;
    border: 1px solid #D8CCFF;
}

.chip i {
    font-size: 14px;
}


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

}

/*--------------------------------------------------------------
# thnaks Section
--------------------------------------------------------------*/
.thanks {
    padding: 80px 0;
    margin: 0 auto;
}

.thanks .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.thanks .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thanks {
        padding: 60px 0;
    }
}


/*--------------------------------------------------------------
# scroll down animation
--------------------------------------------------------------*/

.scroll {
    padding-top: 60px;
    position: relative;
    text-align: center;
    color: white;
    z-index: 900;
}

.scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    content: "";
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    border-color: white;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: rotate(-45deg) translate(-20px, 20px);
    }

    100% {
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Plan Section
--------------------------------------------------------------*/

.pricing-comparison {
    background: #ffffff;
    border: 1px solid rgba(214, 204, 255, 0.5);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(80, 60, 180, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.03);
}

.pricing-comparison table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-comparison thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.92));
    backdrop-filter: blur(10px);
}

.pricing-comparison thead th {
    padding: 34px 24px;
    border-bottom: 1px solid #eef0f6;
    vertical-align: middle;
}

.pricing-comparison thead th:first-child {
    min-width: 260px;
}

.pricing-comparison .section-row th {
    padding: 18px 24px;
    background: #f7f5ff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6b4fd3;
}

.pricing-comparison .section-row td {
    padding: 18px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: #f7f5ff;
    color: #6b4fd3;
    border: none;
}

.pricing-comparison tbody tr {
    transition: background 0.2s ease;
}

.pricing-comparison tbody tr:hover {
    background: rgba(155, 77, 202, 0.025);
}

.pricing-comparison tbody th,
.pricing-comparison tbody td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f3f8;
    vertical-align: middle;
}

.pricing-comparison tbody th {
    width: 32%;
    font-size: 15px;
    font-weight: 600;
    color: #2d3552;
}

.pricing-comparison tbody td {
    font-size: 15px;
    color: #4d5875;
}

.say-yes::before {
    vertical-align: middle;
    display: inline-block;
    content: "\F26A";
    /* bi-check-circle */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #388da8;
}

.say-yes,
.say-yes:before {
    height: 1.5rem;
    width: 1.5rem;
}

.say-yes {
    position: relative;
    display: block;
    margin: 0 auto;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.table.table-lg td,
.table.table-lg th {
    padding: 1rem .75rem;
}

.table.table-lg td,
.table.table-lg th {
    padding: 1rem .75rem;
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}

/* header fix */
.table-responsive-lg {
    max-height: 600px;
    overflow-y: auto;
}

.table-lg {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    width: 100%;
}

th,
td {
    padding: 20px;
    border: 1px solid #333;
}

thead th {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
}

.featured-services .service-item {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
}


.featured-services .service-item h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--heading-color);
    margin: 0;
    flex-grow: 1;
}

.featured-services .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .fluid-table thead {
        display: none;
    }

    .fluid-table tr {
        display: block;
    }

    .fluid-table td {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        clear: both;
        width: 100% !important;
        max-width: none !important;
        white-space: normal !important;
        text-align: right;
    }

    .fluid-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }
}

/*--------------------------------------------------------------
# Option Section
--------------------------------------------------------------*/

.option {
    padding-bottom: 20px;
}

.option .tab-content .tab-pane .d-flex h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.option .tab-content .tab-pane .d-flex h4 i {
    font-size: 1.5rem;
    color: blueviolet
}

.option .tab-content .tab-pane p {
    font-size: 1rem;
    color: #3d4348;
    margin-top: 10px;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.option .tab-content .tab-pane p.fst-italic+.d-flex {
    margin-top: 20px;
}

.option .service-item {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
}


.option .service-item h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--heading-color);
    margin: 0;
    flex-grow: 1;
}

.option .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.option-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.08);
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}