/* Landing page (default.aspx) — brand styling only; does not alter dynamic controls */

body.landing-page {
    background: #2a2a48;
    overflow-x: hidden;
}

body.landing-page .landing-fintech-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a48 0%, #393960 45%, #7a2e0a 100%);
    opacity: 0.38;
    pointer-events: none;
}

body.landing-page .landing-fintech-bg-media {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Fintech watermark across entire page */
body.landing-page #form1::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../home/landing-watermark.svg");
    background-repeat: repeat;
    background-size: 360px 360px;
    opacity: 0.14;
}

body.landing-page #form1 {
    position: relative;
    z-index: 1;
}

body.landing-page #form1 > * {
    position: relative;
    z-index: 1;
}

/* Top bar */
body.landing-page .landing-top-bar {
    background: linear-gradient(90deg, #393960 0%, #5a2a10 100%) !important;
    color: #fff !important;
    border-bottom: 2px solid #ff4500;
    padding: 10px 0;
}

body.landing-page .landing-top-bar .text-wh {
    color: #fff !important;
}

body.landing-page .landing-top-bar-inner {
    min-height: 44px;
    align-items: center !important;
}

body.landing-page .landing-top-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 28px;
}

body.landing-page .landing-top-contact-item {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

body.landing-page .landing-top-bar-right .landing-top-bar-row {
    justify-content: flex-end;
    margin: 0;
}

body.landing-page .landing-top-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 2px;
}

body.landing-page .landing-top-social li {
    display: inline-flex;
    align-items: center;
}

body.landing-page .landing-top-social li p {
    margin: 0 8px 0 0;
    font-size: 14px;
    line-height: 1;
}

body.landing-page .landing-top-register {
    text-align: right;
    padding-left: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

body.landing-page .landing-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0 !important;
    overflow: hidden;
    z-index: 0;
    animation: landing-register-glow 2.4s ease-in-out infinite;
}

body.landing-page .landing-register-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 35%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.15) 65%,
        transparent 100%
    );
    transform: skewX(-18deg);
    animation: landing-register-shine 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

body.landing-page .landing-register-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 224, 102, 0.85);
    opacity: 0;
    animation: landing-register-ring 2.4s ease-in-out infinite;
    pointer-events: none;
}

body.landing-page .landing-register-btn:hover {
    animation-play-state: paused;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220, 47, 2, 0.45) !important;
}

body.landing-page .landing-register-btn:hover::before,
body.landing-page .landing-register-btn:hover::after {
    animation-play-state: paused;
    opacity: 0;
}

@keyframes landing-register-shine {
    0%,
    18% {
        left: -120%;
    }

    55% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

@keyframes landing-register-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.45);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 14px 3px rgba(255, 107, 0, 0.35);
        transform: scale(1.04);
    }
}

@keyframes landing-register-ring {
    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    45% {
        opacity: 0.9;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.landing-page .landing-register-btn,
    body.landing-page .landing-register-btn::before,
    body.landing-page .landing-register-btn::after {
        animation: none !important;
    }
}

/* Nav / logo row */
body.landing-page .landing-nav-bar {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

body.landing-page .landing-nav-bar h1 {
    border: none !important;
    margin: 0;
}

body.landing-page .landing-nav-bar h1 a.logo img,
body.landing-page .landing-nav-bar h1 a.logo .aspNetDisabled img {
    max-height: 83px;
    width: auto;
    max-width: 285px;
    object-fit: contain;
}

body.landing-page .landing-nav-bar .toggle {
    background-color: #ff4500 !important;
    color: #fff !important;
}

body.landing-page .login-button-2 {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding: 8px 16px !important;
    font-weight: 700 !important;
}

body.landing-page .login-button-2:hover {
    opacity: 0.92;
    color: #fff !important;
}

body.landing-page .landing-nav-bar .col-lg-5.col-4.top-w3layouts {
    text-align: right !important;
}

body.landing-page hr {
    border-color: rgba(255, 69, 0, 0.2);
    margin: 0;
}

/* Banner / hero */
body.landing-page .baneer-w3ls {
    background: rgba(255, 255, 255, 0.04);
}

body.landing-page .banner-left-w3 {
    background: rgba(57, 57, 96, 0.9) !important;
}

body.landing-page .banner-info_agile_w3ls {
    padding: 28px 0;
}

body.landing-page .banner-info_agile_w3ls h5 {
    color: #ffb347;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.landing-page .banner-info_agile_w3ls h3,
body.landing-page .banner-info_agile_w3ls .text-da {
    color: #fff !important;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
}

body.landing-page .banner-info_agile_w3ls p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.65;
}

body.landing-page .button-w3ls {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%) !important;
    border: none !important;
    border-radius: 6px;
    padding: 10px 20px !important;
    font-weight: 600;
    color: #fff !important;
}

body.landing-page .button-w3ls.active {
    background: #393960 !important;
}

body.landing-page .callbacks_container {
    border-left: 3px solid #ff4500;
}

body.landing-page .cpy-right {
    position: relative;
    z-index: 2;
}

body.landing-page .cpy-right .footer-terms-link {
    position: relative;
    z-index: 3;
}

/* About */
body.landing-page .about-right-w3 {
    background: rgba(255, 255, 255, 0.97) !important;
}

body.landing-page .about-right-w3 .w3ls-title,
body.landing-page .about-right-w3 .about-text {
    color: #2d3748;
}

body.landing-page .about-right-w3 .w3ls-title-sub {
    color: #e85d04;
}

/* Content sections with light watermark tint */
body.landing-page .middle,
body.landing-page .blog_w3ls {
    background: rgba(238, 241, 245, 0.94) !important;
    background-image: url("../home/landing-watermark.svg") !important;
    background-repeat: repeat !important;
    background-size: 320px 320px !important;
    background-blend-mode: multiply;
}

body.landing-page .title-section .w3ls-title {
    color: #1a365d;
}

body.landing-page .title-section .w3ls-title span {
    color: #e85d04;
}

body.landing-page .w3pvt-lauits_banner_bottom_left {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d1d9e0;
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: calc(100% - 16px);
}

body.landing-page .w3pvt-lauits_banner_bottom_left h4 a {
    color: #1a365d;
    font-weight: 700;
}

body.landing-page .w3pvt-lauits_banner_bottom_left p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

body.landing-page .med-blog {
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.98) !important;
}

