﻿body {
    background: #f4f7fb;
}

/* ================= BREADCRUMB AREA ================= #046ad3*/

.breadcrumb-area {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.breadcrumb-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-content .breadcrumb {
    background: transparent;
    padding: 0;
}

    .breadcrumb-content .breadcrumb .breadcrumb-item,
    .breadcrumb-content .breadcrumb .breadcrumb-item a {
        color: #fff;
        font-size: 16px;
    }

/* ================= MAIN CARD ================= */

.fraud-main-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    margin-top: 24px;
    margin-bottom: 17px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .fraud-main-card:before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 220px;
        height: 220px;
        background: rgba(13,110,253,0.05);
        border-radius: 50%;
    }

    .fraud-main-card:after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 180px;
        height: 180px;
        background: rgba(23,59,108,0.05);
        border-radius: 50%;
    }

/* ================= LOCK DESIGN ================= */

.lock-section {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.lock-circle {
    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#046ad3,#173b6c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    animation: pulse 2s infinite;
}

    .lock-circle i {
        color: #fff;
        font-size: 60px;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fraud-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #173b6c;
    margin-top: 25px;
}

.fraud-subtitle {
    text-align: center;
    color: #666;
    font-size: 17px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* ================= INFO BOX ================= */

.fraud-box {
    background: #f0f7ff;
    border-left: 10px solid #0d6efd;
    border-radius: 26px;
    padding: 25px;
    margin-bottom: 14px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

    .fraud-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(10,0,10,0.08);
    }

    .fraud-box .icon-box {
        width: 45px;
        height: 45px;
        border-radius: 29%;
        background: linear-gradient(135deg,#0d6efd,#173b6c);
        color: #fff;
        text-align: center;
        line-height: 43px;
        font-size: 21px;
        margin-bottom: 6px;
    }

.icon-box:hover {
    color: #ff8d16
}

.fraud-box h4 {
    color: #173b6c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fraud-box p {
    color: #555;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.highlight {
    color: #dc3545;
    font-weight: 700;
}

.custom-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

    .custom-link:hover {
        text-decoration: underline;
    }

/* ================= WARNING BOX ================= */

.warning-box {
    background: linear-gradient(135deg,#fff5f5,#ffe9e9);
    border: 2px solid #ffbaba;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    margin-top: 40px;
}

    .warning-box i {
        color: #dc3545;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .warning-box p {
        margin: 0;
        color: #d10000;
        font-size: 20px;
        font-weight: 700;
        line-height: 34px;
    }

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    .fraud-main-card {
        padding: 25px;
    }

    .breadcrumb-content h2 {
        font-size: 28px;
    }

    .fraud-title {
        font-size: 26px;
    }

    .lock-circle {
        width: 110px;
        height: 110px;
    }

        .lock-circle i {
            font-size: 45px;
        }
}
