/* /Layout/ChooseUs.razor.rz.scp.css */
.choose-us-section[b-0qs786w8qz] {
    min-height: 400px;
}

.choose-us-image-container[b-0qs786w8qz] {
    background-color: #dcdcdc;
    padding: 30px;
}

.choose-us-text-container[b-0qs786w8qz] {
    background-color: #e5b900;
    padding: 50px;
}

    .choose-us-text-container h2[b-0qs786w8qz] {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: black;
    }

    .choose-us-text-container p[b-0qs786w8qz] {
        font-size: 1.1rem;
        line-height: 1.6;
        color: black;
        max-width: 75%;
    }

.choose-us-img[b-0qs786w8qz] {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.btn-homepage-nav[b-0qs786w8qz] {
    background: linear-gradient(135deg, #2c313c, #495057);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 25px;
    width: auto;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .btn-homepage-nav:hover[b-0qs786w8qz] {
        background: linear-gradient(135deg, #495057, #6c757d);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .choose-us-section[b-0qs786w8qz] {
        min-height: auto;
    }

    .choose-us-text-container p[b-0qs786w8qz] {
        max-width: 100%;
    }

    .btn-homepage-nav[b-0qs786w8qz] {
        width: 100%; 
    }
}
/* /Layout/FakeNavBar.razor.rz.scp.css */

.custom-navbar[b-q3zpbyl1ok] {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.custom-container[b-q3zpbyl1ok] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.custom-logo[b-q3zpbyl1ok] {
    height: 80px;
    width: auto;
}

.custom-brand[b-q3zpbyl1ok] {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.custom-toggler[b-q3zpbyl1ok] {
    background: none;
    color: #fff;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    display: none;
}


.custom-nav-links[b-q3zpbyl1ok] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.custom-link[b-q3zpbyl1ok] {
    display: block;
    padding: 0.75rem 1.8rem;
    color: #f1f1f1;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .custom-link:hover[b-q3zpbyl1ok] {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        cursor:not-allowed;
    }


.custom-dropdown[b-q3zpbyl1ok] {
    position: relative;
}

.custom-dropdown-list[b-q3zpbyl1ok] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    border-radius: 6px;
    min-width: 220px;
    padding: 6px 0;
    list-style: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.custom-dropdown:hover > .custom-dropdown-list[b-q3zpbyl1ok] {
    display: block;
}

.custom-dropdown-link[b-q3zpbyl1ok] {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

    .custom-dropdown-link:hover[b-q3zpbyl1ok] {
        background: rgba(255,255,255,0.15);
    }


.custom-submenu[b-q3zpbyl1ok] {
    position: relative;
}

.custom-dropdown-sublist[b-q3zpbyl1ok] {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #2a2a2a;
    border-radius: 6px;
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.custom-submenu:hover > .custom-dropdown-sublist[b-q3zpbyl1ok] {
    display: block;
}

.custom-submenu > .custom-dropdown-link[b-q3zpbyl1ok]::after {
    content: "\25B6";
    float: right;
    font-size: 0.7em;
    opacity: 0.6;
    margin-left: 0.5em;
}

@media (max-width: 1007px) {
    .custom-toggler[b-q3zpbyl1ok] {
        display: block;
    }

    .custom-nav-links[b-q3zpbyl1ok] {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #111;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: flex-start;
        padding-left: 0;
    }

        .custom-nav-links.active[b-q3zpbyl1ok] {
            max-height: 2000px;
        }

    .custom-dropdown-list[b-q3zpbyl1ok],
    .custom-dropdown-sublist[b-q3zpbyl1ok] {
        position: static;
        box-shadow: none;
        background: #1e1e1e;
        width: 100%;
        min-height: 1px;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 0;
    }

        .custom-dropdown-list.show[b-q3zpbyl1ok],
        .custom-dropdown-sublist.show[b-q3zpbyl1ok] {
            min-height: 100px;
        }

    .custom-dropdown-link[b-q3zpbyl1ok],
    .custom-link[b-q3zpbyl1ok] {
        text-align: left;
        width: 100%;
        padding-left: 1.5rem;
    }

    .custom-submenu .custom-dropdown-sublist .custom-dropdown-link[b-q3zpbyl1ok] {
        padding-left: 2.5rem;
    }

    .custom-submenu > .custom-dropdown-link[b-q3zpbyl1ok]::after {
        content: '\25B6';
        transform: rotate(0deg);
        float: right;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .custom-submenu.show > .custom-dropdown-link[b-q3zpbyl1ok]::after {
        transform: rotate(90deg);
    }
}
/* /Layout/FinanceSection.razor.rz.scp.css */
.hero-card[b-kpacddsp9g] {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

    .hero-card:hover[b-kpacddsp9g] {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background-color: #e6e6e6;
        cursor: default;
    }

.industry-hero .btn-outline-light[b-kpacddsp9g] {
    border-width: 2px;
    transition: all 0.3s ease;
}

    .industry-hero .btn-outline-light:hover[b-kpacddsp9g] {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
/* /Layout/Footer.razor.rz.scp.css */
.footer a:hover[b-hgy5g7itso] {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-bottom[b-hgy5g7itso] {
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
    .footer .col-6[b-hgy5g7itso] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* /Layout/LogoScroller.razor.rz.scp.css */
.marquee[b-bhk8789w6k] {
    display: flex;
    block-size: var(--marquee-item-height);
    margin-block: var(--marquee-item-height);
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient( to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0) );
}

.marquee--8[b-bhk8789w6k] {
    --marquee-item-width: 100px;
    --marquee-item-height: 100px;
    --marquee-duration: 36s;
    --marquee-items: 8;
}

.marquee__item[b-bhk8789w6k] {
    --marquee-item-offset: max( calc(var(--marquee-item-width) * var(--marquee-items)), calc(100% + var(--marquee-item-width)) );
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go-b-bhk8789w6k linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

    .marquee__item:nth-child(4n)[b-bhk8789w6k] {
        border-top-right-radius: 1rem;
    }

    .marquee__item:nth-child(4n + 1)[b-bhk8789w6k] {
        border-bottom-right-radius: 1rem;
    }

    .marquee__item:nth-child(4n + 2)[b-bhk8789w6k] {
        border-bottom-left-radius: 1rem;
    }

    .marquee__item:nth-child(4n + 3)[b-bhk8789w6k] {
        border-top-left-radius: 1rem;
    }

.marquee--8 .marquee__item:nth-of-type(1)[b-bhk8789w6k] {
    --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2)[b-bhk8789w6k] {
    --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3)[b-bhk8789w6k] {
    --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4)[b-bhk8789w6k] {
    --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5)[b-bhk8789w6k] {
    --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6)[b-bhk8789w6k] {
    --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7)[b-bhk8789w6k] {
    --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8)[b-bhk8789w6k] {
    --marquee-item-index: 8;
}

@keyframes go-b-bhk8789w6k {
    to {
        inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}

.section-title[b-bhk8789w6k] {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title[b-bhk8789w6k]::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #a2cd3a, #75c049, #1a994d);
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-vxc63zxqai] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vxc63zxqai] {
    flex: 1;
}

.sidebar[b-vxc63zxqai] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-vxc63zxqai] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vxc63zxqai]  a, .top-row[b-vxc63zxqai]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-vxc63zxqai]  a:hover, .top-row[b-vxc63zxqai]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vxc63zxqai]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.nav-container[b-vxc63zxqai] {
    width: 100%;
}

@media (max-width: 640.98px) {
    .top-row[b-vxc63zxqai] {
        justify-content: space-between;
    }

    .top-row[b-vxc63zxqai]  a, .top-row[b-vxc63zxqai]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vxc63zxqai] {
        flex-direction: row;
    }

    .sidebar[b-vxc63zxqai] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vxc63zxqai] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vxc63zxqai]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vxc63zxqai], article[b-vxc63zxqai] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */

.custom-navbar[b-qfn98b0gu7] {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.custom-container[b-qfn98b0gu7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.custom-logo[b-qfn98b0gu7] {
    height: 80px;
    width: auto;
}

.custom-brand[b-qfn98b0gu7] {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.custom-toggler[b-qfn98b0gu7] {
    background: none;
    color: #fff;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    display: none;
}


.custom-nav-links[b-qfn98b0gu7] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.custom-link[b-qfn98b0gu7] {
    display: block;
    padding: 0.75rem 1.8rem;
    color: #f1f1f1;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .custom-link:hover[b-qfn98b0gu7] {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }


.custom-dropdown[b-qfn98b0gu7] {
    position: relative;
}

.custom-dropdown-list[b-qfn98b0gu7] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    border-radius: 6px;
    min-width: 220px;
    padding: 6px 0;
    list-style: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.custom-dropdown:hover > .custom-dropdown-list[b-qfn98b0gu7] {
    display: block;
}

.custom-dropdown-link[b-qfn98b0gu7] {
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

    .custom-dropdown-link:hover[b-qfn98b0gu7] {
        background: rgba(255,255,255,0.15);
    }


.custom-submenu[b-qfn98b0gu7] {
    position: relative;
}

.custom-dropdown-sublist[b-qfn98b0gu7] {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #2a2a2a;
    border-radius: 6px;
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.custom-submenu:hover > .custom-dropdown-sublist[b-qfn98b0gu7] {
    display: block;
}

.custom-submenu > .custom-dropdown-link[b-qfn98b0gu7]::after {
    content: "\25B6";
    float: right;
    font-size: 0.7em;
    opacity: 0.6;
    margin-left: 0.5em;
}

@media (max-width: 1007px) {
    .custom-toggler[b-qfn98b0gu7] {
        display: block;
    }

    .custom-nav-links[b-qfn98b0gu7] {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #111;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: flex-start; 
        padding-left: 0; 
    }

        .custom-nav-links.active[b-qfn98b0gu7] {
            max-height: 2000px; 
        }

    .custom-dropdown-list[b-qfn98b0gu7],
    .custom-dropdown-sublist[b-qfn98b0gu7] {
        position: static;
        box-shadow: none;
        background: #1e1e1e;
        width: 100%;
        min-height: 1px;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 0; 
    }

        .custom-dropdown-list.show[b-qfn98b0gu7],
        .custom-dropdown-sublist.show[b-qfn98b0gu7] {
            min-height: 100px; 
        }

    .custom-dropdown-link[b-qfn98b0gu7],
    .custom-link[b-qfn98b0gu7] {
        text-align: left; 
        width: 100%; 
        padding-left: 1.5rem; 
    }

    .custom-submenu .custom-dropdown-sublist .custom-dropdown-link[b-qfn98b0gu7] {
        padding-left: 2.5rem;
    }

    .custom-submenu > .custom-dropdown-link[b-qfn98b0gu7]::after {
        content: '\25B6'; 
        transform: rotate(0deg);
        float: right;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .custom-submenu.show > .custom-dropdown-link[b-qfn98b0gu7]::after {
        transform: rotate(90deg);
    }
}
/* /Layout/ServicesFooter.razor.rz.scp.css */
.section-title[b-z6sw2xm5f0] {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title[b-z6sw2xm5f0]::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #a2cd3a, #75c049, #1a994d);
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

.service-card[b-z6sw2xm5f0] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 5px solid transparent;
    padding: 2rem 1.5rem;
}

    .service-card:hover[b-z6sw2xm5f0] {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        border-top: 5px solid #198754;
    }

.icon-circle[b-z6sw2xm5f0] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #198754, #00c9a7);
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-circle[b-z6sw2xm5f0] {
    transform: rotate(10deg) scale(1.1);
}

.btn-homepage-nav[b-z6sw2xm5f0] {
    background: linear-gradient(135deg, #2c313c, #495057);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 25px;
    width: auto;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .btn-homepage-nav:hover[b-z6sw2xm5f0] {
        background: linear-gradient(135deg, #495057, #6c757d);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .btn-homepage-nav[b-z6sw2xm5f0] {
        width: 100%;
    }
}
.btn-homepage-nav i[b-z6sw2xm5f0] {
    transition: transform 0.3s ease;
}

.btn-homepage-nav:hover i[b-z6sw2xm5f0] {
    transform: translateX(4px);
}
/* /Layout/Testimonials.razor.rz.scp.css */
#quoteCarousel[b-p5fteawmdv] {
    width: 100%;
    margin: 0;
}

#quoteCarousel .carousel-inner[b-p5fteawmdv] {
    min-height: 300px;
    background: #212529; 
    display: flex;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
}

    #quoteCarousel blockquote[b-p5fteawmdv] {
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        background: #2a2f35;
        padding: 2rem 3rem;
        border-radius: 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        #quoteCarousel blockquote:hover[b-p5fteawmdv] {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.6);
        }


#quoteCarousel blockquote[b-p5fteawmdv]::before,
#quoteCarousel blockquote[b-p5fteawmdv]::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('/Images/deco-top-left.webp') no-repeat center/contain;
    opacity: 0.6;
}

    #quoteCarousel blockquote[b-p5fteawmdv]::before {
        top: 12px;
        left: 12px;
        background-image: url("data:image/svg+xml;utf8,<svg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M0 0 L40 0 L0 40 Z' fill='%23FFD70080'/></svg>");
    }

#quoteCarousel blockquote[b-p5fteawmdv]::after {
    content: "";
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 170px; 
    height: 70px; 
    background-image: url("Images/Small_Logo.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7; 
}

@media (max-width: 992px) {
    #quoteCarousel blockquote[b-p5fteawmdv]::after {
        width: 150px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    #quoteCarousel blockquote[b-p5fteawmdv]::after {
        width: 100px;
        height: 30px;
    }
}

#quoteCarousel blockquote footer[b-p5fteawmdv] {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    color: #ccc;
    text-align: center;
}

#quoteCarousel blockquote footer strong[b-p5fteawmdv] {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

#quoteCarousel blockquote footer cite[b-p5fteawmdv] {
    font-style: normal;
    font-size: 0.85rem;
    color: #aaa;
}



.carousel-indicators[b-p5fteawmdv] {
    gap: 0.8rem;
}

    .carousel-indicators button[b-p5fteawmdv] {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
    }

        .carousel-indicators button:hover[b-p5fteawmdv] {
            background-color: rgba(255, 215, 0, 0.5);
            transform: scale(1.2);
            border-color: rgba(255, 215, 0, 0.7);
        }

    .carousel-indicators .active[b-p5fteawmdv] {
        background-color: #FFD700;
        border-color: #FFD700;
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }


.carousel-control-prev[b-p5fteawmdv],
.carousel-control-next[b-p5fteawmdv] {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-control-prev:hover[b-p5fteawmdv],
    .carousel-control-next:hover[b-p5fteawmdv] {
        background: rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.8);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        transform: translateY(-50%) scale(1.1);
    }

.carousel-control-prev-icon[b-p5fteawmdv],
.carousel-control-next-icon[b-p5fteawmdv] {
    filter: none !important;
    width: 1.5rem;
    height: 1.5rem;
    background-size: 100%;
    background-image: none;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #FFD700; 
}

.carousel-control-prev-icon[b-p5fteawmdv] {
    mask-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M11 2 5 8l6 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.carousel-control-next-icon[b-p5fteawmdv] {
    mask-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M5 2l6 6-6 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.carousel-control-prev[b-p5fteawmdv] {
    left: 20px;
}

.carousel-control-next[b-p5fteawmdv] {
    right: 20px;
}
/* /Pages/About.razor.rz.scp.css */
.about-header-container[b-moyr82p83n] {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    font-size: 55px;
    color: white;
}

.hero-section[b-moyr82p83n] {
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529; 
    color: white;
}

.hero-title[b-moyr82p83n] {
    font-size: 55px;
    padding: 2rem;
}

.hero-text[b-moyr82p83n] {
    font-size: 20px;
    padding: 2rem;
}

@media (max-width: 992px) {
    .hero-title[b-moyr82p83n] {
        font-size: 38px;
    }

    .hero-text[b-moyr82p83n] {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title[b-moyr82p83n] {
        font-size: 28px;
    }

    .hero-text[b-moyr82p83n] {
        font-size: 16px;
    }
}
body[b-moyr82p83n] {
    overflow-x: hidden;
}

[data-aos][b-moyr82p83n] {
    transition: all 0.8s ease-in-out;
}
/* /Pages/Contact.razor.rz.scp.css */
.contact-section-dark[b-pqv3kwhym7] {
    background: #f5f5f5;
}
    .contact-section-dark h3[b-pqv3kwhym7]{
        font-weight: 600;
        color: #f1f1f1;
    }

.form-control-dark[b-pqv3kwhym7] {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #f8f9fa;
}

    .form-control-dark[b-pqv3kwhym7]::placeholder {
        color: #aaa;
    }

    .form-control-dark:focus[b-pqv3kwhym7] {
        background-color: #1e1e1e;
        border-color: #0d6efd;
        color: #fff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }
/* /Pages/Home.razor.rz.scp.css */
.transitioning-text-container[b-g5joibzoit] {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
}

.transitioning-text[b-g5joibzoit] {
    color: white;
    font-size: 70px;
    padding: 2rem;
    text-align: center;
    animation: fadeInOut-b-g5joibzoit 6s ease-in-out infinite;
}

@media (max-width: 992px) {
    .transitioning-text-container[b-g5joibzoit] {
        min-height: 250px;
    }

    .transitioning-text[b-g5joibzoit] {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .transitioning-text-container[b-g5joibzoit] {
        min-height: 200px;
    }

    .transitioning-text[b-g5joibzoit] {
        font-size: 40px;
    }
}

@keyframes fadeInOut-b-g5joibzoit {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}




.card.fixed-height[b-g5joibzoit] {
    height: auto;
    padding-bottom: 20px;
}

.card[b-g5joibzoit] {
    border-radius: 0 !important;
    border-color: #dcdcdc;
    background-color: #F5F5F5;
    overflow: hidden;
}

.btn-homepage-nav[b-g5joibzoit] {
    background-color: #1A994D; 
    color: white;
    border: none;
    border-radius: 30px; 
    font-weight: bold;
    padding: 10px 25px;
    width: 250px;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
}

    .btn-homepage-nav:hover[b-g5joibzoit] {
        background-color: #A2CD3A; 
        color: #212529;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(26, 153, 77, 0.25); 
    }

.card-title[b-g5joibzoit]{
    padding-top: 30px;
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 20px;
}

@media (max-width: 425px) {
    .card-title[b-g5joibzoit] {
        padding-top: 20px;
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    .btn-homepage-nav[b-g5joibzoit] {
        width: 100%;
    }
}

.card-text[b-g5joibzoit]{
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-img-top[b-g5joibzoit] {
    transition: transform 0.5s ease;
    padding: 10px;
}

.card-img-top:hover[b-g5joibzoit] {
    transform: scale(1.04);
}

/* /Pages/Industry.razor.rz.scp.css */
.industry-hero[b-22bqab8yss] {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.industry-brokers[b-22bqab8yss] {
    border-left: 5px solid #dc3545; 
    background: #fdecea;
}


.industry-lenders[b-22bqab8yss] {
    border-left: 5px solid #6610f2; 
    background: #f4f2ff;
}

.industry-vendors[b-22bqab8yss] {
    border-left: 5px solid #198754; 
    background: #e9f7ef;
}

.industry-suppliers[b-22bqab8yss] {
    border-left: 5px solid #fd7e14; 
    background: #fff4e6;
}

.industry-section img[b-22bqab8yss] {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-card[b-22bqab8yss] {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

    .hero-card:hover[b-22bqab8yss] {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background-color: #e6e6e6; 
        cursor: default;
    }

.industry-hero .btn-outline-light[b-22bqab8yss] {
    border-width: 2px;
    transition: all 0.3s ease;
}

    .industry-hero .btn-outline-light:hover[b-22bqab8yss] {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

.industry-hero-banner[b-22bqab8yss] {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.industry-overlay[b-22bqab8yss] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.banner-text[b-22bqab8yss] {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    transition: all 0.5s ease;
}

    .banner-text.right-align[b-22bqab8yss] {
        margin-right: 0;
    }

    .banner-text.left-align[b-22bqab8yss] {
        margin-left: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .banner-text h2[b-22bqab8yss] {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
    }

    .banner-text p[b-22bqab8yss] {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #f8f9fa;
    }

.industry-details-section[b-22bqab8yss] {
    background: #f8f9fa;
}

.hover-card[b-22bqab8yss] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-card:hover[b-22bqab8yss] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 992px) {
    .industry-hero-banner[b-22bqab8yss] {
        min-height: 400px;
        background-position: center right;
    }

    .banner-text[b-22bqab8yss] {
        max-width: 100%;
        text-align: left !important;
        background: rgba(0,0,0,0.6);
        margin: 0 !important;
        padding: 1.5rem;
    }
}

.industry-details-section[b-22bqab8yss] {
    background: #f8f9fa;
    border-left: 6px solid transparent;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0 10px 10px 0;
}

.industry-brokers[b-22bqab8yss] {
    border-left-color: #dc3545; 
}

.industry-lenders[b-22bqab8yss] {
    border-left-color: #6610f2; 
}

.industry-vendors[b-22bqab8yss] {
    border-left-color: #198754; 
}

.industry-suppliers[b-22bqab8yss] {
    border-left-color: #fd7e14; 
}

.industry-brokers[b-22bqab8yss] {
    background: #fdecea;
}

.industry-lenders[b-22bqab8yss] {
    background: #f4f2ff;
}

.industry-vendors[b-22bqab8yss] {
    background: #e9f7ef;
}

.industry-suppliers[b-22bqab8yss] {
    background: #fff4e6;
}

.industry-details-section:hover[b-22bqab8yss] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.industry-details-section h4[b-22bqab8yss] {
    color: #333;
    font-weight: 600;
}

.industry-details-section ul[b-22bqab8yss] {
    margin-bottom: 1.5rem;
}

.industry-details-section .list-group-item[b-22bqab8yss] {
    border: none;
    background: transparent;
    color: #555;
    font-size: 1rem;
}

.hero[b-22bqab8yss] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 10%;
    background: linear-gradient(120deg, #eef3ff 0%, #ffffff 100%);
    flex-wrap: wrap;
}

.hero-text[b-22bqab8yss] {
    flex: 1 1 480px;
}

    .hero-text h1[b-22bqab8yss] {
        font-size: 2.8em;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1e1e2f;
    }

    .hero-text p[b-22bqab8yss] {
        font-size: 1.1em;
        line-height: 1.6;
        color: white;
        margin-bottom: 30px;
    }

.hero-buttons[b-22bqab8yss] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main[b-22bqab8yss] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-main:hover[b-22bqab8yss] {
        background-color: #0056b3;
    }

.btn-outline[b-22bqab8yss] {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-outline:hover[b-22bqab8yss] {
        background-color: #007bff;
        color: #fff;
    }

.hero-illustration[b-22bqab8yss] {
    flex: 1 1 400px;
    text-align: center;
}

    .hero-illustration img[b-22bqab8yss] {
        width: 100%;
        max-width: 450px;
        border-radius: 20px;
    }

.highlight-cards[b-22bqab8yss] {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 10%;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.highlight-card[b-22bqab8yss] {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .highlight-card:hover[b-22bqab8yss] {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .highlight-card img[b-22bqab8yss] {
        width: 60px;
        margin-bottom: 15px;
    }

    .highlight-card h3[b-22bqab8yss] {
        font-size: 1.2em;
        margin-bottom: 10px;
        color: #1e1e2f;
    }

    .highlight-card p[b-22bqab8yss] {
        font-size: 0.95em;
        color: #555;
    }

.cta-banner[b-22bqab8yss] {
    text-align: center;
    background: linear-gradient(90deg, #007bff, #00a8ff);
    color: #fff;
    padding: 70px 20px;
}

    .cta-banner h2[b-22bqab8yss] {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .cta-banner p[b-22bqab8yss] {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .cta-banner .btn-main[b-22bqab8yss] {
        background-color: #fff;
        color: #007bff;
    }

        .cta-banner .btn-main:hover[b-22bqab8yss] {
            background-color: #f2f2f2;
        }

@media (max-width: 900px) {
    .hero[b-22bqab8yss] {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-buttons[b-22bqab8yss] {
        justify-content: center;
    }

    .highlight-cards[b-22bqab8yss] {
        padding: 40px 5%;
    }
}

.elearn-advert[b-22bqab8yss] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

.section-title[b-22bqab8yss] {
    font-size: 2.4em;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.section-subtitle[b-22bqab8yss] {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.elearn-grid[b-22bqab8yss] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
    width: 100%;
}

.elearn-card[b-22bqab8yss] {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

    .elearn-card:hover[b-22bqab8yss] {
        transform: translateY(-6px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    }

.elearn-img[b-22bqab8yss] {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.elearn-info[b-22bqab8yss] {
    padding: 25px;
}

    .elearn-info h3[b-22bqab8yss] {
        font-size: 1.5em;
        margin-bottom: 12px;
        color: #1e1e2f;
    }

    .elearn-info p[b-22bqab8yss] {
        color: #555;
        font-size: 1em;
        line-height: 1.5;
        margin-bottom: 20px;
    }

.readmore-btn[b-22bqab8yss] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .readmore-btn:hover[b-22bqab8yss] {
        background-color: #0056b3;
    }

@media (max-width: 800px) {
    .elearn-info[b-22bqab8yss] {
        text-align: center;
    }
}

.services-hero[b-22bqab8yss] {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('/Images/elearn.webp') center/cover no-repeat;
    min-height: 400px;
}

.hero-section[b-22bqab8yss] {
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    color: white;
}

.hero-title[b-22bqab8yss] {
    font-size: 55px;
    padding: 2rem;
}

.hero-text[b-22bqab8yss] {
    font-size: 20px;
    padding: 2rem;
}

@media (max-width: 992px) {
    .hero-title[b-22bqab8yss] {
        font-size: 38px;
    }

    .hero-text[b-22bqab8yss] {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title[b-22bqab8yss] {
        font-size: 28px;
    }

    .hero-text[b-22bqab8yss] {
        font-size: 16px;
    }
}
/* /Pages/MeetTheTeam.razor.rz.scp.css */
.team-card[b-6vklw5cv26] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
}

    .team-card:hover[b-6vklw5cv26] {
        transform: translateY(-5px);
    }

.director-card[b-6vklw5cv26] {
    background: linear-gradient(135deg, #e5b900, #c9a200, #b38b00);
}

    .director-card:hover[b-6vklw5cv26] {
        box-shadow: 0 0 25px rgba(229,185,0,0.8);
    }

.manager-card[b-6vklw5cv26] {
    background: linear-gradient(135deg, #a2cd3a, #75c049, #1a994d);
}

    .manager-card:hover[b-6vklw5cv26] {
        box-shadow: 0 0 25px rgba(117,192,73,0.8);
    }

.team-img[b-6vklw5cv26] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-img:hover[b-6vklw5cv26] {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(255,255,255,0.5);
    }

.staff-img[b-6vklw5cv26] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #fff;
}

.team-container[b-6vklw5cv26] {
    position: relative;
}

.team-overlay[b-6vklw5cv26] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 10px;
}

.team-container:hover .team-overlay[b-6vklw5cv26] {
    opacity: 1;
}

.team-card .card-title[b-6vklw5cv26] {
    font-weight: bold;
}

.team-card .card-text[b-6vklw5cv26] {
    font-size: 0.9rem;
    opacity: 0.9;
}
.section-title[b-6vklw5cv26] {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title[b-6vklw5cv26]::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #a2cd3a, #75c049, #1a994d);
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }
/* /Pages/Services.razor.rz.scp.css */
.about-header-container[b-oqthmu4p2r] {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    font-size: 55px;
    color: white;
}

.hero-section[b-oqthmu4p2r] {
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    color: white;
}

.hero-title[b-oqthmu4p2r] {
    font-size: 55px;
    padding: 2rem;
}

.hero-text[b-oqthmu4p2r] {
    font-size: 20px;
    padding: 2rem;
}

@media (max-width: 992px) {
    .hero-title[b-oqthmu4p2r] {
        font-size: 38px;
    }

    .hero-text[b-oqthmu4p2r] {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title[b-oqthmu4p2r] {
        font-size: 28px;
    }

    .hero-text[b-oqthmu4p2r] {
        font-size: 16px;
    }
}

body[b-oqthmu4p2r] {
    overflow-x: hidden;
}

[data-aos][b-oqthmu4p2r] {
    transition: all 0.8s ease-in-out;
}
.services-hero[b-oqthmu4p2r] {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('/Images/Services.webp') center/cover no-repeat;
    min-height: 400px;
}

.feature-card[b-oqthmu4p2r] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover[b-oqthmu4p2r] {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

        .feature-card:hover .feature-icon i[b-oqthmu4p2r] {
            color: #a2cd3a;
            text-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
        }

.feature-icon i[b-oqthmu4p2r] {
    transition: color 0.3s ease, text-shadow 0.3s ease;
    color: #1a994d;
}

.btn-homepage-nav[b-oqthmu4p2r] {
    background: #1a994d;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 25px;
    width: auto;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .btn-homepage-nav:hover[b-oqthmu4p2r] {
        background: #a2cd3a;
        color: black;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .btn-homepage-nav[b-oqthmu4p2r] {
        width: 100%;
    }
}
.btn-homepage-nav i[b-oqthmu4p2r] {
    transition: transform 0.3s ease;
}

.btn-homepage-nav:hover i[b-oqthmu4p2r] {
    transform: translateX(4px);
}
/* /Pages/Shared/CourseModal.razor.rz.scp.css */
.custom-modal-backdrop[b-ibcpldmc16] {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

    .custom-modal-backdrop.show[b-ibcpldmc16] {
        opacity: 1;
        visibility: visible;
    }

.custom-modal[b-ibcpldmc16] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    width: 90%;
    max-width: 800px;
    z-index: 1050;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .custom-modal.show[b-ibcpldmc16] {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

.custom-modal-dialog[b-ibcpldmc16] {
    width: 100%;
}

.custom-modal-content[b-ibcpldmc16] {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.custom-modal-header[b-ibcpldmc16],
.custom-modal-footer[b-ibcpldmc16] {
    padding: 1rem 1.5rem;
}

.custom-modal-body[b-ibcpldmc16] {
    padding: 1rem 1.5rem;
}
.custom-modal-header[b-ibcpldmc16] {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}
/* /Pages/TemporaryHoldingPage.razor.rz.scp.css */
.about-header-container[b-klufrjco53] {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    font-size: 55px;
    color: white;
}

.hero-section[b-klufrjco53] {
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #212529;
    color: white;
}

.hero-title[b-klufrjco53] {
    font-size: 55px;
    padding: 0 2rem 0;
}

.hero-text[b-klufrjco53] {
    font-size: 20px;
    padding: 0 2rem 0;
}

@media (max-width: 992px) {
    .hero-title[b-klufrjco53] {
        font-size: 38px;
    }

    .hero-text[b-klufrjco53] {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title[b-klufrjco53] {
        font-size: 28px;
    }

    .hero-text[b-klufrjco53] {
        font-size: 16px;
    }
}

body[b-klufrjco53] {
    overflow-x: hidden;
}

[data-aos][b-klufrjco53] {
    transition: all 0.8s ease-in-out;
}

.contact-section-dark[b-klufrjco53] {
    background: #f5f5f5;
}

    .contact-section-dark h3[b-klufrjco53] {
        font-weight: 600;
        color: #f1f1f1;
    }

.form-control-dark[b-klufrjco53] {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #f8f9fa;
}

    .form-control-dark[b-klufrjco53]::placeholder {
        color: #aaa;
    }

    .form-control-dark:focus[b-klufrjco53] {
        background-color: #1e1e1e;
        border-color: #0d6efd;
        color: #fff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }
