﻿@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Rubik", serif;
    color: #1e1c1d;
    font-size: 12px;
    -webkit-font-smoothing: antialiased !important;
}

a:focus, date-picker-wrapper.no-shortcuts
button:focus,
* {
    outline: none;
}

h1 {
    font-size: 30px;
    margin-top: 5px;
    text-transform: capitalize;
}

a:focus,
a:hover,
button:focus,
button:hover {
    text-decoration: none !important;
}

[placeholder], input[placeholder], textarea[placeholder] {
    color: #490a3d;
    font-size: 15px;
}

img {
    max-width: 100%;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0px;
}
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0px;
}

a:focus, date-picker-wrapper.no-shortcuts button:focus, * {
    outline: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Section */
:root {
    --primary: #91269F;
    --secondary: #E65900;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --dark-footer: #111111;
    --online-green: #22c55e;
}

* {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/*header */
.header {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .header .inerHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .logo img {
        height: 49px;
        width: auto;
        transition: 0.3s;
    }

    .header .right-area {
        display: flex;
        align-items: center;
    }

    /* --- Vertical Separator --- */
    .header .separator {
        width: 1px;
        height: 40px;
        background: #e2e8f0;
        margin: 0 25px;
    }

    /* --- Support Badge --- */
    .header .support-badge {
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: 0.3s;
    }

    .header .support-icon {
        width: 42px;
        height: 42px;
        background: #fdf4ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        color: var(--primary);
        font-size: 20px;
        transition: 0.3s;
    }

    .header .support-text {
        display: flex;
        flex-direction: column;
    }

        .header .support-text .label {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .header .support-text .sub-label {
            font-size: 11px;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
        }

    /* --- Phone Badge --- */
    .header .phone-badge {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 5px 0;
        transition: transform 0.3s ease;
    }

    .header .icon-box {
        width: 40px;
        height: 40px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 14px;
        box-shadow: 0 4px 10px rgba(145, 38, 159, 0.2);
    }

        .header .icon-box i {
            color: #fff;
            font-size: 18px;
        }

    .header .num {
        font-size: 21px;
        font-weight: 800;
        color: #1a1a1a;
        letter-spacing: -0.5px;
        display: block;
        margin-top: -2px;
    }

    /* --- Status & Animations --- */
    .header .status-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 0;
    }

    .header .green-light {
        width: 7px;
        height: 7px;
        background-color: var(--online-green);
        border-radius: 50%;
        position: relative;
    }

        .header .green-light::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background-color: var(--online-green);
            animation: live-pulse 2s infinite;
        }

    .header .status-text {
        font-size: 10px;
        font-weight: 800;
        color: #64748b;
        text-transform: uppercase;
    }

@keyframes live-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Hover States */
.header .support-badge:hover .support-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.header .phone-badge:hover {
    transform: translateX(5px);
}
.pageNotFd {
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 15px;
}

.pageNotFd .card {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    max-width: 370px;
    width: 100%;
}

.pageNotFd .icon-container {
    width: 80px;
    height: 80px;
    background: #f8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.pageNotFd .icon {
    font-size: 36px;
    color: #91269F;
}

.pageNotFd h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.pageNotFd p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 25px;
}

.pageNotFd .btn {
    display: inline-block;
    padding: 10px 24px;
    background: #91269F;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, background 0.2s;
}

.pageNotFd .btn:hover {
    background: #7a1f87;
    transform: translateY(-1px);
}


/* Mobile Responsive */
@media (max-width: 850px) {
    .header .support-badge,
    .header .separator {
        display: none;
    }
}
/*header section end*/



.policy-header {
    position: relative;
    background: url('/static/media/disbg.png') center/cover no-repeat;
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(48, 43, 92, 0.7);
}

.policy-header h1 {
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    z-index: 1;
    text-align: center;
}

.policy-header i {
    color: #fff;
    margin-right: 10px;
}

.innerSection {
    background: #f8f9fb;
    padding: 60px 0;
}
/* Container */
.policy-container {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    padding: 40px 50px;
    line-height: 1.8;
}

.policy-container h2 {
font-size: 24px;
color: #302B5C;
margin-top: 40px;
display: flex;
align-items: center;
}

.policy-container h2 i {
    color: #91269F;
    margin-right: 10px;
}
.policy-container h3 {
font-size: 18px;
color: #000;
margin-top: 20px;
}

.policy-container p {
margin: 12px 0;
color: #444;
font-size: 16px;
}
.policy-container ul li {
margin: 8px 0;
color: #444;
font-size: 16px;
list-style: disc;
margin-left: 30px;
}
.policy-container ul li li {
    list-style: circle;
}

.policy-container a {
    color: #91269F;
    text-decoration: none;
    font-weight: 500;
}

.policy-container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
.policy-container {
    padding: 30px 20px;
    margin: 30px 10px;
}

.policy-header h1 {
    font-size: 28px;
}


}

@media (max-width: 767px) {
    .policy-container h2 {
        font-size: 15px;
        line-height: 20px;
    }

    .policy-container p {
        font-size: 14px;
        margin: 12px 0;
        color: #444;
        line-height: 20px;
    }
    .policy-container {
        margin: 10px 0;
    }
}

.payment-decline {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    width: 94%;
    transition: all 0.3s ease-in-out;
    border: 1px solid #f2f2f2;
    margin: 70px auto;
}

.payment-decline:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.payment-decline img {
width: 180px;
max-width: 80%;
margin-bottom: 25px;
opacity: 0.95;
}

.payment-decline p {
color: #666;
font-size: 15px;
line-height: 1.6;
margin: 10px 0;
}

