/* Start custom CSS for html, class: .elementor-element-20e8d71 */<style>

/* =========================================================
   NEETPGCOUPON.IN - PREMIUM CONTACT PAGE
   MATCHING HERO + FAQ DESIGN
   ========================================================= */

.npc-contact {

    --npc-navy: #071735;
    --npc-navy-2: #0b2870;
    --npc-blue: #145be9;
    --npc-blue-2: #1768ee;
    --npc-purple: #7b1fc7;
    --npc-pink: #d218b9;
    --npc-cyan: #00c8e8;
    --npc-gold: #ffd75a;

    --npc-text: #151238;
    --npc-muted: #626b7c;

    position: relative;

    width: 100vw;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 90px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(0,200,232,.10),
            transparent 28%
        ),

        radial-gradient(
            circle at 95% 80%,
            rgba(123,31,199,.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #f8fcff 0%,
            #eef8ff 50%,
            #f8f3ff 100%
        );

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   BACKGROUND BLOBS
   ========================================================= */

.npc-contact::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    left: -190px;
    top: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,200,232,.10),
            transparent 70%
        );

    pointer-events: none;

    animation:
        npcContactBlob 9s ease-in-out infinite;
}


.npc-contact::after {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -220px;
    bottom: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123,31,199,.10),
            transparent 70%
        );

    pointer-events: none;

    animation:
        npcContactBlob 11s ease-in-out infinite reverse;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.npc-contact-container {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.npc-contact-header {

    text-align: center;

    max-width: 780px;

    margin:
        0 auto 50px;
}


.npc-contact-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 17px;

    margin-bottom: 17px;

    border-radius: 50px;

    background:
        rgba(255,255,255,.88);

    border:
        1px solid rgba(20,91,233,.14);

    box-shadow:
        0 8px 25px rgba(20,91,233,.08);

    color:
        var(--npc-blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.7px;
}


.npc-contact-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--npc-cyan);

    animation:
        npcContactPulse 1.8s infinite;
}


.npc-contact-header h1 {

    margin: 0;

    color:
        var(--npc-navy);

    font-size:
        clamp(38px,5vw,60px);

    line-height: 1;

    letter-spacing: -2.5px;

    font-weight: 950;
}


.npc-contact-header h1 span {

    background:
        linear-gradient(
            90deg,
            #32117d,
            #6614a9,
            #d218b9,
            #145be9,
            #32117d
        );

    background-size: 300% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation:
        npcContactGradient 5s linear infinite;
}


.npc-contact-header p {

    max-width: 680px;

    margin:
        20px auto 0;

    color:
        var(--npc-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT CARDS
   ========================================================= */

.npc-contact-cards {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;

    margin-bottom: 28px;
}


.npc-contact-card {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 22px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.92);

    border:
        1px solid rgba(20,91,233,.10);

    box-shadow:
        0 12px 30px rgba(17,46,100,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.npc-contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(20,91,233,.22);

    box-shadow:
        0 18px 40px rgba(20,91,233,.12);
}


.npc-contact-icon {

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #edf7ff,
            #f4eaff
        );

    color:
        var(--npc-blue);

    font-size: 24px;
}


.npc-contact-card-label {

    display: block;

    margin-bottom: 5px;

    color:
        #7a8291;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.4px;
}


.npc-contact-card h3 {

    margin: 0 0 7px;

    color:
        var(--npc-navy);

    font-size: 14px;

    font-weight: 800;

    word-break: break-word;
}


.npc-contact-card a {

    color:
        var(--npc-blue);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;
}


.npc-contact-small {

    color:
        #7a8291;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   MAIN CONTENT GRID
   ========================================================= */

.npc-contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    margin-bottom: 25px;
}


.npc-contact-box {

    position: relative;

    padding: 32px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid rgba(20,91,233,.10);

    box-shadow:
        0 15px 40px rgba(17,46,100,.07);

    overflow: hidden;
}


.npc-contact-box::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(0,200,232,.07);

    pointer-events: none;
}


.npc-box-number {

    margin-bottom: 12px;

    color:
        var(--npc-blue);

    font-size: 11px;

    font-weight: 950;

    letter-spacing: 2px;
}


.npc-contact-box h2 {

    margin: 0 0 10px;

    color:
        var(--npc-navy);

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -.6px;
}


.npc-contact-box p {

    margin: 0 0 20px;

    color:
        var(--npc-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   LIST
   ========================================================= */

.npc-contact-box ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.npc-contact-box li {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 13px;

    color:
        #505a6e;

    font-size: 13px;

    line-height: 1.5;
}


.npc-contact-box li span {

    flex-shrink: 0;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #e9fbff;

    color:
        var(--npc-blue);

    font-size: 10px;

    font-weight: 900;
}


/* =========================================================
   BUSINESS BOX
   ========================================================= */

.npc-business-box {

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f7ff
        );
}


.npc-contact-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        13px 21px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--npc-blue),
            var(--npc-purple)
        );

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    box-shadow:
        0 12px 28px rgba(20,91,233,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.npc-contact-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 32px rgba(20,91,233,.30);
}


