/********** Internal Links Card **********/

:root {
    --main-color: #6c5ffc;
    --hover-color: #3623ff;
    --white: #ffffff;
    --muted: #9ba5ca;
    --dark: #242424ff;
    --purple: #3623ff;
    --orange: #ff3a20;
    --sky: #009dff;
    --green: #0abb33;
    --pink: #ff41c0;
    --soft-purple: color-mix(in srgb, var(--main-color) 12%, white);
    --soft-orange: color-mix(in srgb, var(--orange) 10%, white);
    --soft-sky: color-mix(in srgb, var(--sky) 12%, white);
    --soft-green: color-mix(in srgb, var(--green) 12%, white);
    --soft-pink: color-mix(in srgb, var(--pink) 12%, white);
    --soft-muted: #f8f9fc;
    --text-main: #0e0f12;
    --text-muted: var(--muted);
    --shadow-soft: 0 4px 12px rgba(24, 27, 49, 0.08);
    --shadow-hover: 0 8px 20px rgba(24, 27, 49, 0.12);
    --border-light: rgba(0, 0, 0, 0.05);
    --border-color: rgba(108, 95, 252, 0.2);
}

/* ===== Scoped styles for #internal-website ===== */
#internal-website .card>* {
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent;
}

/* ---- Card base ---- */
#internal-website .card-internal {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    border: 0;
    height: 300px !important;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow-soft);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    backdrop-filter: blur(6px) saturate(1.1);
}

#internal-website .card-internal:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Overlay */
#internal-website .card-internal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
    transition: background .35s ease;
}

#internal-website .card-internal:hover::before {
    background: rgba(0, 0, 0, 0.68);
}

/* Background image layer */
#internal-website .card-internal::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}

#internal-website .card-internal:hover::after {
    transform: scale(1.25);
}

/* Per-card images */
#internal-website .card-1::after {
    background-image: url("https://www.phithan-toyota.com/th/phithan_bkk_group_assets/img/internal-link/img-our-business.png");
}

#internal-website .card-2::after {
    background-image: url("https://www.phithan-toyota.com/th/phithan_bkk_group_assets/img/internal-link/img-morning.png");
}

#internal-website .card-3::after {
    background-image: url("https://www.phithan-toyota.com/th/phithan_bkk_group_assets/img/internal-link/img-csr.png");
}

#internal-website .card-4::after {
    background-image: url("https://www.phithan-toyota.com/th/phithan_bkk_group_assets/img/internal-link/img-car.png");
}

#internal-website .card-5::after {
    background-image: url("https://www.phithan-toyota.com/th/phithan_bkk_group_assets/img/internal-link/img-knowledge.png");
}


/* Typography */
#internal-website .card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
    transition: opacity .3s ease, transform .3s ease;
}

#internal-website .card-text {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--white) 90%, var(--dark)) !important;
    transition: opacity .3s ease, transform .3s ease;
}

#internal-website .card-internal:hover .card-title,
#internal-website .card-internal:hover .card-text {
    transform: translateY(-2px);
    opacity: 1;
}

#internal-website .card:hover .card-body {
    background: transparent;
    border-radius: 15px;
}

/* Footer */
#internal-website .card-footer {
    background: transparent;
    border: none;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

/* Button */
#internal-website .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white) !important;
    background: var(--main-color);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--main-color) 30%, transparent);
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
    width: 100%;
    font-size: 15px;
}

#internal-website .btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--hover-color) 38%, transparent);
}

#internal-website .btn:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 3px color-mix(in srgb, var(--main-color) 25%, transparent),
        0 10px 24px color-mix(in srgb, var(--main-color) 38%, transparent);
}

/* Heading */
#internal-website .heading .sub-heading {
    display: inline-block;
    color: var(--muted);
    background: color-mix(in srgb, var(--soft-purple) 60%, transparent);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
}

#internal-website .heading h3 {
    color: var(--white);
    font-weight: 900;
    letter-spacing: .2px;
    margin-bottom: 22px;
}