.payment-decline p strong {
    display: block;
    font-size: 24px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-decline a {
display: inline-block;
margin-top: 25px;
padding: 12px 28px;
background-color: #91269F;
color: #fff;
font-weight: 600;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(30, 115, 190, 0.2);
font-size: 15px;
}

.payment-decline a:hover {
    background-color: #155a93;
    box-shadow: 0 6px 14px rgba(30, 115, 190, 0.3);
}

.payment-decline i {
    margin-right: 8px;
}


@media (max-width: 480px) {
.payment-decline {
    padding: 45px 25px;
}

.payment-decline p strong {
    font-size: 20px;
}

.payment-decline img {
    width: 140px;
}
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: none;
    background: #E65900;
    color: white;
    font-size: 22px;
    line-height: 1;
    display: inline-grid;
    place-content: center;
    box-shadow: 0 6px 18px rgba(13,40,64,0.24);
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
    z-index: 9999;
}

/* visible state */
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:focus {
    outline: 3px solid rgba(255,255,255,0.18);
    outline-offset: 4px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-top {
        transition: none;
    }
}




/*Footer*/
.footers {
    background-color: #f5f7fa;
    padding: 50px 20px 5px;
    color: #333;
}

.footers .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Column Styling */
.footers .footer-column {
    flex: 1;
    min-width: 200px;
}

.footers h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f294d;
}

.footers ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footers ul li {
    margin-bottom: 12px;
}

.footers ul li a {
    text-decoration: none;
    color: #455873;
    font-size: 14px;
    transition: color 0.2s;
}

.footers ul li a:hover {
    color: #e65900;
}

/* Social Icons */
.footers .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footers .social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.6;
    cursor: pointer;
}

/* Payment & Partners Grid */
.footers .icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.footers .icon-grid img {
    width: 40px;
    height: auto;
    border: 1px solid #e0e4e9;
    border-radius: 4px;
    padding: 2px;
    background: #fff;
}

.footers .partner-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.footers .partner-logos img {
    height: 25px;
}

/* Bottom Copyright Section */
.footers .footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #dcdfe6;
    text-align: center;
    font-size: 12px;
    color: #8592a6;
    line-height: 1.6;
    padding-bottom: 14px;
}
.footers .social-icons {
display: flex;
gap: 12px;
margin-top: 20px;
}

.footers .social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background-color: #5e6d82;
color: #ffffff;
border-radius: 50%;
text-decoration: none;
font-size: 16px;
transition: background-color 0.3s ease;
}

.footers .social-icons a:hover {
background-color: #3476f7; 
}

@media (max-width: 767px) {
.header .logo img {
    height: 39px;
}
.header .icon-box {
    width: 34px;
    height: 34px;
    margin-right: 8px;
}
.header .num {
    font-size: 17px;
    margin-top: -1px;
}
.confidence-section h2 {
    font-size: 22px;
}
.confidence-section {
    padding: 50px 0 30px 0;
}
.dealsSumry .deals-header {
    text-align: center;
}
.dealsSumry .deals-header h2 {
    font-size: 22px;
}
.dealsSumry .disclaimer {
    display: inline;
}
.startPlng {
    padding: 20px 0;
}
.getInspired .card {
    height: 170px;
}
.getInspired .card.large {
    height: 250px;
}
.footers {
    padding: 40px 20px 5px;
}
.footers .footer-column {
    min-width: 120px;
    margin-bottom: 30px;
}
.footers .footer-bottom {
    margin-top: 0;
}


}

.sessionExpMai .sess-pop-count {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sessionExpMai .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff5f5;
    color: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    position: relative;
}
.sessionExpMai .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #e53e3e;
    animation: pulse 2s infinite;
}
.sessionExpMai .spop-details span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}
.sessionExpMai .spop-details p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 30px;
}
.sessionExpMai .ref-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #91269F;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(145, 38, 159, 0.2);
}
.sessionExpMai .ref-result-btn:hover {
    background: #7a1f86;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(145, 38, 159, 0.3);
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}
.sessionPPmn .sesspopCount {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 50px 35px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sessionPPmn .close-session {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

    .sessionPPmn .close-session:hover {
        background: #fee2e2;
        color: #ef4444;
        transform: rotate(90deg);
    }

.sessionPPmn .sesspopCount-main {
    margin-bottom: 25px;
}

.sessionPPmn #timer {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #91269F, #b33fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.sessionPPmn .sesspopCount-main span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 700;
}

.sessionPPmn .timer-icon {
    font-size: 40px;
    color: #91269F;
    margin-bottom: 15px;
    display: block;
    animation: pulseIcon 2s infinite;
}

.sessionPPmn .spop-details span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sessionPPmn .spop-details p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 10px;
}

.sessionPPmn .ref-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #91269F, #b33fd1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(145, 38, 159, 0.25);
}

    .sessionPPmn .ref-result-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(145, 38, 159, 0.35);
        filter: brightness(1.1);
    }

@keyframes modalScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .sessionPPmn .sesspopCount {
        padding: 40px 25px 30px;
    }
}

.ftrPhneEml {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ftrPhneEml .ctrEml {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 8px 15px;
    transition: 0.25s ease;
    border: 1px solid #e0e4e9;
    border-radius: 4px;
    background: #fff;
}
.ftrPhneEml .ctrEml i {
    font-size: 14px;
    width: 28px;
    height: 28px;
    background: #91269F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ftrPhneEml .ctrEml:hover {
    background: #91269F;
    color: #fff;
}
.ftrPhneEml .ctrEml:hover i {
    background: #fff;
    color: #91269F;
}