File size: 42,756 Bytes
b491bf8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TaxPro Maximizer | Boost Your Tax Side Business</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #4361ee;
--secondary: #3f37c9;
--accent: #4895ef;
--light: #f8f9fa;
--dark: #212529;
--success: #4cc9f0;
--warning: #f72585;
--gray: #6c757d;
--light-gray: #e9ecef;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f5f7fb;
color: var(--dark);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 20px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
display: flex;
align-items: center;
}
.logo i {
margin-right: 10px;
font-size: 28px;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
display: flex;
align-items: center;
}
nav ul li a:hover {
opacity: 0.8;
}
nav ul li a i {
margin-right: 8px;
}
.mobile-menu {
display: none;
font-size: 24px;
cursor: pointer;
}
.dashboard {
padding: 40px 0;
}
.dashboard-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.dashboard-title {
font-size: 28px;
color: var(--dark);
}
.quick-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.stat-card {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.stat-card.primary {
border-top: 4px solid var(--primary);
}
.stat-card.warning {
border-top: 4px solid var(--warning);
}
.stat-card.success {
border-top: 4px solid var(--success);
}
.stat-card.accent {
border-top: 4px solid var(--accent);
}
.stat-title {
font-size: 14px;
color: var(--gray);
margin-bottom: 10px;
display: flex;
align-items: center;
}
.stat-title i {
margin-right: 8px;
}
.stat-value {
font-size: 28px;
font-weight: bold;
margin-bottom: 5px;
}
.stat-change {
font-size: 14px;
display: flex;
align-items: center;
}
.stat-change.positive {
color: #28a745;
}
.stat-change.negative {
color: #dc3545;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-bottom: 40px;
}
.feature-card {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
cursor: pointer;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.feature-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.feature-icon {
width: 50px;
height: 50px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: white;
margin-right: 15px;
}
.feature-icon.client-manager {
background: linear-gradient(135deg, #ff6b6b, #ff8787);
}
.feature-icon.deduction-finder {
background: linear-gradient(135deg, #4cc9f0, #4895ef);
}
.feature-icon.tax-calculator {
background: linear-gradient(135deg, #f72585, #b5179e);
}
.feature-icon.document-organizer {
background: linear-gradient(135deg, #4361ee, #3a0ca3);
}
.feature-icon.marketing-tools {
background: linear-gradient(135deg, #38b000, #70e000);
}
.feature-icon.expense-tracker {
background: linear-gradient(135deg, #ff9e00, #ffaa00);
}
.feature-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.feature-desc {
color: var(--gray);
font-size: 14px;
line-height: 1.5;
margin-bottom: 15px;
}
.feature-link {
color: var(--primary);
font-weight: 500;
text-decoration: none;
display: flex;
align-items: center;
font-size: 14px;
}
.feature-link i {
margin-left: 5px;
transition: transform 0.3s ease;
}
.feature-card:hover .feature-link i {
transform: translateX(3px);
}
.recent-clients {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
margin-bottom: 40px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.section-title {
font-size: 20px;
font-weight: 600;
}
.view-all {
color: var(--primary);
text-decoration: none;
font-weight: 500;
font-size: 14px;
display: flex;
align-items: center;
}
.view-all i {
margin-left: 5px;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid var(--light-gray);
}
th {
font-weight: 600;
color: var(--gray);
font-size: 14px;
}
td {
font-size: 15px;
}
.status {
padding: 6px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
}
.status.pending {
background-color: #fff3cd;
color: #856404;
}
.status.completed {
background-color: #d4edda;
color: #155724;
}
.status.review {
background-color: #cce5ff;
color: #004085;
}
.client-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
margin-right: 10px;
object-fit: cover;
}
.client-cell {
display: flex;
align-items: center;
}
.client-name {
font-weight: 500;
}
.action-btn {
background: none;
border: none;
cursor: pointer;
color: var(--gray);
transition: color 0.3s ease;
}
.action-btn:hover {
color: var(--primary);
}
.tax-tips {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.tips-header {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.tips-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: linear-gradient(135deg, var(--warning), #b5179e);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
margin-right: 15px;
}
.tip-card {
padding: 15px;
border-radius: 8px;
background-color: #f8f9fa;
margin-bottom: 15px;
border-left: 4px solid var(--accent);
}
.tip-title {
font-weight: 600;
margin-bottom: 8px;
}
.tip-desc {
font-size: 14px;
color: var(--gray);
line-height: 1.5;
}
footer {
background-color: var(--dark);
color: white;
padding: 30px 0;
margin-top: 50px;
}
.footer-content {
display: flex;
justify-content: space-between;
}
.footer-logo {
font-size: 20px;
font-weight: bold;
margin-bottom: 15px;
}
.footer-links h4 {
margin-bottom: 15px;
font-size: 16px;
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 8px;
}
.footer-links ul li a {
color: #adb5bd;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}
.footer-links ul li a:hover {
color: white;
}
.footer-social {
margin-top: 20px;
}
.footer-social a {
color: white;
margin-right: 15px;
font-size: 18px;
transition: color 0.3s ease;
}
.footer-social a:hover {
color: var(--accent);
}
.copyright {
text-align: center;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #495057;
color: #adb5bd;
font-size: 14px;
}
/* Modal styles */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 200;
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
border-radius: 10px;
width: 90%;
max-width: 600px;
max-height: 80vh;
overflow-y: auto;
padding: 30px;
position: relative;
}
.close-modal {
position: absolute;
top: 20px;
right: 20px;
font-size: 24px;
cursor: pointer;
color: var(--gray);
}
.modal-title {
font-size: 22px;
margin-bottom: 20px;
color: var(--primary);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--light-gray);
border-radius: 6px;
font-size: 15px;
}
.form-actions {
display: flex;
justify-content: flex-end;
gap: 15px;
}
.btn {
padding: 10px 20px;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}
.btn-primary {
background-color: var(--primary);
color: white;
}
.btn-primary:hover {
background-color: var(--secondary);
}
.btn-outline {
background-color: transparent;
border: 1px solid var(--gray);
color: var(--dark);
}
.btn-outline:hover {
background-color: var(--light-gray);
}
/* Responsive styles */
@media (max-width: 992px) {
.quick-stats {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
nav ul {
display: none;
}
.mobile-menu {
display: block;
}
.quick-stats {
grid-template-columns: 1fr;
}
.features-grid {
grid-template-columns: 1fr;
}
.footer-content {
flex-direction: column;
}
.footer-links {
margin-bottom: 30px;
}
table {
display: block;
overflow-x: auto;
}
}
</style>
</head>
<body>
<header>
<div class="container header-inner">
<div class="logo">
<i class="fas fa-calculator"></i>
<span>TaxPro Maximizer</span>
</div>
<nav>
<ul>
<li><a href="#"><i class="fas fa-home"></i> Dashboard</a></li>
<li><a href="#"><i class="fas fa-users"></i> Clients</a></li>
<li><a href="#"><i class="fas fa-file-invoice-dollar"></i> Filings</a></li>
<li><a href="#"><i class="fas fa-chart-line"></i> Reports</a></li>
<li><a href="#"><i class="fas fa-cog"></i> Settings</a></li>
<li><a href="#" class="user-profile"><i class="fas fa-user-circle"></i></a></li>
</ul>
</nav>
<div class="mobile-menu">
<i class="fas fa-bars"></i>
</div>
</div>
</header>
<main class="dashboard">
<div class="container">
<div class="dashboard-header">
<h1 class="dashboard-title">Dashboard Overview</h1>
<button class="btn btn-primary" id="addClientBtn">
<i class="fas fa-plus"></i> Add New Client
</button>
</div>
<div class="quick-stats">
<div class="stat-card primary">
<div class="stat-title">
<i class="fas fa-users"></i> Total Clients
</div>
<div class="stat-value">142</div>
<div class="stat-change positive">
<i class="fas fa-arrow-up"></i> 12% from last month
</div>
</div>
<div class="stat-card warning">
<div class="stat-title">
<i class="fas fa-file-invoice"></i> Active Filings
</div>
<div class="stat-value">24</div>
<div class="stat-change positive">
<i class="fas fa-arrow-up"></i> 3 more than yesterday
</div>
</div>
<div class="stat-card success">
<div class="stat-title">
<i class="fas fa-check-circle"></i> Completed Returns
</div>
<div class="stat-value">78</div>
<div class="stat-change positive">
<i class="fas fa-arrow-up"></i> 20% from last season
</div>
</div>
<div class="stat-card accent">
<div class="stat-title">
<i class="fas fa-dollar-sign"></i> Revenue YTD
</div>
<div class="stat-value">$14,820</div>
<div class="stat-change positive">
<i class="fas fa-arrow-up"></i> 35% increase
</div>
</div>
</div>
<div class="features-grid">
<div class="feature-card" onclick="openFeatureModal('clientModal')">
<div class="feature-header">
<div class="feature-icon client-manager">
<i class="fas fa-users"></i>
</div>
<div>
<h3 class="feature-title">Client Manager</h3>
<p class="feature-desc">Track all client information, deadlines, and documents in one place.</p>
</div>
</div>
<a href="#" class="feature-link">Open Client Manager <i class="fas fa-chevron-right"></i></a>
</div>
<div class="feature-card" onclick="openFeatureModal('deductionModal')">
<div class="feature-header">
<div class="feature-icon deduction-finder">
<i class="fas fa-search-dollar"></i>
</div>
<div>
<h3 class="feature-title">Deduction Finder</h3>
<p class="feature-desc">Discover every possible deduction and credit for your clients.</p>
</div>
</div>
<a href="#" class="feature-link">Find Deductions <i class="fas fa-chevron-right"></i></a>
</div>
<div class="feature-card" onclick="openFeatureModal('calculatorModal')">
<div class="feature-header">
<div class="feature-icon tax-calculator">
<i class="fas fa-calculator"></i>
</div>
<div>
<h3 class="feature-title">Tax Calculator</h3>
<p class="feature-desc">Estimate tax liability quickly with real-time calculations.</p>
</div>
</div>
<a href="#" class="feature-link">Calculate Now <i class="fas fa-chevron-right"></i></a>
</div>
<div class="feature-card" onclick="openFeatureModal('documentsModal')">
<div class="feature-header">
<div class="feature-icon document-organizer">
<i class="fas fa-folder-open"></i>
</div>
<div>
<h3 class="feature-title">Document Organizer</h3>
<p class="feature-desc">Securely store and categorize all tax documents.</p>
</div>
</div>
<a href="#" class="feature-link">Manage Documents <i class="fas fa-chevron-right"></i></a>
</div>
<div class="feature-card" onclick="openFeatureModal('marketingModal')">
<div class="feature-header">
<div class="feature-icon marketing-tools">
<i class="fas fa-bullhorn"></i>
</div>
<div>
<h3 class="feature-title">Marketing Tools</h3>
<p class="feature-desc">Templates and tools to grow your client base.</p>
</div>
</div>
<a href="#" class="feature-link">Boost Your Business <i class="fas fa-chevron-right"></i></a>
</div>
<div class="feature-card" onclick="openFeatureModal('expenseModal')">
<div class="feature-header">
<div class="feature-icon expense-tracker">
<i class="fas fa-receipt"></i>
</div>
<div>
<h3 class="feature-title">Expense Tracker</h3>
<p class="feature-desc">Track your business expenses and deductions.</p>
</div>
</div>
<a href="#" class="feature-link">Track Expenses <i class="fas fa-chevron-right"></i></a>
</div>
</div>
<div class="recent-clients">
<div class="section-header">
<h2 class="section-title">Recent Client Activity</h2>
<a href="#" class="view-all">View All <i class="fas fa-chevron-right"></i></a>
</div>
<table>
<thead>
<tr>
<th>Client</th>
<th>Filing Type</th>
<th>Due Date</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="client-cell">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="client-avatar">
<span class="client-name">Sarah Johnson</span>
</div>
</td>
<td>1040 + Schedule C</td>
<td>Apr 15, 2023</td>
<td><span class="status completed">Completed</span></td>
<td><button class="action-btn"><i class="fas fa-ellipsis-h"></i></button></td>
</tr>
<tr>
<td>
<div class="client-cell">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="client-avatar">
<span class="client-name">Michael Chen</span>
</div>
</td>
<td>1040 + Schedule E</td>
<td>Apr 15, 2023</td>
<td><span class="status pending">Pending Docs</span></td>
<td><button class="action-btn"><i class="fas fa-ellipsis-h"></i></button></td>
</tr>
<tr>
<td>
<div class="client-cell">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez" class="client-avatar">
<span class="client-name">Emily Rodriguez</span>
</div>
</td>
<td>1120-S</td>
<td>Mar 15, 2023</td>
<td><span class="status completed">Completed</span></td>
<td><button class="action-btn"><i class="fas fa-ellipsis-h"></i></button></td>
</tr>
<tr>
<td>
<div class="client-cell">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="David Kim" class="client-avatar">
<span class="client-name">David Kim</span>
</div>
</td>
<td>1040 + Schedule D</td>
<td>Apr 15, 2023</td>
<td><span class="status review">Review Needed</span></td>
<td><button class="action-btn"><i class="fas fa-ellipsis-h"></i></button></td>
</tr>
<tr>
<td>
<div class="client-cell">
<img src="https://randomuser.me/api/portraits/women/63.jpg" alt="Lisa Wong" class="client-avatar">
<span class="client-name">Lisa Wong</span>
</div>
</td>
<td>1065 (Partnership)</td>
<td>Mar 15, 2023</td>
<td><span class="status completed">Completed</span></td>
<td><button class="action-btn"><i class="fas fa-ellipsis-h"></i></button></td>
</tr>
</tbody>
</table>
</div>
<div class="tax-tips">
<div class="tips-header">
<div class="tips-icon">
<i class="fas fa-lightbulb"></i>
</div>
<h2 class="section-title">Maximization Tips & Reminders</h2>
</div>
<div class="tip-card">
<h3 class="tip-title">Quarterly Estimated Payments Due Soon (Sep 15)</h3>
<p class="tip-desc">Remind your self-employed clients about their upcoming estimated tax payment deadline. Consider helping them calculate the exact amount to avoid underpayment penalties.</p>
</div>
<div class="tip-card">
<h3 class="tip-title">Education Credits Often Overlooked</h3>
<p class="tip-desc">Review if clients with college expenses qualify for American Opportunity Credit or Lifetime Learning Credit. Even small expenses can lead to significant savings.</p>
</div>
<div class="tip-card">
<h3 class="tip-title">Home Office Deduction Multiplier</h3>
<p class="tip-desc">For clients working from home, you can now deduct $5/sq ft (max 300 sq ft) under the simplified method, or calculate actual expenses for potentially larger deductions.</p>
</div>
</div>
</div>
</main>
<!-- Add Client Modal -->
<div class="modal" id="addClientModal">
<div class="modal-content">
<span class="close-modal" onclick="closeModal('addClientModal')">×</span>
<h2 class="modal-title"><i class="fas fa-user-plus"></i> Add New Client</h2>
<div class="form-group">
<label for="clientName">Full Name</label>
<input type="text" id="clientName" placeholder="John Doe">
</div>
<div class="form-group">
<label for="clientEmail">Email Address</label>
<input type="email" id="clientEmail" placeholder="john@example.com">
</div>
<div class="form-group">
<label for="clientPhone">Phone Number</label>
<input type="tel" id="clientPhone" placeholder="(555) 123-4567">
</div>
<div class="form-group">
<label for="clientType">Client Type</label>
<select id="clientType">
<option value="individual">Individual</option>
<option value="business">Business</option>
<option value="family">Family Package</option>
<option value="estate">Estate/Trust</option>
</select>
</div>
<div class="form-group">
<label for="taxForms">Expected Tax Forms</label>
<select id="taxForms" multiple>
<option value="1040">1040 (Individual)</option>
<option value="schedule-c">Schedule C (Business)</option>
<option value="schedule-e">Schedule E (Rental)</option>
<option value="schedule-d">Schedule D (Capital Gains)</option>
<option value="1120">1120 (Corporation)</option>
<option value="1065">1065 (Partnership)</option>
</select>
</div>
<div class="form-group">
<label for="clientNotes">Notes</label>
<textarea id="clientNotes" rows="3" placeholder="Any special considerations or notes about this client..."></textarea>
</div>
<div class="form-actions">
<button class="btn btn-outline" onclick="closeModal('addClientModal')">Cancel</button>
<button class="btn btn-primary">Add Client</button>
</div>
</div>
</div>
<!-- Client Manager Modal -->
<div class="modal" id="clientModal">
<div class="modal-content">
<span class="close-modal" onclick="closeModal('clientModal')">×</span>
<h2 class="modal-title"><i class="fas fa-users"></i> Client Manager</h2>
<div class="feature-desc" style="margin-bottom: 20px;">
Manage all your clients efficiently with our comprehensive client management tools.
Track deadlines, documents, communications, and more in one centralized location.
</div>
<div class="form-group">
<label>Search Clients</label>
<input type="text" placeholder="Search by name, email, or tax ID">
</div>
<div style="background: #f8f9fa; padding: 15px; border-radius: 8px; margin-bottom: 20px;">
<h4 style="margin-bottom: 10px;">Client Management Features:</h4>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>Client profile with all details and tax history</li>
<li>Document tracking and secure uploads</li>
<li>Deadline reminders and calendar integration</li>
<li>Client communication log</li>
<li>Custom questionnaire for tax preparation</li>
<li>Secure client portal for document exchange</li>
</ul>
</div>
<div class="form-actions">
<button class="btn btn-outline" onclick="closeModal('clientModal')">Close</button>
<button class="btn btn-primary">Open Client Manager</button>
</div>
</div>
</div>
<!-- Deduction Finder Modal -->
<div class="modal" id="deductionModal">
<div class="modal-content">
<span class="close-modal" onclick="closeModal('deductionModal')">×</span>
<h2 class="modal-title"><i class="fas fa-search-dollar"></i> Deduction Finder</h2>
<div class="feature-desc" style="margin-bottom: 20px;">
Never miss a deduction again! Our smart deduction finder analyzes client profiles to identify every possible
tax break they may qualify for, even ones they might not know about.
</div>
<div class="form-group">
<label>Select Client</label>
<select>
<option value="">Select a client to analyze</option>
<option value="1">Sarah Johnson</option>
<option value="2">Michael Chen</option>
<option value="3">Emily Rodriguez</option>
<option value="4">David Kim</option>
</select>
</div>
<div style="display: flex; gap: 15px; margin-bottom: 20px;">
<div style="flex: 1; background: #e6f7ff; padding: 15px; border-radius: 8px;">
<h4 style="margin-bottom: 10px; color: #0066cc;">Standard Detection</h4>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>Common deductions (mortgage, charity, etc.)</li>
<li>Basic credits and adjustments</li>
<li>Quick overview of potential savings</li>
</ul>
</div>
<div style="flex: 1; background: #f0fff0; padding: 15px; border-radius: 8px;">
<h4 style="margin-bottom: 10px; color: #008000;">Advanced Detection</h4>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>Industry-specific deductions</li>
<li>Overlooked niche credits</li>
<li>State-specific tax breaks</li>
<li>Retirement account strategies</li>
</ul>
</div>
</div>
<div class="form-actions">
<button class="btn btn-outline" onclick="closeModal('deductionModal')">Close</button>
<button class="btn btn-primary">Find Deductions</button>
</div>
</div>
</div>
<!-- Calculator Modal -->
<div class="modal" id="calculatorModal">
<div class="modal-content">
<span class="close-modal" onclick="closeModal('calculatorModal')">×</span>
<h2 class="modal-title"><i class="fas fa-calculator"></i> Tax Calculator</h2>
<div class="feature-desc" style="margin-bottom: 20px;">
Quickly estimate tax liability for yourself or your clients with our real-time tax calculator.
Adjust variables to see how different decisions affect the bottom line.
</div>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;">
<div class="form-group">
<label>Filing Status</label>
<select>
<option>Single</option>
<option>Married Filing Jointly</option>
<option>Married Filing Separately</option>
<option>Head of Household</option>
<option>Qualifying Widow(er)</option>
</select>
</div>
<div class="form-group">
<label>Income</label>
<input type="number" placeholder="$">
</div>
</div>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;">
<div class="form-group">
<label>Deductions</label>
<input type="number" placeholder="$">
</div>
<div class="form-group">
<label>Credits</label>
<input type="number" placeholder="$">
</div>
</div>
<div style="background: #f8f9fa; padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center;">
<h4 style="margin-bottom: 5px;">Estimated Tax Liability</h4>
<div style="font-size: 24px; font-weight: bold;">$0.00</div>
<div style="font-size: 14px; color: #666;">Based on standard assumptions</div>
</div>
<div class="form-actions">
<button class="btn btn-outline" onclick="closeModal('calculatorModal')">Close</button>
<button class="btn btn-primary">Calculate</button>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="footer-content">
<div>
<div class="footer-logo">TaxPro Maximizer</div>
<p style="color: #adb5bd; margin-bottom: 20px; font-size: 14px; max-width: 300px;">
Empowering tax professionals to maximize their side business with smart tools and insights.
</p>
<div class="footer-social">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-links">
<h4>Features</h4>
<ul>
<li><a href="#">Client Manager</a></li>
<li><a href="#">Deduction Finder</a></li>
<li><a href="#">Tax Calculator</a></li>
<li><a href="#">Document Organizer</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Resources</h4>
<ul>
<li><a href="#">Tax Law Updates</a></li>
<li><a href="#">Document Templates</a></li>
<li><a href="#">Marketing Tools</a></li>
<li><a href="#">Training Videos</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Support</h4>
<ul>
<li><a href="#">Help Center</a></li>
<li><a href="#">Live Chat</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Feedback</a></li>
</ul>
</div>
</div>
<div class="copyright">
© 2023 TaxPro Maximizer. All rights reserved.
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('.mobile-menu').addEventListener('click', function() {
const nav = document.querySelector('nav ul');
nav.style.display = nav.style.display === 'flex' ? 'none' : 'flex';
});
// Modal functions
document.getElementById('addClientBtn').addEventListener('click', function() {
document.getElementById('addClientModal').style.display = 'flex';
});
function openFeatureModal(modalId) {
document.getElementById(modalId).style.display = 'flex';
}
function closeModal(modalId) {
document.getElementById(modalId).style.display = 'none';
}
// Close modals when clicking outside
window.addEventListener('click', function(event) {
if (event.target.classList.contains('modal')) {
event.target.style.display = 'none';
}
});
// Simple tax calculator functionality
const calculatorModal = document.getElementById('calculatorModal');
calculatorModal.addEventListener('click', function(e) {
if (e.target.innerHTML === 'Calculate') {
const calculatorResult = calculatorModal.querySelector('h4');
calculatorResult.textContent = 'Estimated Tax Liability';
// This would be replaced with actual calculation logic
const randomTax = (Math.random() * 5000 + 500).toFixed(2);
calculatorModal.querySelector('div > div:nth-child(2)').textContent = '$' + randomTax;
alert('Full calculation would be performed here based on inputs');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
</html> |