/* _content/PlatShift/Views/Shared/_Layout.cshtml.rz.scp.css */
:root[b-t4vzia00mb] {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

body[b-t4vzia00mb] {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: var(--text-gray);
}
/* Header and Navbar */
.navbar[b-t4vzia00mb] {
    background: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
}

.navbar-brand[b-t4vzia00mb] {
    font-size: 1.6rem;
    color: var(--brand-lime);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(120, 190, 32, 0.6), 0 0 2px rgba(120, 190, 32, 0.4);
    transition: text-shadow 0.3s, color 0.3s;
}

    .navbar-brand:hover[b-t4vzia00mb] {
        color: var(--brand-lime-hover);
        text-shadow: 0 0 16px rgba(120, 190, 32, 0.9), 0 0 4px rgba(120, 190, 32, 0.6);
    }

.company-logo[b-t4vzia00mb] {
    height: 42px;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link[b-t4vzia00mb] {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover[b-t4vzia00mb],
    .navbar-nav .nav-link:focus[b-t4vzia00mb] {
        background-color: var(--brand-lime);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active[b-t4vzia00mb] {
        background-color: var(--brand-lime);
        color: var(--charcoal-black) !important;
        font-weight: 600;
    }

.dropdown-menu[b-t4vzia00mb] {
    display: none; /* no !important */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
}

    /* When dropdown opens (Bootstrap adds .show to the UL directly) */
    .dropdown-menu.show[b-t4vzia00mb] {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }


/* Desktop hover behavior */
@media (min-width: 992px) {
    .service-dropdown:hover .dropdown-menu[b-t4vzia00mb] {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

.service-item[b-t4vzia00mb] {
    padding: 10px 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .service-item:hover[b-t4vzia00mb] {
        border-left-color: var(--brand-lime);
        background-color: var(--charcoal-light);
        color: var(--pure-white);
        transform: translateX(5px);
        text-decoration: none;
    }

    .service-item.disabled[b-t4vzia00mb] {
        opacity: 0.5;
        cursor: not-allowed;
        color: var(--text-light);
        pointer-events: none;
    }

        .service-item.disabled:hover[b-t4vzia00mb] {
            border-left-color: transparent;
            background-color: transparent;
            transform: none;
        }

.service-icon[b-t4vzia00mb] {
    width: 42px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

.coming-soon-badge[b-t4vzia00mb] {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: auto;
    background-color: var(--amber-highlight) !important;
    color: var(--charcoal-black) !important;
    font-weight: 600;
}

.dropdown-divider[b-t4vzia00mb] {
    border-color: var(--charcoal-light);
    margin: 8px 0;
}

footer[b-t4vzia00mb] {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 30px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--brand-lime);
}

.container main[b-t4vzia00mb] {
    min-height: 70vh;
    margin-top: 20px;
}

.footer-brand[b-t4vzia00mb] {
    font-weight: 700;
    color: var(--brand-lime);
    font-size: 1.2rem;
}

.footer-links[b-t4vzia00mb] {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .footer-links li[b-t4vzia00mb] {
        margin-bottom: 8px;
    }

    .footer-links a[b-t4vzia00mb] {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover[b-t4vzia00mb] {
            color: var(--brand-lime);
        }

.footer-bottom[b-t4vzia00mb] {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 20px;
    margin-top: 20px;
}

/* Service status indicators */
.service-status[b-t4vzia00mb] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-active[b-t4vzia00mb] {
    background-color: var(--brand-lime);
    box-shadow: 0 0 8px var(--brand-lime);
}

.status-coming[b-t4vzia00mb] {
    background-color: var(--amber-highlight);
    box-shadow: 0 0 8px var(--amber-highlight);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar-nav .nav-link[b-t4vzia00mb] {
        margin: 2px 0;
    }

    .service-dropdown .dropdown-menu[b-t4vzia00mb] {
        min-width: 100%;
        margin-top: 5px;
    }

    .company-logo[b-t4vzia00mb] {
        height: 35px;
    }
}

.badge[b-t4vzia00mb] {
    background: var(--brand-lime);
    color: var(--charcoal-black);
}
.text-amber[b-t4vzia00mb] {
    color: #FFC107 !important;
}
/* heding */

.bp-type[b-t4vzia00mb] {
    color: #78BE20;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bp-underline[b-t4vzia00mb] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

    .bp-underline .line[b-t4vzia00mb] {
        height: 4px;
        background: #78BE20;
        border-radius: 4px;
    }



    .bp-underline .big[b-t4vzia00mb] {
        width: 120px;
    }

    .bp-underline .dot[b-t4vzia00mb] {
        width: 10px;
        height: 10px;
        background: #78BE20;
        border-radius: 50%;
    }
/* _content/PlatShift/Views/Shared/_LayoutContact.cshtml.rz.scp.css */
:root[b-gl3ehrdf78] {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

/* Global Styles */
body[b-gl3ehrdf78] {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: var(--text-gray);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img[b-gl3ehrdf78] {
    max-width: 100%;
    height: auto;
}

/* Header and Navbar */
.navbar[b-gl3ehrdf78] {
    background: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
}

.navbar-brand[b-gl3ehrdf78] {
    font-size: 1.6rem;
    color: var(--brand-lime);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(120, 190, 32, 0.6), 0 0 2px rgba(120, 190, 32, 0.4);
    transition: text-shadow 0.3s, color 0.3s;
}

    .navbar-brand:hover[b-gl3ehrdf78] {
        color: var(--brand-lime-hover);
        text-shadow: 0 0 16px rgba(120, 190, 32, 0.9), 0 0 4px rgba(120, 190, 32, 0.6);
    }

.company-logo[b-gl3ehrdf78] {
    height: 42px;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link[b-gl3ehrdf78] {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover[b-gl3ehrdf78],
    .navbar-nav .nav-link:focus[b-gl3ehrdf78] {
        background-color: var(--brand-lime);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active[b-gl3ehrdf78] {
        background-color: var(--brand-lime);
        color: var(--charcoal-black) !important;
        font-weight: 600;
    }

.dropdown-menu[b-gl3ehrdf78] {
    display: none; /* no !important */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
}

    /* When dropdown opens (Bootstrap adds .show to the UL directly) */
    .dropdown-menu.show[b-gl3ehrdf78] {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }


/* Desktop hover behavior */
@media (min-width: 992px) {
    .service-dropdown:hover .dropdown-menu[b-gl3ehrdf78] {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

.service-item[b-gl3ehrdf78] {
    padding: 10px 16px;
    border-left: 4px solid transparent;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .service-item:hover[b-gl3ehrdf78] {
        border-left-color: var(--brand-lime);
        background-color: var(--charcoal-light);
        transform: translateX(5px);
    }

    .service-item.disabled[b-gl3ehrdf78] {
        opacity: 0.5;
        cursor: not-allowed;
        color: var(--text-light);
        pointer-events: none;
    }

.service-icon[b-gl3ehrdf78] {
    width: 42px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.coming-soon-badge[b-gl3ehrdf78] {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: auto;
    background-color: var(--amber-highlight);
    color: var(--charcoal-black);
    font-weight: 600;
}

/* Footer */
footer[b-gl3ehrdf78] {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 30px 20px 20px;
    margin-top: 50px;
    border-top: 3px solid var(--brand-lime);
    text-align: left;
}

.footer-brand[b-gl3ehrdf78] {
    color: var(--brand-lime);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links[b-gl3ehrdf78] {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .footer-links li[b-gl3ehrdf78] {
        margin-bottom: 8px;
    }

    .footer-links a[b-gl3ehrdf78] {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover[b-gl3ehrdf78] {
            color: var(--brand-lime);
        }

/* Main Content Sections */
.main-container[b-gl3ehrdf78] {
    background-color: #99e17a;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.content-wrapper[b-gl3ehrdf78] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.left-container[b-gl3ehrdf78], .right-container[b-gl3ehrdf78] {
    flex: 1 1 48%;
    padding: 20px;
}

    .right-container img[b-gl3ehrdf78] {
        opacity: 0.6;
        width: 100%;
    }

/* Image Section */
.image-section[b-gl3ehrdf78] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

    .image-section img[b-gl3ehrdf78] {
        width: 80%;
        max-width: 700px;
    }

/* Two-column boxes */
.main-container2[b-gl3ehrdf78] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 20px;
    flex-wrap: wrap;
}

.box[b-gl3ehrdf78] {
    flex: 1 1 48%;
    background-color: #d9f4cd;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .box h2[b-gl3ehrdf78] {
        text-align: center;
        color: #1b5283;
        margin-bottom: 20px;
    }

    .box p[b-gl3ehrdf78], .box li[b-gl3ehrdf78] {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }

/* User Perspective */
.user-perspective[b-gl3ehrdf78] {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    color: #1b5283;
}

    .user-perspective h2[b-gl3ehrdf78] {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .user-perspective .divider[b-gl3ehrdf78] {
        width: 150px;
        height: 2px;
        background: #009999;
        margin: 0 auto 20px;
        position: relative;
    }

        .user-perspective .divider[b-gl3ehrdf78]::before,
        .user-perspective .divider[b-gl3ehrdf78]::after {
            content: "";
            position: absolute;
            top: -6px;
            width: 10px;
            height: 10px;
            border: 2px solid #009999;
            border-radius: 50%;
            background: #fff;
        }

        .user-perspective .divider[b-gl3ehrdf78]::before {
            left: -15px;
        }

        .user-perspective .divider[b-gl3ehrdf78]::after {
            right: -15px;
        }

    .user-perspective p[b-gl3ehrdf78] {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

/* Process Section */
.process-section[b-gl3ehrdf78] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.process-right[b-gl3ehrdf78], .process-left[b-gl3ehrdf78] {
    flex: 1 1 48%;
}

.process-right[b-gl3ehrdf78] {
    background-color: #cce0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .process-right h2[b-gl3ehrdf78] {
        color: #007a3f;
    }

/* Slideshow */
.slideshow-container[b-gl3ehrdf78] {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide[b-gl3ehrdf78] {
    display: none;
    text-align: center;
}

    .slide img[b-gl3ehrdf78] {
        max-width: 90%;
        height: auto;
    }

.dots[b-gl3ehrdf78] {
    text-align: center;
    margin-top: 10px;
}

.dot[b-gl3ehrdf78] {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active[b-gl3ehrdf78] {
    background-color: #007a3f;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .navbar-brand[b-gl3ehrdf78] {
        font-size: 1.4rem;
    }

    .left-container[b-gl3ehrdf78], .right-container[b-gl3ehrdf78] {
        flex: 1 1 100%;
        text-align: center;
    }

    .box[b-gl3ehrdf78], .process-right[b-gl3ehrdf78], .process-left[b-gl3ehrdf78] {
        flex: 1 1 100%;
    }

    .user-perspective[b-gl3ehrdf78] {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link[b-gl3ehrdf78] {
        display: block;
        margin: 5px 0;
    }

    .main-container[b-gl3ehrdf78], .process-section[b-gl3ehrdf78] {
        padding: 30px 15px;
    }

    .image-section img[b-gl3ehrdf78] {
        width: 100%;
    }

    .user-perspective h2[b-gl3ehrdf78] {
        font-size: 22px;
    }

    .box[b-gl3ehrdf78] {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-brand[b-gl3ehrdf78] {
        font-size: 1.2rem;
    }

    .content-wrapper[b-gl3ehrdf78] {
        flex-direction: column;
    }

    .process-section[b-gl3ehrdf78] {
        padding: 20px;
    }

    .user-perspective p[b-gl3ehrdf78] {
        font-size: 14px;
    }

    footer[b-gl3ehrdf78] {
        padding: 20px 10px;
    }
}

.badge[b-gl3ehrdf78] {
    background: var(--brand-lime);
    color: var(--charcoal-black);
}

.text-amber[b-gl3ehrdf78] {
    color: #FFC107 !important;
}
/* _content/PlatShift/Views/Shared/_LayoutDemo.cshtml.rz.scp.css */
:root[b-oayli42jge] {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

body[b-oayli42jge] {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: var(--text-gray);
}
/* Header and Navbar */
.navbar[b-oayli42jge] {
    background: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
}

.navbar-brand[b-oayli42jge] {
    font-size: 1.6rem;
    color: var(--brand-lime);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(120, 190, 32, 0.6), 0 0 2px rgba(120, 190, 32, 0.4);
    transition: text-shadow 0.3s, color 0.3s;
}

    .navbar-brand:hover[b-oayli42jge] {
        color: var(--brand-lime-hover);
        text-shadow: 0 0 16px rgba(120, 190, 32, 0.9), 0 0 4px rgba(120, 190, 32, 0.6);
    }

.company-logo[b-oayli42jge] {
    height: 42px;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link[b-oayli42jge] {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover[b-oayli42jge],
    .navbar-nav .nav-link:focus[b-oayli42jge] {
        background-color: var(--brand-lime);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active[b-oayli42jge] {
        background-color: var(--brand-lime);
        color: var(--charcoal-black) !important;
        font-weight: 600;
    }

.dropdown-menu[b-oayli42jge] {
    display: none; /* no !important */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
}

    /* When dropdown opens (Bootstrap adds .show to the UL directly) */
    .dropdown-menu.show[b-oayli42jge] {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }


/* Desktop hover behavior */
@media (min-width: 992px) {
    .service-dropdown:hover .dropdown-menu[b-oayli42jge] {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

.service-item[b-oayli42jge] {
    padding: 10px 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .service-item:hover[b-oayli42jge] {
        border-left-color: var(--brand-lime);
        background-color: var(--charcoal-light);
        color: var(--pure-white);
        transform: translateX(5px);
        text-decoration: none;
    }

    .service-item.disabled[b-oayli42jge] {
        opacity: 0.5;
        cursor: not-allowed;
        color: var(--text-light);
        pointer-events: none;
    }

        .service-item.disabled:hover[b-oayli42jge] {
            border-left-color: transparent;
            background-color: transparent;
            transform: none;
        }

.service-icon[b-oayli42jge] {
    width: 42px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

.coming-soon-badge[b-oayli42jge] {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: auto;
    background-color: var(--amber-highlight) !important;
    color: var(--charcoal-black) !important;
    font-weight: 600;
}

.dropdown-divider[b-oayli42jge] {
    border-color: var(--charcoal-light);
    margin: 8px 0;
}

footer[b-oayli42jge] {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 30px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--brand-lime);
}

.container main[b-oayli42jge] {
    min-height: 70vh;
    margin-top: 20px;
}

.footer-brand[b-oayli42jge] {
    font-weight: 700;
    color: var(--brand-lime);
    font-size: 1.2rem;
}

.footer-links[b-oayli42jge] {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .footer-links li[b-oayli42jge] {
        margin-bottom: 8px;
    }

    .footer-links a[b-oayli42jge] {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover[b-oayli42jge] {
            color: var(--brand-lime);
        }

.footer-bottom[b-oayli42jge] {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 20px;
    margin-top: 20px;
}

/* Service status indicators */
.service-status[b-oayli42jge] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-active[b-oayli42jge] {
    background-color: var(--brand-lime);
    box-shadow: 0 0 8px var(--brand-lime);
}

.status-coming[b-oayli42jge] {
    background-color: var(--amber-highlight);
    box-shadow: 0 0 8px var(--amber-highlight);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar-nav .nav-link[b-oayli42jge] {
        margin: 2px 0;
    }

    .service-dropdown .dropdown-menu[b-oayli42jge] {
        min-width: 100%;
        margin-top: 5px;
    }

    .company-logo[b-oayli42jge] {
        height: 35px;
    }
}

.badge[b-oayli42jge] {
    background: var(--brand-lime);
    color: var(--charcoal-black);
}
.text-amber[b-oayli42jge] {
    color: #FFC107 !important;
}
/* _content/PlatShift/Views/Shared/_LayoutProduct.cshtml.rz.scp.css */
:root[b-hf8ydspa0u] {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

/* Global Styles */
body[b-hf8ydspa0u] {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: var(--text-gray);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img[b-hf8ydspa0u] {
    max-width: 100%;
    height: auto;
}

/* Header and Navbar */
.navbar[b-hf8ydspa0u] {
    background: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
}

.navbar-brand[b-hf8ydspa0u] {
    font-size: 1.6rem;
    color: var(--brand-lime);
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(120, 190, 32, 0.6), 0 0 2px rgba(120, 190, 32, 0.4);
    transition: text-shadow 0.3s, color 0.3s;
}

    .navbar-brand:hover[b-hf8ydspa0u] {
        color: var(--brand-lime-hover);
        text-shadow: 0 0 16px rgba(120, 190, 32, 0.9), 0 0 4px rgba(120, 190, 32, 0.6);
    }

.company-logo[b-hf8ydspa0u] {
    height: 42Px;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link[b-hf8ydspa0u] {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover[b-hf8ydspa0u],
    .navbar-nav .nav-link:focus[b-hf8ydspa0u] {
        background-color: var(--brand-lime);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active[b-hf8ydspa0u] {
        background-color: var(--brand-lime);
        color: var(--charcoal-black) !important;
        font-weight: 600;
    }

.dropdown-menu[b-hf8ydspa0u] {
    display: none; /* no !important */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
}

    /* When dropdown opens (Bootstrap adds .show to the UL directly) */
    .dropdown-menu.show[b-hf8ydspa0u] {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }


/* Desktop hover behavior */
@media (min-width: 992px) {
    .service-dropdown:hover .dropdown-menu[b-hf8ydspa0u] {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}
.service-item[b-hf8ydspa0u] {
    padding: 10px 16px;
    border-left: 4px solid transparent;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .service-item:hover[b-hf8ydspa0u] {
        border-left-color: var(--brand-lime);
        background-color: var(--charcoal-light);
        transform: translateX(5px);
    }

    .service-item.disabled[b-hf8ydspa0u] {
        opacity: 0.5;
        cursor: not-allowed;
        color: var(--text-light);
        pointer-events: none;
    }

.service-icon[b-hf8ydspa0u] {
    width: 42px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.coming-soon-badge[b-hf8ydspa0u] {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: auto;
    background-color: var(--amber-highlight);
    color: var(--charcoal-black);
    font-weight: 600;
}

/* Footer */
footer[b-hf8ydspa0u] {
    background: var(--charcoal-black);
    color: var(--pure-white);
    padding: 30px 20px 20px;
    margin-top: 50px;
    border-top: 3px solid var(--brand-lime);
    text-align: left;
}

.footer-brand[b-hf8ydspa0u] {
    color: var(--brand-lime);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links[b-hf8ydspa0u] {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .footer-links li[b-hf8ydspa0u] {
        margin-bottom: 8px;
    }

    .footer-links a[b-hf8ydspa0u] {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover[b-hf8ydspa0u] {
            color: var(--brand-lime);
        }

/* Main Content Sections */
.main-container[b-hf8ydspa0u] {
    background-color: #99e17a;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.content-wrapper[b-hf8ydspa0u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.left-container[b-hf8ydspa0u], .right-container[b-hf8ydspa0u] {
    flex: 1 1 48%;
    padding: 20px;
}

    .right-container img[b-hf8ydspa0u] {
        opacity: 0.6;
        width: 100%;
    }

/* Image Section */
.image-section[b-hf8ydspa0u] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

    .image-section img[b-hf8ydspa0u] {
        width: 80%;
        max-width: 700px;
    }

/* Two-column boxes */
.main-container2[b-hf8ydspa0u] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 60px 20px;
    flex-wrap: wrap;
}

.box[b-hf8ydspa0u] {
    flex: 1 1 48%;
    background-color: #d9f4cd;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .box h2[b-hf8ydspa0u] {
        text-align: center;
        color: #1b5283;
        margin-bottom: 20px;
    }

    .box p[b-hf8ydspa0u], .box li[b-hf8ydspa0u] {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }

/* User Perspective */
.user-perspective[b-hf8ydspa0u] {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    color: #1b5283;
}

    .user-perspective h2[b-hf8ydspa0u] {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .user-perspective .divider[b-hf8ydspa0u] {
        width: 150px;
        height: 2px;
        background: #009999;
        margin: 0 auto 20px;
        position: relative;
    }

        .user-perspective .divider[b-hf8ydspa0u]::before,
        .user-perspective .divider[b-hf8ydspa0u]::after {
            content: "";
            position: absolute;
            top: -6px;
            width: 10px;
            height: 10px;
            border: 2px solid #009999;
            border-radius: 50%;
            background: #fff;
        }

        .user-perspective .divider[b-hf8ydspa0u]::before {
            left: -15px;
        }

        .user-perspective .divider[b-hf8ydspa0u]::after {
            right: -15px;
        }

    .user-perspective p[b-hf8ydspa0u] {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

/* Process Section */
.process-section[b-hf8ydspa0u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.process-right[b-hf8ydspa0u], .process-left[b-hf8ydspa0u] {
    flex: 1 1 48%;
}

.process-right[b-hf8ydspa0u] {
    background-color: #cce0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .process-right h2[b-hf8ydspa0u] {
        color: #007a3f;
    }

/* Slideshow */
.slideshow-container[b-hf8ydspa0u] {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide[b-hf8ydspa0u] {
    display: none;
    text-align: center;
}

    .slide img[b-hf8ydspa0u] {
        max-width: 90%;
        height: auto;
    }

.dots[b-hf8ydspa0u] {
    text-align: center;
    margin-top: 10px;
}

.dot[b-hf8ydspa0u] {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active[b-hf8ydspa0u] {
    background-color: #007a3f;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .navbar-brand[b-hf8ydspa0u] {
        font-size: 1.4rem;
    }

    .left-container[b-hf8ydspa0u], .right-container[b-hf8ydspa0u] {
        flex: 1 1 100%;
        text-align: center;
    }

    .box[b-hf8ydspa0u], .process-right[b-hf8ydspa0u], .process-left[b-hf8ydspa0u] {
        flex: 1 1 100%;
    }

    .user-perspective[b-hf8ydspa0u] {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link[b-hf8ydspa0u] {
        display: block;
        margin: 5px 0;
    }

    .main-container[b-hf8ydspa0u], .process-section[b-hf8ydspa0u] {
        padding: 30px 15px;
    }

    .image-section img[b-hf8ydspa0u] {
        width: 100%;
    }

    .user-perspective h2[b-hf8ydspa0u] {
        font-size: 22px;
    }

    .box[b-hf8ydspa0u] {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-brand[b-hf8ydspa0u] {
        font-size: 1.2rem;
    }

    .content-wrapper[b-hf8ydspa0u] {
        flex-direction: column;
    }

    .process-section[b-hf8ydspa0u] {
        padding: 20px;
    }

    .user-perspective p[b-hf8ydspa0u] {
        font-size: 14px;
    }

    footer[b-hf8ydspa0u] {
        padding: 20px 10px;
    }
}
.badge[b-hf8ydspa0u] {
    background: var(--brand-lime);
    color: var(--charcoal-black);
}

.text-amber[b-hf8ydspa0u] {
    color: #FFC107 !important;
}
