@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: "Microsoft JhengHei Bold";
    src: url('../fonts/d5853a95968c50d209319cc9479f6aab.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Microsoft JhengHei Regular";
    src: url('../fonts/Microsoft-JhengHei-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --primary-color: #2686C7;
    --secondary-color: #C5E8FF;
    --dark-blue: #141341;
    --bg-color: #F1F9FF;
    --font-family: 'Outfit', sans-serif;
    --font-family-bold: 'Microsoft JhengHei Bold', sans-serif;
    --font-family-regular: 'Microsoft JhengHei Regular', sans-serif;
    --container-width: 1276px;
    --padding-standard: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
}

.container {
    max-width: var(--container-width);
    margin: auto;
    padding: 0 var(--padding-standard);
}

h1 {
    font-family: var(--font-family-bold);
    font-size: clamp(30px, 3.5vw, 45px);
}

h2 {
    font-family: var(--font-family);
    font-size: clamp(27px, 3.25vw, 43px);
    font-weight: 500;
}

/* Top bar */
.top-bar {
    background: var(--dark-color);
    color: var(--light-color);
    font-size: 15px;
}

.top-bar a {
    color: var(--light-color);
    text-decoration: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 111;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Nav */
.nav {
    display: flex;
    gap: 18px;
    font-family: var(--font-family-regular);
}

.nav a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav a.active {
    color: var(--primary-color);
}

.nav a:hover {
    color: var(--primary-color);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
}

.footer {
    background: #EFF8FF;
    padding: 60px 0 20px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 30px;
}

.footer-desc {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: #dcdcdc;
    margin: 30px 0;
}

/* Grid */
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-col h4 {
    font-family: var(--font-family-bold);
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
}

.footer-col a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    color: #000;
    margin-top: 18px;
    font-family: var(--font-family-regular);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-col a.view-more {
    display: inline-block;
    text-decoration: underline;
}

/* Contact */

.footer-col .contact-label {
    font-weight: 600;
    margin-top: 10px;
}

.footer-col p {
    font-size: 15px;
    margin-bottom: 12px;
}

/* Social */
.socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.socials img {
    width: 22px;
    height: auto;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* hero */
.hero {
    position: relative;
    background: #F1F9FF;
    overflow: hidden;
    padding: 65px 0 0;
}

/* layout */
.hero-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

/* content */
.hero-content {
    position: relative;
    max-width: 600px;
    padding-block: var(--padding-standard);
}

/* bg circle */
.hero-bg-circle {
    position: absolute;
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
    width: 495px;
    opacity: 0.5;
    z-index: -1;
}

.hero-content h1 {
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--dark-color);
    line-height: 1.5;
    margin-bottom: 25px;
}

/* buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 25px;
    border-radius: 35px;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    background: #F3FAFF;
}

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.btn.outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 690px;
    width: 100%;
}

.capability {
    padding: 80px 0;
}

/* Top */
.cap-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.cap-content {
    max-width: 455px;
}

.cap-content h2 {
    margin-bottom: 18px;
}

.cap-content p {
    font-size: 19px;
    color: #000;
    line-height: 1.4;
}

.cap-image img {
    width: 420px;
    border-radius: 14px;
}

/* Slider */
/* .cap-slider {
    overflow: visible;
} */

.cap-card {
    background: #fff;
    border-radius: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.cap-card .icon {
    width: 40px;
    margin-bottom: 15px;
}

.cap-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 14px;
    line-height: 1.5;
}

.cap-card p strong,
.cap-card p b {
    color: #2C2B72;
}

.cap-card a {
    margin-top: auto;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
    color: #000;
}

.strategy {
    padding: 0px 0 75px;
}

/* CTA */
.strategy-cta {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
    background: #17174a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    color: #fff;
}

.cta-content h2 {
    font-size: clamp(26px, 3vw, 39px);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-image img {
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    display: block;
}

/* Button tweak */
.btn.light {
    border: 1px solid #fff;
    backdrop-filter: blur(30px);
    background: hsl(0deg 0% 100% / 15%);
    -webkit-backdrop-filter: blur(30px);
    color: #fff;
}

/* Main Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.strategy-image img {
    width: 100%;
    border-radius: 12px;
}

/* Content */
.strategy-content h2 {
    line-height: 1.2;
    margin-bottom: 25px;
}

.strategy-content .desc {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 27px;
    line-height: 1.6;
}

.strategy-content .sub {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

/* Points */
.points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.point {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.icon-wrap {
    width: 45px;
    height: auto;
}

.icon-wrap img {
    width: 100%;
}

.point h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
}

.point p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    max-width: 405px;
}

/* Process Section */
.process-section {
    padding-bottom: 70px;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.process-section p {
    text-align: center;
    margin-bottom: 20px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 1px;
    background: #707070;
    z-index: -1;
}

.icon-circle {
    border: 1px solid #707070;
    margin: 0 auto;
    max-width: 118px;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: #fff;
}

.icon-circle img {
    max-width: 47px;
}

.process {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.rel-text h4 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.rel-text p {
    font-size: 15px;
    max-width: 169px;
    color: rgba(0, 0, 0, 0.75);
}

/* Testimonials */
.testimonials {
    background: #F1F9FF;
    padding: 50px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(27px, 3.05vw, 41px);
    margin-bottom: 60px;
    max-width: 560px;
    margin-inline: auto;
}

.star-rating {
    color: #ffbc00;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
    height: 100%;
    margin-bottom: 70px;
}

.testimonial-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-text p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.testimonial-text h5 {
    margin-top: auto;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 8px;
}

.testimonial-text h6 {
    font-size: 20px;
    font-weight: 300;
}

span.swiper-pagination-bullet {
    height: 10px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 68px;
    background: #3FBCB5;
    border-radius: 22px;
}

/* Blog Section */

.blog {
    padding: 65px 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 15px;
}

.blog h2+p {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.blog-card,
.blog-card img {
    max-width: 100%;
    width: 100%;
}

.blog-card .date {
    margin-top: 20px;
    font-size: 15px;
}

.blog-card .date svg {
    max-width: 16px;
}

.blog-grid h4 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
    padding-right: 35px;
}

.read {
    color: #2C2B72;
    font-size: 20px;
    text-decoration: none;
}

/* =========================================
   CTA Cards Section
========================================= */
.cta-cards-section {
    padding: 20px 0 60px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cta-card {
    padding: 30px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cta-card h2 {
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 100%;
}

/* Dark Card Specifics */
.dark-card {
    background-color: #274194;
    color: var(--light-color);
}

.btn-outline-white {
    border: 1px solid var(--light-color);
    color: var(--light-color);
    background: transparent;
    border-radius: 35px;
    padding: 12px 25px;
    font-size: 15px;
}

.btn-outline-white:hover {
    background: #2686c7;
    border-color: #2686c7;
}

/* Light Card Specifics */
.light-card {
    background-color: var(--light-color);
    border: 1px solid #2781cc;
    /* Matched from image */
    color: var(--dark-color);
}

.light-card h2 {
    color: var(--primary-color);
}

.btn-solid-dark {
    background: #274194;
    color: var(--light-color);
    border: 1px solid #274194;
    border-radius: 35px;
    padding: 12px 25px;
    font-size: 15px;
}

a.btn.btn-outline-white img {
    max-width: 14px;
    margin-left: 10px;
}

a.btn.btn-solid-dark img {
    max-width: 14px;
    margin-left: 10px;
}

.btn-solid-dark:hover {
    background: #2686c7;
    border-color: #2686c7;
}

.cta-card a {
    margin-top: auto;
}

/* =========================================
   FAQ Section
========================================= */
.faq-section {
    padding: 20px 0 100px;
}

.faq-section.contact {
    padding: 65px 0 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 100px;
}

.faq-content h2 {
    font-family: var(--font-family);
    font-size: clamp(27px, 3.05vw, 41px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #333;
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
}

.accordion-item {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    user-select: none;
}

.accordion-title {
    font-size: 21px;
    font-weight: 500;
    color: #000;
}

.accordion-icon {
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
}

.accordion-body {
    display: none;
    padding: 0 25px 25px 25px;
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.accordion-item.active {
    background-color: #E3F4FF;
    border-color: var(--primary-color);
}

/* Training page */
.hero.training-banner {
    padding-top: 0;
}

.hero.training-banner .hero-content {
    max-width: 655px;
}

.hero.training-banner .hero-content p {
    font-size: 18px;
}

.enable-slider-section h2+p {
    line-height: 1.5;
}

.training-banner .hero-image img {
    max-width: clamp(500px, 38.0208333vw, 730px);
    width: 100%;
}

.training-banner .hero-bg-circle {
    transform: translateY(-50%);
}

/* left-image-right-content */
.left-image-right-content {
    padding: 80px 0;
}

.left-image-right-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.left-image-right-content-grid h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.left-image-right-content-grid h5+p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.strategy-content .btn {
    margin-top: 16px;
}

/* LMS Section */
.lms-solutions {
    padding: 20px 0 50px;
}

.lms-solutions h2,
.lms-solutions h2+p {
    text-align: center;
    margin-bottom: 25px;
    max-width: 965px;
    margin-inline: auto;
}

.lms-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
}

.lms-solution-grid ul {
    list-style: none;
}

.icon-title img {
    max-width: 47px;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.icon-title h5 {
    font-size: 19px;
    font-weight: 600;
}

.lms-solution ul li {
    line-height: 1.35;
    font-size: 17px;
}

.buttons-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

/* =========================================
   Enable Execution Section
========================================= */
.enable-execution-section {
    background-color: #F1F9FF;
    padding: 55px 0;
    margin-bottom: 30px;
}

.ee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.ee-header h2 {
    line-height: 1.2;
    color: #000;
}

/* Custom Outlined Button for this section */
.btn.ee-btn-outline {
    border: 1px solid #5aa5d9;
    /* Lighter blue border */
    color: #3b88c3;
    background: transparent;
    padding: 12px 30px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.ee-btn-outline:hover {
    background: #3b88c3;
    color: #fff;
}

/* Grid Layout */
.ee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 95px;
}

.ee-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ee-card:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background-color: #d1dbe8;
}

.ee-icon {
    height: 60px;
    margin-bottom: 25px;
}

.ee-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #000;
}

.ee-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.ee-link {
    font-size: 19px;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.ee-link:hover {
    color: var(--primary-color);
}

/* Enable Slider Section */

.enable-slider-section {
    padding: 55px 0 0;
    margin-bottom: 30px;
}

.enable-slider-section h2,
.enable-slider-section h2+p {
    text-align: center;
    max-width: 1152px;
    margin-bottom: 30px;
}

.enable-slider-section .slider-container {
    margin-top: 60px;
}

/* Business Content */
.left-image-right-content {
    padding: 50px 0;
}

.business-sales-consulting .left-image-right-content-grid h5,
.approach-sales-consulting .left-image-right-content-grid h5 {
    color: #2C2B72;
}

.business-sales-consulting .business-content p,
.approach-sales-consulting .approach-content p {
    font-size: 19px;
    margin-bottom: 20px;
}

.business-sales-consulting .left-image-right-content-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 10px;
    align-items: end;
}

.container-single-side {
    max-width: 1600px;
    margin-left: auto;
}

.approach-sales-consulting .left-image-right-content-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: center;
}

.approach-content {
    padding-inline: 20px;
}

.business-content h2,
.approach-content h2 {
    margin-bottom: 20px;
}

.side-image img {
    max-width: 100%;
}

/* One Side Full Section */

.one-side-full-section {
    padding: 60px 0;
}

.one-side-full-grid {
    max-width: 1600px;
    margin-left: auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.one-side-full-image img {
    max-width: 100%;
}

.one-side-full-grid {
    max-width: 1600px;
    margin-left: auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.one-side-full-image img {
    max-width: 100%;
}

.one-side-full-image {
    max-width: 815px;
    width: 100%;
    margin-left: auto;
    flex: 0 0 auto;
}

.one-side-full-content {
    max-width: 580px;
    width: 100%;
    padding-inline: 20px;
}

.one-side-full-content h2 {
    margin-bottom: 20px;
}

.one-side-full-content p {
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 0px 0 80px;
    text-align: center;
}

.pricing-header h2 {
    font-family: var(--font-family-bold);
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

/* Toggle Styling */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.toggle-switch {
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    display: flex;
    position: relative;
    width: 250px;
    height: 50px;
    cursor: pointer;
    overflow: hidden;
}

.toggle-btn {
    flex: 1;
    z-index: 2;
    line-height: 48px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: 0.3s;
}

.toggle-btn.active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    transition: 0.3s ease;
    border-radius: 28px;
    z-index: 1;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border: 1.5px solid #2e3171;
    background: #f9faff;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #2e3171;
    color: #fff;
    padding: 5px 20px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 12px;
    font-size: 13px;
}

.card-top h3 {
    font-family: var(--font-family-bold);
    font-size: 22px;
    margin-bottom: 10px;
}

.card-top p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
}

.price-value {
    color: var(--primary-color);
    font-family: var(--font-family-bold);
    font-size: 30px;
    margin-bottom: 5px;
}

.billing-type {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    display: block;
    margin-bottom: 20px;
}

/* Buttons */
.btn-outline-blue {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: #f1f9ff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.btn-solid-blue {
    background: #2e3171;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

/* List Styling */
.includes h4 {
    font-size: 18px;
    color: #2e3171;
    margin-bottom: 15px;
    font-weight: 500;
}

.includes ul {
    list-style: none;
    padding: 0;
}

.includes li {
    font-size: 17px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: rgb(0, 0, 0);
}

.includes li::before {
    content: "";
    background-color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    top: 9px;
    border-radius: 50%;
}

/* Ensure both grids are prepared for transitions */
.pricing-grid {
    display: grid;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide state */
.pricing-grid.is-hidden {
    display: none;
}

/* Initial state in HTML */
#monthly {
    display: none;
}

/* Toggle Slider positioning */
.toggle-slider {
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    transition: all 0.3s ease;
    border-radius: 28px;
    z-index: 1;
}

.toggle-switch.monthly-active .toggle-slider {
    left: 50%;
}

.plint .strategy-image img {
    width: 100%;
    border-radius: 0;
}

.plint .strategy-content p {
    margin-bottom: 20px;
}

.big-content {
    margin-top: 60px;
}

.big-content .strategy-cta {
    padding: 0;
    background-color: var(--primary-color);
    margin-bottom: 0;
    align-items: end;
    text-align: left;
}

.big-content .cta-content {
    padding: 35px 0 35px 35px;
}

.big-content .cta-content p {
    color: #fff;
    margin-bottom: 0;
}

.big-content .cta-image img {
    max-width: 100%;
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(246deg, #E3F4FF 0%, #2686C7 100%);
    padding: 50px 0;
}

.contact-card-wrap {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: start;
}

.contact-info .sub-label {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-info h1 {
    font-family: var(--font-family);
    font-size: clamp(32px, 5vw, 63px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-methods {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

.method-icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-text small {
    font-size: 12px;
    color: rgb(0 0 0 / 60%);
    font-weight: 300;
    margin-bottom: 5px;
    display: block;
}

.method-text span {
    display: block;
    font-size: 16px;
    color: #000;
}

.contact-form-container {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 35px 35px 15px;
    border-radius: 15px;
}

.form-row {
    margin-bottom: 12px;
}

.form-row label {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

label>span {
    color: red;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
}

.pricing-grid.active {
    display: grid !important;
}

.method-icon img {
    object-fit: contain;
    max-width: 25px;
    width: 100%;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.5;
}

.hero.lms-banner {
    padding: 0;
}

.hero.lms-banner .hero-image img {
    max-width: clamp(500px, 42.7083333vw, 820px);
    width: 100%;
}

/* Training Courses Section */
.training-courses-section {
    padding: 80px 0;
    background: #fff;
}

.courses-header h2 {
    font-family: var(--font-family-bold);
    font-size: 38px;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #111;
}

/* Filters Layout */
.courses-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Dropdown styling */
.filter-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    width: 290px;
    padding: 18px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-family: var(--font-family);
    font-size: 16px;
    color: #333;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>') no-repeat right 20px center;
    cursor: pointer;
    outline: none;
}

/* Search Bar styling */
.search-bar-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 4px 6px 4px 20px;
    background: #fff;
    width: 450px;
    max-width: 100%;
}

.search-icon {
    color: #666;
}

.search-bar-wrap .divider {
    color: #ddd;
    margin: 0 10px;
}

.search-bar-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 15px;
    padding: 10px 0;
    background: transparent;
}

.search-btn {
    padding: 15px 35px;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

/* Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.course-card {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.course-image img {
    width: 100%;
    object-fit: cover;
    height: auto;
    max-height: 250px;
    display: block;
    border-radius: 7px;
}

.course-content {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-title {
    font-size: 22px;
    font-family: var(--font-family-bold);
    color: #111;
    margin-bottom: 20px;
    line-height: 1.4;
}

.course-meta {
    margin-bottom: 25px;
    font-family: 'Microsoft JhengHei Regular';
}

.course-meta p {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

.course-meta strong {
    font-family: var(--font-family-bold);
    color: #111;
}

.enquire-link {
    margin-top: auto;
    color: var(--primary-color);
    font-family: var(--font-family-regular);
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.enquire-link:hover {
    text-decoration: underline;
}

/* Courses Hero fix */
.hero.hero-courses {
    padding: 0 0 0;
}

.hero-courses .hero-content {
    position: relative;
    max-width: 560px;
}

.hero-courses .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-courses .hero-image img {
    max-width: clamp(500px, 70vw, 1070px);
    width: 100%;
}

/* LMS */
.points+p:has(em) {
    font-size: 22px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
}

section.strategy.lms-points {
    padding-top: 50px;
}

.strategy.small-box-section {
    padding: 20px 0 50px;
}

section.strategy.light-bg {
    background: #f4f9ff;
    padding: 50px 0;
    margin-bottom: 30px;
}

section.strategy.light-bg ul {
    list-style: none;
    padding: 0;
}

section.strategy.light-bg ul li {
    position: relative;
    font-size: 18px;
    margin-bottom: 15px;
}

section.strategy.light-bg ul li::before {
    content: "";
    position: relative;
    margin-right: 10px;
    left: 0;
    display: inline-block;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Modal Backdrop */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark semi-transparent backdrop */
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* Modal Box */
.modal-content {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    padding: 60px 40px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-family: var(--font-family-bold);
    font-size: 35px;
    margin-bottom: 10px;
    color: #000;
}

.modal-header p {
    color: #111;
    font-size: 17px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.modal-close {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    font-family: 'bootstrap-icons';
}

.modal-close:hover {
    background: #f0f0f0;
}

/*More detailed Fixes*/

.modal-form button {
    background: transparent;
}

.modal-form button:hover {
    background: #F3FAFF;
}

.container-strategy {
    max-width: 1715px;
    margin-inline: auto;
    padding-inline: var(--padding-standard);
}

.strategy-content {
    max-width: 515px;
}

.price-card.popular .includes li::before {
    background-color: #2e3171;
}

.price-card.popular .price-value {
    color: #2e3171;
}

.plint .strategy-content {
    max-width: 100%;
}

.strategy.small-box-section .strategy-content {
    max-width: 530px;
}

.strategy.small-box-section .strategy-content p {
    line-height: 1.6;
}

.swiper-slide {
    height: auto !important;
}

/* Responsive */
@media (max-width: 1024px) {

    .training-banner .hero-image img,
    .hero-image img {
        max-width: 100%;
    }

    .nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-bg-circle {
        width: 350px;
        left: -30%;
    }

    .cap-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cap-image img {
        width: 100%;
    }

    .strategy-cta {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .cta-image img {
        margin: auto;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .one-side-full-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content h2 br {
        display: none;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .left-image-right-content-grid {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .price-card.popular {
        transform: none;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ee-grid {
        gap: 70px;
    }

    .big-content .cta-content {
        padding: 35px 35px 0;
    }

    .big-content {
        margin-top: 40px;
    }
}

@media screen and (max-width: 800px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::after {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .business-sales-consulting .left-image-right-content-grid,
    .approach-sales-consulting .left-image-right-content-grid {
        grid-template-columns: 1fr;
    }

    .approach-content {
        order: 2;
    }

    .side-image {
        order: 1;
    }

    .contact-card-wrap {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .filter-dropdown select,
    .search-bar-wrap {
        width: 100%;
    }

    .lms-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ee-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .ee-card:not(:first-child)::before {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 40px 20px 20px;
    }

    .filter-dropdown {
        display: block;
        width: 100%;
    }

    .filter-search {
        width: 100%;
    }

    .pricing-section {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .top-bar .container {
        flex-direction: column;
        height: auto;
        padding: 6px 0;
        text-align: center;
        gap: 4px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-top {
        text-align: center;
    }

    .footer-logo img {
        margin: auto;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image img {
        max-width: 100%;
    }

    .strategy {
        padding: 50px 0;
    }

    .strategy-content h3 {
        font-size: 24px;
    }

    .cap-card p {
        font-size: 16px;
        color: var(--color-dark);
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 450px) {
    .search-bar-wrap {
        flex-wrap: wrap;
        padding-left: 6px;
    }

    .lms-solution-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon-title {
        justify-content: center;
    }

    .buttons-group {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ee-header {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }

    button#searchBtn {
        width: 100%;
        margin-top: 15px;
    }
}