/* =======================================================
   AAPLE SARKAR SERVICE SECTION (UI/UX DESIGN FROM IMAGE)
   ======================================================= */

.aaple-sarkar-section {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.sarkar-card {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 40px;
    align-items: center;
}

/* रंगांचे व्हेरिएशन्स */
.txt-green { color: #1b663e; }
.txt-orange { color: #d96914; }
.txt-dark { color: #122b63; }

/* डावा विभाग (Left Section) */
.sarkar-left {
    flex: 1;
    min-width: 280px;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    background: #fafafa;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.02);
}

.sarkar-circle-logo {
    width: 160px;
    height: 160px;
    border: 2px solid #333333;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    background: #ffffff;
}

.sarkar-tagline {
    margin: 25px 0;
}

.sarkar-tagline h3 {
    font-size: 26px;
    color: #333;
    font-weight: 700;
}

.mini-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}
.mini-dots span {
    width: 4px;
    height: 4px;
    background-color: #d96914;
    border-radius: 50%;
}

.complaint-box {
    margin-top: 20px;
}

.complaint-title {
    background-color: #1b663e;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
}

.complaint-btn {
    display: block;
    border: 2px solid #1b663e;
    color: #1b663e;
    background: #ffffff;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
    transition: all 0.3s ease;
}

.complaint-btn:hover {
    background: #1b663e;
    color: #ffffff;
}

/* उजवा विभाग - QR कोड (Right Section) */
.sarkar-right {
    flex: 1.5;
    min-width: 320px;
    text-align: center;
}

.qr-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.qr-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 30px auto;
    border: 4px solid #122b63;
    border-radius: 12px;
    padding: 10px;
    background: #ffffff;
    overflow: hidden;
}

.actual-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* युनिक UX स्कॅनर लाईन इफेक्ट */
.qr-scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d96914, transparent);
    animation: scanAnimation 3s linear infinite;
}

@keyframes scanAnimation {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* फीचर्स रिबन */
.qr-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f6f2;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e1ebe3;
}

.feature-item {
    flex: 1;
    padding: 5px 10px;
}

.feat-icon {
    font-size: 20px;
    color: #1b663e;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background-color: #cbdad0;
}

/* तळाची ग्रीन पट्टी */
.sarkar-footer-bar {
    background-color: #1b663e;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.dot-separator {
    color: #fff;
    opacity: 0.6;
}

/* मोबाईल रिस्पॉन्सिव्हनेस (Responsive Design) */
@media (max-width: 768px) {
    .sarkar-card {
        padding: 20px;
        flex-direction: column;
    }
    .qr-header h2 {
        font-size: 30px;
    }
    .qr-features {
        flex-direction: column;
        gap: 15px;
    }
    .feature-divider {
        width: 80%;
        height: 1px;
    }
    .sarkar-footer-bar {
        font-size: 14px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .dot-separator {
        display: none;
    }
}