.auto-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Responsive */
@media (max-width: 768px) {
    #internal-website .heading h3 {
        font-size: 2rem;
    }

    #internal-website .card-internal {
        height: 280px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    #internal-website .card-internal,
    #internal-website .card-internal::after,
    #internal-website .card-internal::before,
    #internal-website .btn {
        transition: none !important;
    }
}


/********** Biz Card **********/
:root {
    --main-color: #6c5ffc;
    --hover-color: #3623ff;

    --card-hover-bg: var(--main-color);
    --elevate: translateY(-6px);
    --hover-scale: 1.04;
    --easing-out: cubic-bezier(.22, 1, .36, 1);
    --easing-in: cubic-bezier(.32, 0, .67, 0);
    --duration-in: .42s;
    --duration-out: .55s;

    --white: #fff;
    --text-main: #212121;
    --border-light: rgba(0, 0, 0, .06);
    --shadow-soft: 0 2px 4px rgba(136, 144, 195, .2), 0 5px 15px rgba(37, 44, 97, .15);
    --shadow-hover: 0 10px 28px rgba(0, 0, 0, .16);

    /* glow สำหรับ bubble */
    --glow-color: 180 140 255;
    --glow-alpha-strong: .60;
    --glow-alpha-mid: .22;
    --glow-alpha-soft: .10;
}

/* ===== Card base (สำหรับ grid & swiper) ===== */
.solutions-box .biz-bis-card,
.solutions-swiper .biz-bis-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--white);
    color: var(--text-main);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 20px rgb(136 144 195 / 19%);
    padding: 20px;
    overflow: hidden;
    /* ให้ bubble ถูกครอบภายในการ์ด */
    isolation: isolate;
    /* content อยู่เหนือ bubble */
    min-height: 265px;
    height: 100%;
    text-decoration: none;
    outline: none;
    z-index: 0;

    transform: translateZ(0) scale(1);
    transform-origin: center;
    transition:
        transform var(--duration-in) var(--easing-out),
        box-shadow var(--duration-in) var(--easing-out),
        color var(--duration-in) var(--easing-out),
        border-color var(--duration-in) var(--easing-out);
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    contain: paint;
}

/* *** ลบพื้นหลัง animate ::before ออกไปทั้งหมด (ไม่มี ::before แล้ว) *** */

/* Hover: ยกการ์ด, ไม่มีพื้นหลังเคลื่อนที่ */
.solutions-box .biz-bis-card:hover,
.solutions-swiper .biz-bis-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--card-hover-bg);
    transform: translateY(-6px);
}

/* Smoothly revert */
.solutions-box .biz-bis-card:not(:hover),
.solutions-swiper .biz-bis-card:not(:hover) {
    transition-duration: var(--duration-out);
    transition-timing-function: var(--easing-out);
}

/* ===== Hover bubble (ตัวเดียวพอ) ===== */
.biz-bis-card .hover_color_bubble {
    position: absolute;
    /* glow + sheen เล็กน้อย */
    background:
        radial-gradient(circle at 40% 60%,
            rgb(var(--glow-color)/var(--glow-alpha-strong)) 0%,
            rgb(var(--glow-color)/var(--glow-alpha-mid)) 28%,
            rgb(var(--glow-color)/var(--glow-alpha-soft)) 60%,
            transparent 100%),
        linear-gradient(135deg,
            rgb(var(--glow-color)/0.45) 5%,
            rgb(var(--glow-color)/0.12) 35%,
            transparent 70%);
    width: 120rem;
    height: 120rem;
    left: -28rem;
    top: 18rem;
    border-radius: 50%;
    transform: rotate(-32deg) translateZ(0);
    z-index: 0;
    /* ใต้ content */
    pointer-events: none;
    opacity: .55;
    filter: blur(70px);
    mix-blend-mode: screen;
    transition:
        top .7s var(--easing-out),
        opacity .7s ease,
        filter .7s ease,
        transform .7s var(--easing-out),
        background .7s ease;
}

.biz-bis-card:hover .hover_color_bubble {
    top: 4rem;
    opacity: .78;
    transform: rotate(-22deg) scale(1.06) translateZ(0);
    filter: blur(90px);
}

