﻿/* ===============================
   PATRAKAR EKTA FORUM
================================ */

.pf-hero {
    padding: 90px 0;
    background: radial-gradient(circle at top right, rgba(250,204,21,0.18), transparent 30%), linear-gradient(180deg, #ffffff, #fffdf7);
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(234,179,8,0.18);
}

.pf-hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    color: #111827;
    margin: 20px 0 12px;
}

.pf-hero-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ca8a04;
    margin-bottom: 20px;
}

.pf-hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
}

.pf-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.pf-mini-card {
    background: white;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

    .pf-mini-card i {
        color: #d97706;
    }

/* VISUAL */
.pf-visual {
    position: relative;
    height: 520px;
    border-radius: 32px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 1px solid #fcd34d;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.pf-live-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #111827;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 20;
}

    .pf-live-tag span {
        width: 10px;
        height: 10px;
        background: red;
        border-radius: 50%;
        display: inline-block;
        margin-right: 8px;
        animation: pfBlink 1s infinite;
    }

@keyframes pfBlink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pf-center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f59e0b, #facc15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(245,158,11,0.35);
    z-index: 15;
}

    .pf-center-core i {
        font-size: 46px;
        color: white;
    }

.pf-ring {
    position: absolute;
    border: 2px solid rgba(245,158,11,0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pfPulse 4s infinite;
}

.pf-ring1 {
    width: 180px;
    height: 180px;
}

.pf-ring2 {
    width: 260px;
    height: 260px;
    animation-delay: 1s;
}

.pf-ring3 {
    width: 340px;
    height: 340px;
    animation-delay: 2s;
}

@keyframes pfPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.8);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.25);
    }
}

.pf-float-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    font-weight: 700;
    z-index: 20;
    animation: pfFloat 4s infinite ease-in-out;
}

    .pf-float-card i {
        margin-right: 10px;
        color: #d97706;
    }

.fc1 {
    top: 120px;
    left: 30px;
}

.fc2 {
    top: 130px;
    right: 30px;
    animation-delay: 1s;
}

.fc3 {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes pfFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* HEADINGS */
.pf-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
}

.pf-heading p {
    color: #6b7280;
    font-size: 18px;
}

/* OBJECTIVES */
.pf-objectives {
    padding: 80px 0;
    background: white;
}

.pf-objective-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.06);
    text-align: center;
    height: 100%;
    transition: .3s;
}

    .pf-objective-card:hover {
        transform: translateY(-10px);
    }

    .pf-objective-card i {
        font-size: 52px;
        color: #d97706;
        margin-bottom: 18px;
    }
/* LEGAL */
.pf-legal {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffdf8, #ffffff);
}

.pf-legal-box {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    border: 1px solid #fef3c7;
    height: 100%;
}

.pf-law-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.pf-legal-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

    .pf-legal-box h2 i {
        color: #d97706;
        margin-right: 10px;
    }

.pf-legal-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.pf-point {
    background: #fffaf0;
    padding: 16px 18px;
    border-radius: 16px;
    margin-top: 14px;
    font-weight: 600;
}

    .pf-point i {
        color: #10b981;
        margin-right: 10px;
    }

.pf-help-box {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    height: 100%;
}

    .pf-help-box i {
        font-size: 60px;
        color: #facc15;
        margin-bottom: 20px;
    }

/* BUTTONS */
.pf-btn,
.pf-btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    margin: 8px;
    transition: .3s;
}

.pf-btn {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #111827;
}

    .pf-btn:hover {
        transform: translateY(-3px);
        color: #111827;
    }

.pf-btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* SUPPORT */
.pf-support {
    padding: 80px 0;
    background: white;
}

.pf-support-box {
    background: white;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    height: 100%;
}

.pf-box-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.red {
    color: #dc2626;
}

.green {
    color: #059669;
}

.pf-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .pf-list li {
        background: #f9fafb;
        padding: 14px 18px;
        border-radius: 14px;
        margin-bottom: 12px;
        font-weight: 600;
    }

.pf-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 20px;
}

.pf-grid-item {
    background: #f0fdf4;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: #065f46;
}

    .pf-grid-item i {
        display: block;
        font-size: 28px;
        margin-bottom: 10px;
    }

/* AWARENESS */
.pf-awareness {
    padding: 80px 0;
    background: #fffdf8;
}

.pf-awareness-card {
    background: white;
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    transition: .3s;
}

    .pf-awareness-card:hover {
        transform: translateY(-8px);
    }

    .pf-awareness-card i {
        display: block;
        font-size: 42px;
        color: #d97706;
        margin-bottom: 16px;
    }

/* WORK */
.pf-workstyle {
    padding: 80px 0;
    background: white;
}

.pf-work-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
    height: 100%;
    transition: .3s;
}

    .pf-work-card:hover {
        transform: translateY(-10px);
    }

    .pf-work-card i {
        font-size: 50px;
        color: #2563eb;
        margin-bottom: 18px;
    }

/* CTA */
.pf-cta {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.pf-cta-box {
    background: white;
    padding: 70px 50px;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.pf-cta-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.pf-cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin: 25px 0;
}

.pf-slogan {
    margin-top: 28px;
    font-size: 22px;
    font-weight: 700;
    color: #d97706;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .pf-hero-content h1 {
        font-size: 42px;
    }

    .pf-visual {
        margin-top: 40px;
        height: 460px;
    }

    .pf-float-card {
        display: none;
    }

    .pf-heading h2,
    .pf-cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .pf-hero-content h1 {
        font-size: 32px;
    }

    .pf-hero-content h3 {
        font-size: 22px;
    }

    .pf-grid {
        grid-template-columns: 1fr;
    }

    .pf-cta-box {
        padding: 40px 20px;
    }
}