:root {
    --sv-dark: #07182e;
    --sv-blue: #1768ff;
    --sv-cyan: #20d6e8;
    --sv-light: #f5f8fc
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

body {
    font-family: Inter,Segoe UI,Arial,sans-serif;
    background: var(--sv-light);
    color: #172033;
    overflow-x: hidden
}

.site-main {
    padding: 0
}

.sv-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(180deg,rgba(3,14,32,.95),rgba(3,14,32,.35),transparent);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg,var(--sv-blue),var(--sv-cyan))
}

.home-slider, .home-slider .carousel, .home-slider .carousel-inner, .home-slider .carousel-item, .slider-image {
    min-height: 100vh
}

.slider-image {
    position: relative;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(3,14,32,.97),rgba(3,18,42,.84),rgba(3,18,42,.18))
}

.slider-content {
    position: relative;
    z-index: 2;
    padding-top: 145px;
    padding-bottom: 110px;
    color: #fff
}

    .slider-content h1 {
        font-size: clamp(3rem,6vw,5.8rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.05em;
        max-width: 900px
    }

    .slider-content .lead {
        max-width: 760px;
        color: rgba(255,255,255,.82);
        font-size: 1.25rem
    }

.slider-badge {
    display: inline-flex;
    padding: .58rem 1rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase
}

.section-pad {
    padding: 90px 0
}

.eyebrow {
    color: var(--sv-blue);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem
}

.sv-card {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15,34,65,.08);
    height: 100%;
    transition: .25s
}

    .sv-card:hover {
        transform: translateY(-5px)
    }

.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #e8f0ff;
    color: var(--sv-blue);
    font-size: 1.4rem
}

.section-image {
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15,34,65,.14)
}

.profile-photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px 18px 0 0
}

.page-hero {
    padding: 150px 0 90px;
    background: linear-gradient(120deg,#07182e,#114895);
    color: #fff
}

.form-shell {
    max-width: 950px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: clamp(22px,5vw,48px);
    box-shadow: 0 16px 50px rgba(15,34,65,.1)
}

.footer {
    background: #061426;
    color: #fff
}

.admin-sidebar {
    min-height: 100vh;
    background: #07182e
}

    .admin-sidebar a {
        display: block;
        color: #c7d5e7;
        text-decoration: none;
        padding: .7rem .9rem;
        border-radius: .6rem
    }

        .admin-sidebar a:hover {
            background: #12335f;
            color: #fff
        }

@media(max-width:767.98px) {
    .slider-content {
        padding-top: 125px
    }

        .slider-content h1 {
            font-size: 2.8rem
        }

        .slider-content .btn {
            width: 100%
        }

    .section-pad {
        padding: 65px 0
    }

    .section-image {
        min-height: 280px
    }
}

.customer-logo {
    width: 140px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(15,34,65,.08);
    border-radius: 16px;
    padding: 12px
}

.customer-marquee {
    overflow: hidden;
    border-radius: 24px;
    background: #f7f9fd;
    border: 1px solid rgba(15,34,65,.08);
    padding: 24px 0
}

.customer-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: customerScroll 28s linear infinite
}

.customer-marquee:hover .customer-track {
    animation-play-state: paused
}

.customer-chip {
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,34,65,.07);
    text-decoration: none;
    color: #172033
}

    .customer-chip img {
        width: 72px;
        height: 52px;
        object-fit: contain
    }

@keyframes customerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-45%)
    }
}


.site-main {
    width: 100%;
    margin: 0;
    padding: 0 !important;
}

.home-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: #07182e;
}

    .home-slider .carousel,
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        width: 100%;
        height: 100%;
        min-height: 680px;
    }

.slider-image {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-color: #07182e;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transform: scale(1.06);
    transition: transform 7s ease;
}

.carousel-item.active .slider-image {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(3, 14, 32, 0.97) 0%, rgba(3, 18, 42, 0.88) 42%, rgba(3, 18, 42, 0.48) 70%, rgba(3, 18, 42, 0.15) 100% );
}

.slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 100px;
    color: #fff;
}

    .slider-content h1 {
        max-width: 900px;
        margin: 20px 0 24px;
        color: #fff;
        font-size: clamp(3rem, 6vw, 5.8rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .slider-content .lead {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(1.05rem, 2vw, 1.3rem);
        line-height: 1.7;
    }

.slider-badge {
    display: inline-flex;
    padding: 0.58rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Start hidden on every slide */
.carousel-item .slide-animate {
    opacity: 0;
    transform: translateY(38px);
}

/* Animate again whenever Bootstrap marks a slide active */
.carousel-item.active .slide-animate {
    animation-name: svSlideContentUp;
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.carousel-item.active .slide-delay-1 {
    animation-delay: 0.15s;
}

.carousel-item.active .slide-delay-2 {
    animation-delay: 0.30s;
}

.carousel-item.active .slide-delay-3 {
    animation-delay: 0.45s;
}

.carousel-item.active .slide-delay-4 {
    animation-delay: 0.60s;
}

@keyframes svSlideContentUp {
    from {
        opacity: 0;
        transform: translateY(38px);
    }

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

.home-slider .carousel-control-prev,
.home-slider .carousel-control-next,
.home-slider .carousel-indicators {
    z-index: 5;
}

.section-image {
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 28px;
}

.customer-marquee {
    overflow: hidden;
    padding: 24px 0;
    border: 1px solid rgba(15, 34, 65, 0.08);
    border-radius: 24px;
    background: #f7f9fd;
}

.customer-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: svCustomerScroll 28s linear infinite;
}

.customer-marquee:hover .customer-track {
    animation-play-state: paused;
}

.customer-chip {
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #fff;
    color: #172033;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 34, 65, 0.07);
}

    .customer-chip img {
        width: 72px;
        height: 52px;
        object-fit: contain;
    }

@keyframes svCustomerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-45%);
    }
}

@media (max-width: 767.98px) {

    .home-slider,
    .home-slider .carousel,
    .home-slider .carousel-inner,
    .home-slider .carousel-item,
    .slider-image {
        height: 100svh;
        min-height: 620px;
    }

    .slider-content {
        padding-top: 125px;
        padding-bottom: 90px;
    }

        .slider-content h1 {
            font-size: 2.75rem;
        }

        .slider-content .btn {
            width: 100%;
        }
}
/* Add to the END of Assets/css/site.css */

.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

    .reveal.reveal-left {
        transform: translateX(-70px);
    }

    .reveal.reveal-right {
        transform: translateX(70px);
    }

    .reveal.reveal-scale {
        transform: scale(0.9);
    }

    .reveal.reveal-visible {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.40s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

/* Slight hover effect after reveal */
.reveal-visible .sv-card,
.sv-card.reveal-visible {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 767.98px) {
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right {
        transform: translateY(35px);
    }

        .reveal.reveal-scale {
            transform: scale(0.95);
        }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* Add to the END of Assets/css/site.css */

/* ===============================
   COMPLETE STANDARDVERSE FOOTER
   =============================== */

.sv-footer {
    position: relative;
    color: #fff;
    background: radial-gradient( circle at 15% 0%, rgba(23, 104, 255, 0.18), transparent 32% ), radial-gradient( circle at 85% 15%, rgba(32, 214, 232, 0.11), transparent 28% ), #061426;
}

.sv-footer-top {
    padding: 78px 0 36px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
}

    .footer-brand:hover {
        color: #fff;
    }

.footer-company-name {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-description {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.8;
}

.footer-heading {
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 11px;
    }

    .footer-links a,
    .footer-contact a {
        color: rgba(255, 255, 255, 0.62);
        text-decoration: none;
    }

        .footer-links a:hover,
        .footer-contact a:hover {
            color: var(--sv-cyan);
            padding-left: 3px;
        }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.62);
    }

    .footer-contact i {
        margin-top: 2px;
        color: var(--sv-cyan);
    }

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

    .footer-socials a {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        text-decoration: none;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

        .footer-socials a:hover {
            transform: translateY(-3px);
            border-color: var(--sv-cyan);
            background: rgba(32, 214, 232, 0.15);
            color: #fff;
        }

.footer-newsletter {
    margin-top: 55px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.footer-subscribe .form-control {
    min-height: 52px;
    border: 0;
    border-radius: 13px 0 0 13px;
}

.footer-subscribe .btn {
    min-width: 130px;
    border-radius: 0 13px 13px 0;
    font-weight: 700;
}

.sv-footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.88rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

    .footer-legal-links a {
        color: rgba(255, 255, 255, 0.58);
        text-decoration: none;
    }

        .footer-legal-links a:hover {
            color: var(--sv-cyan);
        }

/* ===============================
   CUSTOMER SHOWCASE FIX
   =============================== */

.customer-showcase {
    min-height: auto !important;
}

.customer-marquee {
    position: relative;
    min-height: 140px;
    overflow: hidden;
    padding: 26px 0;
    border: 1px solid rgba(15, 34, 65, 0.08);
    border-radius: 24px;
    background: #f7f9fd;
}

    .customer-marquee::before,
    .customer-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 3;
        width: 80px;
        pointer-events: none;
    }

    .customer-marquee::before {
        left: 0;
        background: linear-gradient( 90deg, #f7f9fd, rgba(247, 249, 253, 0) );
    }

    .customer-marquee::after {
        right: 0;
        background: linear-gradient( 270deg, #f7f9fd, rgba(247, 249, 253, 0) );
    }

.customer-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 22px;
    padding: 0 24px;
    animation: svCustomerTicker 32s linear infinite;
}

.customer-marquee:hover .customer-track {
    animation-play-state: paused;
}

.customer-chip {
    min-width: 250px;
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(15, 34, 65, 0.07);
    border-radius: 18px;
    background: #fff;
    color: #172033;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 34, 65, 0.07);
}

    .customer-chip:hover {
        transform: translateY(-3px);
        color: var(--sv-blue);
    }

    .customer-chip img {
        width: 78px;
        height: 56px;
        flex: 0 0 auto;
        object-fit: contain;
    }

    .customer-chip span {
        font-weight: 700;
    }

@keyframes svCustomerTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-40%);
    }
}

.customer-empty {
    padding: 25px;
    border: 1px dashed rgba(15, 34, 65, 0.18);
    border-radius: 18px;
    color: #6c7a90;
    text-align: center;
    background: #fff;
}

@media (max-width: 767.98px) {

    .sv-footer-top {
        padding-top: 60px;
    }

    .footer-newsletter {
        padding: 24px;
    }

    .footer-subscribe {
        display: block;
    }

        .footer-subscribe .form-control,
        .footer-subscribe .btn {
            width: 100%;
            border-radius: 12px;
        }

        .footer-subscribe .btn {
            margin-top: 10px;
        }

    .customer-marquee::before,
    .customer-marquee::after {
        width: 35px;
    }
}