.biz-bis-card .hover_color_bubble::after {
    content: "";
    position: absolute;
    inset: -30rem;
    border-radius: inherit;
    box-shadow:
        0 0 160px 80px rgb(var(--glow-color)/0.22),
        0 0 220px 140px rgb(var(--glow-color)/0.10);
    pointer-events: none;
}

/* ===== Content layers ===== */
.biz-bis-card-header,
.biz-bis-card-body,
.biz-bis-card-footer {
    position: relative;
    z-index: 1;
    /* อยู่เหนือ bubble */
}

.biz-bis-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.biz-bis-card-body {
    margin-top: 10px;
    flex: 1 1 auto;
}

.biz-bis-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.so_top_icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #80808017;
}

.so_top_icon img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.solu_title h3 {
    font-size: 1.3rem;
    margin: 0;
    color: inherit;
}

/* สีหัวข้อเมื่อ hover การ์ด */
.solutions-box .biz-bis-card:hover .solu_title h3,
.solutions-swiper .biz-bis-card:hover .solu_title h3 {
    color: var(--hover-color);
}

/* ปุ่ม */
.read_more_btn {
    border: 1px solid var(--hover-color);
    border-radius: 5px;
    background: #fff;
    color: var(--hover-color);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    opacity: .9;
    transform: translateZ(0);
    transition:
        transform .35s var(--easing-out),
        box-shadow .35s var(--easing-out),
        background-color .35s var(--easing-out),
        color .35s var(--easing-out),
        opacity .35s var(--easing-out);
}