/* =========================================================
   REPORT BOX
   ========================================================= */

.npc-report-box {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    padding: 32px;

    margin-bottom: 25px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #071735,
            #0b2870 55%,
            #4b168f
        );

    box-shadow:
        0 25px 55px rgba(7,23,53,.20);

    overflow: hidden;

    position: relative;
}


.npc-report-box::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -160px;

    border-radius: 50%;

    background:
        rgba(0,200,232,.10);
}


.npc-report-content,
.npc-report-details {

    position: relative;

    z-index: 2;
}


.npc-report-badge {

    display: inline-block;

    padding:
        6px 12px;

    margin-bottom: 13px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.10);

    border:
        1px solid rgba(255,255,255,.15);

    color:
        var(--npc-cyan);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.npc-report-content h2 {

    margin: 0 0 12px;

    color: #fff;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 900;
}


.npc-report-content p {

    margin: 0;

    color:
        rgba(255,255,255,.67);

    font-size: 14px;

    line-height: 1.7;
}


.npc-report-details h3 {

    margin: 0 0 15px;

    color:
        #fff;

    font-size: 14px;

    font-weight: 800;
}


/* =========================================================
   REPORT LIST
   ========================================================= */

.npc-report-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-bottom: 20px;
}


.npc-report-list span {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,.75);

    font-size: 11px;
}


.npc-report-list b {

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,255,255,.10);

    color:
        var(--npc-gold);

    font-size: 9px;
}


.npc-report-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        12px 20px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ffd75a,
            #ffb900
        );

    color:
        #071735;

    text-decoration: none;

    font-size: 12px;

    font-weight: 950;

    box-shadow:
        0 10px 25px rgba(255,185,0,.18);

    transition:
        transform .25s ease;
}


.npc-report-button:hover {

    transform:
        translateY(-3px);
}


/* =========================================================
   IMPORTANT NOTICE
   ========================================================= */

.npc-contact-notice {

    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 24px 27px;

    margin-bottom: 40px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #fffdf3,
            #fff9df
        );

    border:
        1px solid rgba(255,193,20,.22);

    box-shadow:
        0 10px 30px rgba(100,80,20,.06);
}


.npc-notice-icon {

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--npc-gold);

    color:
        #5c4300;

    font-size: 20px;

    font-weight: 950;
}


.npc-contact-notice h3 {

    margin:
        0 0 7px;

    color:
        #5b4500;

    font-size: 15px;

    font-weight: 900;
}


.npc-contact-notice p {

    margin: 0;

    color:
        #746532;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER MESSAGE
   ========================================================= */

.npc-contact-footer {

    display: flex;

    align-items: center;

    gap: 20px;
}


.npc-footer-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(20,91,233,.18),
            transparent
        );
}


.npc-contact-footer p {

    max-width: 700px;

    margin: 0;

    text-align: center;

    color:
        #71798a;

    font-size: 12px;

    line-height: 1.7;
}


.npc-contact-footer strong {

    color:
        var(--npc-blue);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes npcContactGradient {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}


@keyframes npcContactPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(0,200,232,.45);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(0,200,232,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(0,200,232,0);
    }
}


@keyframes npcContactBlob {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(25px,-20px)
            scale(1.12);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .npc-contact-cards {

        grid-template-columns:
            1fr 1fr;
    }

    .npc-contact-cards
    .npc-contact-card:last-child {

        grid-column:
            1 / -1;
    }

    .npc-contact-grid {

        grid-template-columns:
            1fr;
    }

    .npc-report-box {

        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .npc-contact {

        padding:
            60px 14px;
    }

    .npc-contact-header {

        margin-bottom: 35px;
    }

    .npc-contact-header h1 {

        font-size: 37px;

        letter-spacing:
            -1.7px;
    }

    .npc-contact-header p {

        font-size: 14px;
    }


    .npc-contact-cards {

        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .npc-contact-cards
    .npc-contact-card:last-child {

        grid-column:
            auto;
    }


    .npc-contact-card {

        padding: 18px;
    }


    .npc-contact-box {

        padding: 25px 21px;

        border-radius: 20px;
    }


    .npc-contact-box h2 {

        font-size: 22px;
    }


    .npc-report-box {

        padding: 25px 20px;

        border-radius: 21px;
    }


    .npc-report-content h2 {

        font-size: 23px;
    }


    .npc-report-list {

        grid-template-columns:
            1fr;
    }


    .npc-report-button {

        width: 100%;

        box-sizing: border-box;
    }


    .npc-contact-notice {

        padding: 20px;

        gap: 13px;
    }


    .npc-contact-footer {

        display: block;
    }


    .npc-footer-line {

        display: none;
    }


    .npc-contact-footer p {

        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .npc-contact *,
    .npc-contact::before,
    .npc-contact::after {

        animation: none !important;

        transition: none !important;
    }

}

</style>/* End custom CSS */