body.landing-page .med-blog .card-body {
    padding: 18px !important;
}

body.landing-page .med-blog .blog-title {
    color: #1a365d !important;
    font-weight: 700;
}

body.landing-page .med-blog p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.65;
}

body.landing-page .hidden-content {
    display: none;
}

body.landing-page .read-more-btn {
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%) !important;
}

body.landing-page .read-more-btn:hover {
    opacity: 0.92;
    color: #fff !important;
}

/* Footer */
body.landing-page footer {
    background: linear-gradient(180deg, rgba(57, 57, 96, 0.97) 0%, rgba(42, 42, 72, 0.98) 100%) !important;
    background-image: url("../home/landing-watermark.svg") !important;
    background-repeat: repeat !important;
    background-size: 300px 300px !important;
    border-top: 3px solid #ff4500;
}

body.landing-page footer .landing-footer-col {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 140, 66, 0.35);
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body.landing-page footer .landing-contact-col {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 180, 80, 0.45);
}

body.landing-page footer .landing-contact-head h3 {
    color: #ffe066 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4500;
}

body.landing-page footer .footer-title h3 {
    color: #ffe066 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

body.landing-page footer .landing-contact-line {
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-bottom: 10px !important;
}

body.landing-page footer .landing-contact-label {
    display: inline-block;
    min-width: 72px;
    color: #ffb347 !important;
    font-weight: 700;
}

body.landing-page footer .landing-contact-mail {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
}

body.landing-page footer .landing-contact-mail:hover {
    color: #ffe066 !important;
}

body.landing-page footer .footer-text p,
body.landing-page footer .footer-text p a {
    color: #ffffff !important;
}

body.landing-page footer .footer-text p a.landing-contact-mail {
    color: #fff !important;
}

body.landing-page footer p {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.landing-page footer a:not(.landing-contact-mail) {
    color: #ffe066 !important;
}

body.landing-page footer .top-right-info p {
    color: #ffb347 !important;
}

body.landing-page footer .form-control {
    border-radius: 6px;
    border: 1px solid #cbd5e0;
    background: #fff !important;
    color: #1a202c !important;
}

body.landing-page footer .submit-contact {
    background: linear-gradient(135deg, #e85d04 0%, #dc2f02 100%) !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 20px;
}

@media (max-width: 991px) {
    body.landing-page .landing-top-bar-left,
    body.landing-page .landing-top-bar-right {
        text-align: center;
    }

    body.landing-page .landing-top-contacts {
        justify-content: center;
    }

    body.landing-page .landing-top-bar-right .landing-top-bar-row {
        justify-content: center;
    }

    body.landing-page .landing-top-social {
        justify-content: center;
    }

    body.landing-page .landing-top-register {
        justify-content: center;
        padding-left: 0;
        margin-top: 8px;
    }

    body.landing-page .landing-nav-bar .menu {
        background: rgba(255, 255, 255, 0.98);
    }

    body.landing-page .w3pvt-lauits_banner_bottom_left {
        margin-bottom: 12px;
    }

    body.landing-page footer .landing-footer-col {
        margin-bottom: 14px;
    }
}

@media (max-width: 767px) {
    body.landing-page .landing-fintech-bg {
        opacity: 0.26;
    }

    body.landing-page #form1::before {
        opacity: 0.1;
        background-size: 280px 280px;
    }

    body.landing-page .banner-left-w3 {
        text-align: center;
    }

    body.landing-page footer .landing-contact-label {
        display: block;
        margin-bottom: 2px;
    }
}