.read_more_btn:hover {
    background: var(--hover-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    opacity: 1;
}

.solutions-box .biz-bis-card:hover .read_more_btn,
.solutions-swiper .biz-bis-card:hover .read_more_btn {
    background: var(--hover-color);
    color: #fff;
    box-shadow: none;
}

/* ===== Swiper layout ===== */
.solutions-swiper .swiper-wrapper {
    overflow: visible !important;
    margin-bottom: 30px;
    padding: 10px;
}

.solutions-swiper .swiper-slide {
    height: auto;
    display: flex;
    position: relative;
    overflow: visible !important;
    padding: 10px;
    z-index: 0;
}

.solutions-swiper .swiper-slide>.biz-bis-card {
    width: 100%;
    height: 100%;
}

.solutions-swiper .swiper-slide:hover {
    z-index: 3;
}

/* ===== Responsive blocks ===== */
.block-mobile {
    display: block;
}

.block-desktop {
    display: none;
}

@media (min-width:768px) {
    .block-mobile {
        display: none;
    }

    .block-desktop {
        display: block;
    }
}

/* Mobile – ปรับปุ่มให้แบนลงหน่อย */
@media (max-width:576px) {
    .read_more_btn {
        background: color-mix(in srgb, var(--main-color) 20%, transparent);
        color: var(--hover-color);
        box-shadow: none;
    }

    .read_more_btn:hover {
        background: var(--hover-color);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: none;
    }
}

/* ลด motion */
@media (prefers-reduced-motion:reduce) {

    .biz-bis-card,
    .biz-bis-card .hover_color_bubble,
    .read_more_btn {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
}

/********** Feedback **********/

/* Wrapper ตรึงมุมขวาล่าง */
.feedback-toast-wrap {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    /* สูงกว่า navbar ส่วนใหญ่ */
    pointer-events: none;
    /* ให้คลิกเฉพาะตัว toast/ปุ่มด้านใน */
}

/* ปรับโทน Toast ให้เข้ากับดีไซน์ */
.feedback-toast {
    width: min(360px, 92vw);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    border-radius: 14px;
    overflow: hidden;
    pointer-events: auto;
    background: var(--white);
}

.feedback-toast .toast-header {
    background: linear-gradient(135deg, var(--main-color), var(--hover-color));
    color: #fff;
    border-bottom: none;
}

.feedback-toast .btn-close {
    filter: invert(1);
    /* ให้ X เป็นสีขาว */
    opacity: .9;
}

.feedback-toast .btn-close:hover {
    opacity: 1;
}

.feedback-toast .toast-body {
    color: var(--text-main);
    background: var(--soft-muted);
}

/* ปุ่มเรียกกลับ (floating) */
.feedback-fab {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1079;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 400;
    background: var(--main-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    color: #fff;
    display: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.feedback-fab:hover {
    background: var(--hover-color);
    color: #fff;
}

/* ลิงก์/ปุ่มภายใน toast */
.feedback-actions .btn {
    border-radius: 10px;
    font-weight: 600;
}

.feedback-actions .btn-outline-primary {
    --bs-btn-color: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-bg: var(--main-color);
    --bs-btn-hover-border-color: var(--main-color);
    --bs-btn-active-bg: var(--hover-color);
    --bs-btn-active-border-color: var(--hover-color);
    color: var(--main-color);
}

@media (max-width: 576px) {
    .feedback-toast-wrap {
        right: .75rem;
        bottom: .75rem;
    }

    .feedback-fab {
        right: .75rem;
        bottom: .75rem;
    }
}

/********** Back to Top **********/

.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 15px;
    background: var(--main-color);
    border: 1px solid var(--border-color);
    color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-soft);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.back-to-top i {
    pointer-events: none;
}

/********** Contact Social **********/


:root {
    /* ✅ Social brand colors */
    --facebook: #1877f2;
    --line: #06c755;
    --youtube: #ff0000;
}

.btn-social {
    border: 1px solid color-mix(in srgb, var(--white) 25%, transparent);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-social:hover {
    color: var(--white);
}

/* Brand hover colors using root variables */
.facebook:hover {
    background-color: var(--facebook);
    border-color: var(--facebook);
}

.line:hover {
    background-color: var(--line);
    border-color: var(--line);
}

.youtube:hover {
    background-color: var(--youtube);
    border-color: var(--youtube);
}

/********** Footer **********/

.footer-info strong {
    color: var(--main-color);
}

.footer-info a {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s ease;
}

.footer-info a:hover {
    color: #fff;
    text-decoration: none;
}



.pcf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.pcf-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    background: var(--white);
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 12px;
}

.pcf-item i {
    color: var(--hover);
}

.pcf-item:hover {
    background: var(--hover-color);
    color: var(--white);
    transform: translateY(-2px);
    letter-spacing: 0.75px;
}

.pcf-item:hover i {
    color: var(--white);
}

/* md (≥768px) → 3 columns */
@media (min-width: 768px) {
    .pcf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* lg (≥992px) และ xl (≥1200px) → 5 columns */
@media (min-width: 992px) {
    .pcf-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* ===== Namespaced Footer ===== */
.pc-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 3rem 0;
    font-size: 14px;
}

.pc-footer .pcf-title {
    font-weight: 700;
    margin-bottom: .75rem;
    letter-spacing: .3px;
    font-size: 18px;
}

.pc-footer .pcf-muted {
    color: var(--footer-muted);
}

.pc-footer .pcf-dim {
    color: var(--footer-dim);
}

.pc-footer .pcf-divider {
    border-color: var(--footer-divider);
}

/* ===== Links ===== */
.pc-footer .pcf-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pc-footer .pcf-links li+li {
    margin-top: .45rem;
}

.pc-footer .pcf-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.pc-footer .pcf-links a:hover {
    color: var(--muted);
    text-decoration: underline;
}

/* ===== Contact ===== */
.pc-footer .pcf-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pc-footer .pcf-contact li {
    margin-bottom: .4rem;
}

.pc-footer .pcf-contact a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.pc-footer .pcf-contact a:hover {
    color: var(--sky);
    text-decoration: underline;
}

/* ===== Buttons ===== */
.pc-footer .pcf-btn-primary {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
    transition: filter 0.25s ease;
}

.pc-footer .pcf-btn-primary:hover {
    filter: brightness(1.08);
}

/* ===== Mini links ===== */
.pc-footer .pcf-mini-link {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.pc-footer .pcf-mini-link:hover {
    color: var(--sky);
    text-decoration: underline;
}





/* Enhanced navigation buttons */
#biz-bis .swiper-button-prev,
#biz-bis .swiper-button-next {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    opacity: 0.95;
}

#biz-bis .swiper-button-prev::after,
#biz-bis .swiper-button-next::after {
    font-size: 22px;
    color: var(--main-color);
    font-weight: bold;
}

#biz-bis .swiper-button-prev:hover,
#biz-bis .swiper-button-next:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    opacity: 1;
}

#biz-bis .swiper-button-prev:hover::after {
    animation: slideLeft 0.6s ease-in-out infinite;
}

#biz-bis .swiper-button-next:hover::after {
    animation: slideRight 0.6s ease-in-out infinite;
}

