﻿/* Delhi Property Registration Portal - Clean Professional Styles */

:root {
    --primary-color: #0f2044;
    --primary-light: #1a3268;
    --secondary-color: #6c757d;
    --accent-color: #c9a84c;
    --accent-hover: #b08f3a;
    --success-color: #0f2044;
    --danger-color: #dc3545;
    --warning-color: #c9a84c;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #0a1628;
    --govt-blue: #0f2044;
    --govt-orange: #c9a84c;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

/* Override Bootstrap primary colors to match brand */
.btn-primary { background-color: #0f2044 !important; border-color: #0f2044 !important; color: white !important; }
.btn-primary:hover { background-color: #0a1628 !important; border-color: #0a1628 !important; }
.btn-outline-primary { color: #0f2044 !important; border-color: #0f2044 !important; }
.btn-outline-primary:hover { background-color: #0f2044 !important; color: white !important; }
.bg-primary { background-color: #0f2044 !important; }
.text-primary { color: #0f2044 !important; }
.border-primary { border-color: #0f2044 !important; }
.btn-warning { background-color: #c9a84c !important; border-color: #c9a84c !important; color: #0a1628 !important; font-weight: 700; }
.btn-warning:hover { background-color: #b08f3a !important; border-color: #b08f3a !important; color: #0a1628 !important; }
.btn-outline-warning { color: #c9a84c !important; border-color: #c9a84c !important; }
.btn-outline-warning:hover { background-color: #c9a84c !important; color: #0a1628 !important; }
.text-warning { color: #c9a84c !important; }
.btn-success { background-color: #0f2044 !important; border-color: #0f2044 !important; }
.btn-success:hover { background-color: #0a1628 !important; border-color: #0a1628 !important; }
.btn-outline-success { color: #0f2044 !important; border-color: #0f2044 !important; }
.btn-outline-success:hover { background-color: #0f2044 !important; color: white !important; }
.text-success { color: #0f2044 !important; }
.bg-success { background-color: #0f2044 !important; }

main {
    flex: 1;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

/* Professional Navbar */
.professional-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.professional-navbar .brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f2044, #0a1628);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.professional-navbar .navbar-brand:hover .brand-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(15, 32, 68, 0.3);
}

.professional-navbar .brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 2px;
}

.professional-navbar .brand-tagline {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1;
}

.professional-navbar .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.professional-navbar .nav-link:hover {
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.08);
}

.professional-navbar .login-btn {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #0f2044;
    font-weight: 700;
}

.professional-navbar .login-btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a1628;
}

.professional-navbar .user-menu {
    background: rgba(13, 110, 253, 0.08);
    border-radius: 25px;
    padding: 0.5rem 1rem;
}

.professional-navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
}

.professional-navbar .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-weight: 500;
}

.professional-navbar .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 1rem 0 2rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2044 0%, #0a1628 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.stats-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Process Steps */
.process-step {
    transition: all 0.3s ease;
    padding: 1rem;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-number:hover {
    transform: scale(1.1);
}

.process-arrows {
    position: relative;
    top: -150px;
    pointer-events: none;
}

.process-arrows i {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .stats-card {
        padding: 1.25rem;
        margin-top: 2rem;
    }
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.service-price {
    margin: 1rem 0;
}

.price-tag {
    background: linear-gradient(135deg, #0f2044, #157347);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Service Guarantee */
.service-guarantee {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-guarantee:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.guarantee-item {
    padding: 1rem;
    text-align: center;
}

.guarantee-item h6 {
    color: #212529;
    font-weight: 600;
    margin: 0.5rem 0;
}

/* Button Styles */
.btn {
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, var(--govt-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #157347 100%);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #157347 0%, #0a1628 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #ffca2c 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffca2c 0%, #ffc720 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #3dd5f3 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3);
}

.btn-info:hover {
    background: linear-gradient(135deg, #3dd5f3 0%, #0dcaf0 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Modern Footer */
.modern-footer {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    background: #0a1628;
    color: rgba(255,255,255,0.8);
    padding: 3.5rem 0 1.5rem;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #0f2044 100%);
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 32, 68, 0.95) 100%);
    z-index: 2;
}

.modern-footer .container {
    position: relative;
    z-index: 3;
    padding: 3rem 0 1rem 0;
}

.footer-brand {
    margin-bottom: 2rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.footer-brand-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.footer-section-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #c9a84c;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    color: #ffc107;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-copyright,
.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-disclaimer strong {
    color: #c9a84c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .professional-navbar .brand-name {
        font-size: 1.1rem;
    }
    
    .professional-navbar .brand-tagline {
        font-size: 0.75rem;
    }
    
    .professional-navbar .brand-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .success-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-props .row {
        gap: 0.5rem;
    }
    
    .social-proof .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .proof-item {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-copyright,
    .footer-disclaimer {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .value-info strong {
        font-size: 0.9rem;
    }
    
    .value-info small {
        font-size: 0.8rem;
    }
    
    .success-card {
        padding: 1.25rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-info h6 {
        font-size: 0.85rem;
    }
    
    .stat-info small {
        font-size: 0.75rem;
    }
    
    .stat-value .h4 {
        font-size: 1.3rem !important;
    }
    
    .testimonial {
        padding: 0.75rem !important;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    .avatar-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.text-govt-blue {
    color: var(--govt-blue);
}

.bg-govt-blue {
    background-color: var(--govt-blue);
}

.text-govt-orange {
    color: var(--govt-orange);
}

.bg-govt-orange {
    background-color: var(--govt-orange);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar, footer, .btn, .no-print, .top-bar {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* ========================================
   UNICODE REPLACEMENT ICON SYSTEM
   ======================================== */

/* Currency Icons */
.currency-icon {
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    color: #28a745;
    font-size: 0.9em;
}

.rupee-icon::before {
    content: 'Rs. ';
    font-weight: 600;
}

/* Alternative rupee icon using CSS shapes */
.rupee-icon.shape-icon {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 3px;
}

.rupee-icon.shape-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 6px;
    border: 2px solid currentColor;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
}

.rupee-icon.shape-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 1px;
    width: 8px;
    height: 2px;
    background: currentColor;
}

/* Emoji Replacement Icons */
.icon-wrench::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.102 2.223A3.004 3.004 0 0 0 3.78 5.897l6.341 6.252A3.003 3.003 0 0 0 13 16a3 3 0 1 0-.851-5.878L5.897 3.781A3.004 3.004 0 0 0 2.223.102L2.25.128 5.25 3.25l-1.5 1.5L.628 1.628.102 2.223Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-search::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-database::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.318 2.687C6.362 1.229 8.638 1.229 10.682 2.687 12.644 4.087 13 5.434 13 6.5v3c0 1.066-.356 2.413-2.318 3.813-2.044 1.458-4.32 1.458-6.364 0C2.356 11.913 2 10.566 2 9.5v-3c0-1.066.356-2.413 2.318-3.813ZM13 9.5v1.5c0 1.066-.356 2.413-2.318 3.813-2.044 1.458-4.32 1.458-6.364 0C2.356 13.413 2 12.066 2 11v-1.5c.5.5 1.5 1 3 1.5 1.5.5 3.5.5 5 0 1.5-.5 2.5-1 3-1.5Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-table::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm15 2h-4v3h4V4zm0 4h-4v3h4V8zm0 4h-4v3h3a1 1 0 0 0 1-1v-2zm-5 3v-3H6v3h4zm-5 0v-3H1v2a1 1 0 0 0 1 1h3zm-4-4h4V8H1v3zm0-4h4V4H1v3zm5-3v3h4V4H6zm4 4H6v3h4V8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-gear::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-chart::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 11H2v3h2v-3zm5-4H7v7h2V7zm5-5v12h-2V2h2zm-2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1h-2zM6 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zM1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-rocket::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 8c.828 0 1.5-.895 1.5-2S8.828 4 8 4s-1.5.895-1.5 2S7.172 8 8 8Z'/%3E%3Cpath d='M12.5 2A2.5 2.5 0 0 0 10 4.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5A2.5 2.5 0 0 0 3.5 2H1.75a.25.25 0 0 0-.25.25v3.5c0 .537.2 1.055.556 1.445l2.139 2.348A6.5 6.5 0 0 1 5.5 13.5v1.25c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25V13.5a6.5 6.5 0 0 1 1.305-3.952l2.139-2.348A2.25 2.25 0 0 0 14.5 6V2.25a.25.25 0 0 0-.25-.25H12.5Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-lightbulb::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Status Icons */
.icon-check::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #28a745;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-cross::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #dc3545;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Loading/Time Icons */
.icon-hourglass::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 1.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1h-11a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1-.5-.5zm2.5.5v1a3.5 3.5 0 0 0 1.989 3.158c.533.256 1.011.791 1.011 1.491v.702s.18.149.5.149.5-.15.5-.15V7.15c0-.7.478-1.235 1.011-1.491A3.5 3.5 0 0 0 11.5 3V2h-7z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
    animation: spin 2s linear infinite;
}

/* Arrow Icons */
.icon-arrow-left::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.icon-arrow-right::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-left: 0.25rem;
}

/* Animation for loading icons */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Utility classes for icon colors */
.icon-success { color: #28a745; }
.icon-danger { color: #dc3545; }
.icon-warning { color: #ffc107; }
.icon-info { color: #17a2b8; }
.icon-primary { color: #007bff; }

/* Rupee Symbol CSS Classes for Unicode Replacement */
.rupee-symbol::before,
.rupee-text::before,
.currency-display::before,
.amount-with-currency::before {
    content: 'Rs. ';
    font-weight: 600;
}

/* Ensure proper spacing */
.rupee-symbol,
.rupee-text,
.currency-display,
.amount-with-currency {
    display: inline;
}