/* Modern CSS Variables */
:root {
    --primary: #1612e4;
    --primary-hover: #1410c8;
    --accent: #fcd34d;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --background: rgba(255, 255, 255, 0.9);
    --background-secondary: rgba(247, 250, 252, 0.8);
    --glass-background: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(31, 41, 55, 0.1);
    --gray: #64748b;
    --success: #22c55e;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(31, 41, 55, 0.05);
    --shadow-md: 0 8px 12px rgba(31, 41, 55, 0.1);
    --shadow-lg: 0 12px 24px rgba(31, 41, 55, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --blur: blur(12px);
    --navbar-bg: rgba(241, 245, 249, 0.9);
    --navbar-border: rgba(203, 213, 225, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #dffaff 0%, #e9efff 100%);
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--navbar-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--navbar-border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(241, 245, 249, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #666682;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:after {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(22, 18, 228, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(22, 18, 228, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(140deg, #aadcf5 0%, #a6e3f9 40%, #78d5f5 70%, #5bc0eb 100%);
}




.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231612e4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H6zM6 34v-4H4v4H0v2h4v4h2V6h4V4h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 18, 228, 0.03) 0%, rgba(22, 18, 228, 0) 70%);
    transform: rotate(-15deg);
    z-index: -2;
}

.hero {
    background-color: var(--background-secondary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231612e4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.text-content {
    color: var(--text-primary);
}

.text-content h1 {
    color: var(--text-primary);
}

.text-content p {
    color: var(--text-secondary);
}

/* Hero Buttons */
.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 600px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #1612e4;
    white-space: nowrap;
}

.hero-btn-primary {
    background: #1612e4;
    color: white;
}

.hero-btn-primary:hover {
    background: #1410c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 18, 228, 0.15);
}

.hero-btn-outline {
    background: transparent;
    color: #1612e4;
}

.hero-btn-outline:hover {
    background: rgba(22, 18, 228, 0.05);
    transform: translateY(-2px);
}

.hero-btn i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.hero-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .hero-buttons {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }
}

/* Feature Cards */
.grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(22, 18, 228, 0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(22, 18, 228, 0.1);
}

.icon-container {
    width: 72px;
    height: 72px;
    background: #1612e4;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.icon-container i {
    color: white;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.icon-container::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -25%;
    left: -25%;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .icon-container {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .icon-container i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Service Cards Enhanced */
.service-card {
    background: var(--glass-background);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px 0 var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 1.75rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 260px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(67, 56, 202, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .learn-more {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card .learn-more:hover {
    gap: 0.75rem;
}

.service-card .learn-more i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Connect steps with lines */
.step-card::after {
    content: '';
    position: absolute;
    top: 3.25rem;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: #E5E7EB;
    z-index: 1;
}

.step-card:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card::after {
        display: none;
    }
}

/* Contact Form */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99,115,129,0.2);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--glass-background);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

label {
    font-weight: 500;
    color: var(--text-primary);
}

/* Stats Container */
.stats-container {
    margin-top: 3rem;
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1612e4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

.pan-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #1612e4;
    color: #1612e4;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #1612e4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 18, 228, 0.15);
}

.service-btn i {
    font-size: 1.25rem;
}

/* Pricing Section Styles */
.pricing-wrapper {
    display: flex;
    justify-content: left;
    margin: 2rem 0;
    padding: 0rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(22, 18, 228, 0.06);
}

.pricing-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 18, 228, 0.1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #1612e4;
    box-shadow: 0 8px 24px rgba(22, 18, 228, 0.08);
}

.price-type {
    font-size: 1.25rem;
    color: #1612e4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1612e4;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.price-amount .currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-label {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(67, 56, 202, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* App Download Container */
.app-download-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.app-download-card {
    position: relative;
    display: flex;
    align-items: end;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
}

.app-download-content {
    flex: 1;
    text-align: left;
}

.app-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    bottom: 1rem;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: #666682;
    line-height: 1;
}

.stars {
    color: #FFB800;
    font-size: 1.75rem;
    display: flex;
    gap: 0.25rem;
}

.download-info {
    margin: 1rem 0;
}

.downloads {
    font-size: 1.5rem;
    font-weight: 700;
    color: #555495;
    margin-bottom: 0.25rem;
}

.app-meta {
    color: #6B7280;
    font-size: 1rem;
}

.mobile-screenshot {
    max-height: 550px;
    width: auto;
    object-fit: contain;
    opacity: 0;
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(22, 18, 228, 0.2);
    width: auto;
    margin-top: 1rem;
    font-size: 1rem;
}

.download-button i {
    font-size: 1.1rem;
    margin-right: 8px;
}

.download-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(22, 18, 228, 0.25);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(22, 18, 228, 0.2);
}

@media (max-width: 768px) {
    .app-download-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        text-align: center;
    }

    .app-download-content {
        text-align: center;
    }

    .app-title {
        font-size: 2.25rem;
    }

    .rating-score {
        font-size: 2.75rem;
    }

    .stars {
        font-size: 1.5rem;
    }

    .downloads {
        font-size: 1.25rem;
    }

    .rating-container {
        justify-content: center;
    }

    .mobile-screenshot {
        max-height: 450px;
        margin: 0 auto;
    }

    .download-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-bg-shape {
        opacity: 0.5;
    }
    
    .app-download-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 2rem;
    }
    
    .app-download-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Footer */
.footer-col a {
    color: var(--text-primary);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-primary);
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    z-index: 40;
    box-shadow: var(--shadow-md);
}

.mobile-menu .nav-link {
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    display: block;
    text-align: center;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.mobile-menu .nav-link:hover {
    background: var(--primary-hover);
}

.mobile-menu .btn {
    width: 100%;
    margin: 0.5rem 0;
}

.mobile-menu-button {
    color: var(--primary);
    padding: 0.5rem;
    margin-left: 4rem;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.mobile-menu-button:hover {
    background: rgba(22, 18, 228, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }
    
    .mobile-menu .btn-outline {
        background: var(--white);
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu .btn-primary {
        background: var(--white);
        color: var(--primary);
        border: 2px solid var(--white);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .mobile-menu-button {
        display: none;
    }
}

/* Additional Modern Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Logo Text Styles */
.logo-text {
    background: #4338CA;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-block;
}

/* PAN Applications Section */
.pan-applications {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

.pan-application-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pan-application-avatar {
    width: 3rem;
    height: 3rem;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pan-application-details {
    flex: 1;
}

.pan-application-name {
    font-weight: 500;
    font-size: 1.125rem;
    color: #1f2937;
}

.pan-application-father {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.pan-application-number {
    color: #6b7280;
    font-size: 0.875rem;
}

.pan-application-date {
    color: #6b7280;
    font-size: 0.75rem;
}

.pan-application-progress {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

.pan-application-progress-bar {
    height: 100%;
    border-radius: 0.25rem;
    background: #818cf8;
}

.pan-application-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.action-button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.2s;
}

.action-button:hover {
    background: #e5e7eb;
}