@keyframes slideLeft {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-3px);
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

#biz-bis .swiper-button-prev {
    left: 20px;
}

#biz-bis .swiper-button-next {
    right: 20px;
}

#biz-bis .swiper-button-prev.swiper-button-disabled,
#biz-bis .swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}









:root {
    --white: #ffffff;
    --muted: #9ba5ca;
    --dark: #1a1a2e;
    --bg-light: #f5f7fa;
    --text-dark: #2c3e50;
    --card-radius: 20px;
}

/* ===== SECTION WRAPPER ===== */
#biz-bis.business-section {
    background: var(--main-color);
    color: var(--white);
    padding: 30px 0;
    position: relative;
    overflow-x: hidden;
}

#biz-bis.business-section::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, .03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#biz-bis .section-heading {
    text-align: center;
    animation: fadeInUp .9s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#biz-bis .sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.02);
    }
}

#biz-bis .main-heading {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    line-height: 1.2;
}

/* ===== CARD ===== */
#biz-bis .auto-card {
    border: none;
    border-radius: var(--card-radius);
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, .08);
    transition: all .5s cubic-bezier(.2, .8, .2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    width: 100%;
}

#biz-bis .auto-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    right: -20px;
    top: -20px;
    background: var(--main-color);
    opacity: 0.03;
    border-radius: 50%;
    transition: all .5s ease;
}

#biz-bis .auto-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(108, 95, 252, .2);
}

#biz-bis .auto-card:hover::after {
    transform: scale(1.5);
    opacity: 0.06;
}

#biz-bis .auto-icon img,
#biz-bis .icon-wrapper {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border: 3px solid rgba(108, 95, 252, .1);
    object-fit: contain;
    padding: 14px;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

#biz-bis .auto-card:hover .auto-icon img,
#biz-bis .auto-card:hover .icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(108, 95, 252, .2);
    border-color: rgba(108, 95, 252, .3);
}

#biz-bis .auto-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

#biz-bis .auto-text {
    color: #5a6c7d;
    font-size: 1.02rem;
    line-height: 1.7;
    text-align: center;
}

/* ===== BUTTONS ===== */
#biz-bis .btn-business,
#biz-bis .btn-outline {
    border: none;
    border-radius: 14px;
    padding: 10px;
    font-weight: 500;
    font-size: .98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    flex: 1;
}

#biz-bis .btn-business {
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(108, 95, 252, .3);
}

#biz-bis .btn-business:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 95, 252, .4);
    color: #fff;
}

#biz-bis .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(108, 95, 252, .3);
}

#biz-bis .btn-outline:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 95, 252, .3);
}

/* ===== SWIPER ===== */
#biz-bis .business-swiper {
    padding: 20px 10px 60px;
}

#biz-bis .swiper-slide {
    display: flex;
    height: auto;
}

#biz-bis .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .4);
    transition: all .4s ease;
    margin: 0 6px !important;
}

#biz-bis .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(255, 255, 255, .4);
}

#biz-bis .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, .7);
    transform: scale(1.2);
}

#biz-bis .swiper-button-prev,
#biz-bis .swiper-button-next {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
}

#biz-bis .swiper-button-prev::after,
#biz-bis .swiper-button-next::after {
    font-size: 22px;
    color: var(--main-color);
    font-weight: bold;
}

#biz-bis .swiper-button-prev:hover,
#biz-bis .swiper-button-next:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #biz-bis .main-heading {
        font-size: 2.2rem;
    }

    #biz-bis .auto-title {
        font-size: 1.3rem;
    }

    #biz-bis .auto-text {
        font-size: .95rem;
    }

    #biz-bis .swiper-button-prev,
    #biz-bis .swiper-button-next {
        display: none;
    }
}