
.logo img.logo_img{
    position: relative;
    top: 2px;
    width: 160px;
}

.logo{
    font-size: 42px;
    font-weight: 600;
}

.text-bodyText a{
    color: #ff9604;
}

.bg-softGrey{
    background: rgb(244 252 255);
}
.bg-soft-gradient{
    background: linear-gradient(294deg, #ffffff 0%, #e1f4ff 100.44%);
}
.rect-avatar{
    width: 80px;
    height: 80px;
}
.social-login li{
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    padding: 4px;
    font-size: 24px;
}
.social-login li.google{
    color: #dd4b39;
    border-color: transparent;
    background: #fae2df;
}
.social-login li:hover a{
    color: #fff;
}
.social-login li.google:hover{
    background: #dd4b39;
}
.social-login li.facebook{
    color: #3b5998;
    border-color: transparent;
    background: #e0e4ef;
}
.social-login li.facebook:hover{
    background: #3b5998;
}
.social-login li.twitter{
    color: #1da1f2;
    border-color: transparent;
    background: #dbf0fd;
}
.social-login li.twitter:hover{
    background: #1da1f2;
}

 /* CSS Reset & Base Styles */
        
        
        :root {
            --tax-blue: rgba(58, 34, 93, 1);
            --tax-blue-light: #3b82f6;
            --tax-blue-lighter: #93c5fd;
            --tax-yellow: rgba(232, 161, 21, 1);
            --tax-orange: #ea580c;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }
        
        /* body {
            background-color: var(--gray-50);
            color: var(--gray-800);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        } 
        
        a {
            text-decoration: none;
            color: inherit;
        }
        */
        /* Header Styles */
        .bg-softBg2{
            background-color: rgba(242, 235, 253, 1);
        }
       .header-bg{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
    animation: fadeDown 0.5s linear;
       }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }
       
        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .notification-bell {
            position: relative;
            color: var(--gray-500);
            cursor: pointer;
            font-size: 1.25rem;
        }
        
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ef4444;
            color: white;
            font-size: 0.75rem;
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* User Dropdown Styles */
        .user-dropdown {
            position: relative;
        }
        
        .user-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }
        
        .user-dropdown-toggle:hover {
            background-color: var(--gray-100);
        }
        
        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background-color: var(--tax-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        .user-info {
            display: flex;
            flex-direction: column;
        }
        
        .user-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-700);
        }
        
        .user-email {
            font-size: 0.75rem;
            color: var(--gray-500);
        }
        
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            width: 16rem;
            z-index: 50;
            border: 1px solid var(--gray-200);
            display: none;
        }
        
        .dropdown-menu.active {
            display: block;
            animation: fadeIn 0.2s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-header {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .dropdown-header-name {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--gray-900);
        }
        
        .dropdown-header-email {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        .dropdown-items {
            padding: 0.5rem 0;
        }
        
        .dropdown-item {
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-700);
            font-size: 0.875rem;
            transition: background-color 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: var(--gray-100);
        }
        
        .dropdown-item i {
            width: 1rem;
            text-align: center;
            color: var(--tax-blue);
        }
        
        .dropdown-divider {
            height: 1px;
            background-color: var(--gray-200);
            margin: 0.5rem 0;
        }
        
        .dropdown-item.logout {
            color: #ef4444;
        }
        
        .dropdown-item.logout i {
            color: #ef4444;
        }
        
        /* Main Content Styles */
        main {
            flex: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1rem;
            width: 100%;
        }
        
        .page-header {
            margin-bottom: 2rem;
        }
        
        .page-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .page-subtitle {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }
        
        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            border-bottom: 1px solid var(--gray-200);
            margin-bottom: 2rem;
            overflow-x: auto;
        }
        
        .tab-button {
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
            border-bottom: 2px solid transparent;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }
        
        .tab-button:hover {
            color: var(--tax-blue);
        }
        
        .tab-button.active {
            color: var(--tax-blue);
            border-bottom-color: var(--tax-blue);
        }
        
        .tab-button i {
            margin-right: 0.5rem;
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }
        
        /* Dashboard Tab */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            background-color: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
        }
        
        .stat-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .stat-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }
        
        .icon-blue {
            background-color: rgba(59, 130, 246, 0.1);
            color: var(--tax-blue);
        }
        
        .icon-green {
            background-color: rgba(5, 150, 105, 0.1);
            color: var(--tax-yellow);
        }
        
        .icon-orange {
            background-color: rgba(234, 88, 12, 0.1);
            color: var(--tax-orange);
        }
        
        .icon-purple {
            background-color: rgba(124, 58, 237, 0.1);
            color: #7c3aed;
        }
        
        .stat-card-title {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .stat-card-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .stat-card-footer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
            font-size: 0.75rem;
        }
        
        .trend-up {
            color: var(--tax-yellow);
        }
        
        .trend-down {
            color: #ef4444;
        }
        
        .dashboard-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
        }
        
        @media (max-width: 1024px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .dashboard-card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
            overflow: hidden;
        }
        
        .dashboard-card-header {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dashboard-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .dashboard-card-action {
            font-size: 0.875rem;
            color: var(--tax-blue);
            cursor: pointer;
        }
        
        .dashboard-card-body {
            padding: 1.5rem;
        }
        
        .chart-container {
            height: 300px;
            position: relative;
        }
        
        .chart-placeholder {
            width: 100%;
            height: 100%;
            background-color: var(--gray-100);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-500);
        }
        
        .activity-list {
            list-style: none;
        }
        
        .activity-item {
            display: flex;
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .activity-item:last-child {
            border-bottom: none;
        }
        
        .activity-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .activity-content {
            flex: 1;
        }
        
        .activity-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-800);
        }
        
        .activity-time {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        .deadline-list {
            list-style: none;
        }
        
        .deadline-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .deadline-item:last-child {
            border-bottom: none;
        }
        
        .deadline-info {
            display: flex;
            flex-direction: column;
        }
        
        .deadline-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-800);
        }
        
        .deadline-description {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        .deadline-date {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--tax-orange);
        }
        
        /* New Service Request Tab */
        .service-form {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
            padding: 2rem;
        }
        
        .form-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-bottom: 1.5rem;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            transition: border-color 0.2s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            background-color: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
        }
        
        .form-select:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-check {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .form-check-input {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }
        
        .form-check-label {
            font-size: 0.875rem;
            color: var(--gray-700);
        }
        
        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background-color: var(--tax-blue);
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #1e3a8a;
        }
        
        .btn-outline {
            background-color: white;
            color: var(--gray-700);
            border: 1px solid var(--gray-300);
        }
        
        .btn-outline:hover {
            background-color: var(--gray-100);
        }
        
        /* My Invitees Tab */
        .invitees-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .invitees-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .invitees-actions {
            display: flex;
            gap: 1rem;
        }
        
        .invitees-search {
            position: relative;
        }
        
        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
        }
        
        .search-input {
            padding: 0.625rem 1rem 0.625rem 2.5rem;
            font-size: 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            width: 16rem;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .invitees-table-container {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
            overflow: hidden;
        }
        
        .invitees-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .invitees-table th {
            background-color: var(--gray-50);
            padding: 0.75rem 1.5rem;
            text-align: left;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .invitees-table td {
            padding: 1rem 1.5rem;
            font-size: 0.875rem;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-200);
        }
        
        .invitees-table tr:last-child td {
            border-bottom: none;
        }
        
        .status-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 500;
            border-radius: 9999px;
        }
        
        .status-pending {
            background-color: rgba(234, 88, 12, 0.1);
            color: var(--tax-orange);
        }
        
        .status-active {
            background-color: rgb(255, 247, 233);
            color: var(--tax-yellow);
        }
        
        .table-action {
            color: var(--tax-blue);
            cursor: pointer;
        }
        
        .table-action:hover {
            text-decoration: underline;
        }
        
        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-top: 1px solid var(--gray-200);
        }
        
        .pagination-info {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .pagination-controls {
            display: flex;
            gap: 0.25rem;
        }
        
        .pagination-button {
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            color: var(--gray-700);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .pagination-button:hover {
            background-color: var(--gray-100);
        }
        
        .pagination-button.active {
            background-color: var(--tax-blue);
            color: white;
        }
        
        .pagination-button.disabled {
            color: var(--gray-400);
            cursor: not-allowed;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 0.75rem;
            }
            
            .user-info {
                display: none;
            }
            
            .page-title {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .invitees-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .invitees-actions {
                width: 100%;
            }
            
            .search-input {
                width: 100%;
            }
            
            .invitees-table-container {
                overflow-x: auto;
            }
            
            .invitees-table {
                min-width: 600px;
            }
        }
        /* Main Container */
        .main-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        /* Profile Header */
        .profile-header {
            /* background: linear-gradient(135deg, var(--tax-blue) 0%, var(--tax-blue-light) 100%); */
            background: linear-gradient(252deg, #3A225D 0%, #3a225de0 100.44%);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .profile-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .profile-header-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .profile-avatar-container {
            position: relative;
        }
        
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.3);
            object-fit: cover;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 600;
        }
        
        .avatar-upload {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 36px;
            height: 36px;
            background: var(--tax-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid white;
        }
        
        .avatar-upload:hover {
            background: #047857;
            transform: scale(1.1);
        }
        
        .profile-info h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .profile-info p {
            opacity: 0.9;
            margin-bottom: 0.25rem;
        }
        
        .profile-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .stat-label {
            font-size: 0.875rem;
            opacity: 0.8;
        }
        
        /* Profile Navigation */
        .profile-nav {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            overflow: hidden;
        }
        
        .nav-tabs {
            display: flex;
            overflow-x: auto;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .nav-tab {
            padding: 1rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-tab:hover {
            color: var(--tax-blue);
            background: var(--gray-50);
        }
        
        .nav-tab.active {
            color: var(--tax-blue);
            border-bottom-color: var(--tax-blue);
            background: var(--gray-50);
        }
        
        /* Content Sections */
        .content-section {
            display: none;
            animation: fadeInUp 0.5s ease-out;
        }
        
        .content-section.active {
            display: block;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .section-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: between;
            align-items: center;
        }
        
        .section-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--gray-800);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .section-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            text-decoration: none;
        }
        
        .btn-primary {
            background: var(--tax-blue);
            color: white;
        }
        
        /* .btn-primary:hover {
            background: #1e3a8a;
            transform: translateY(-1px);
        } */
        
        .btn-outline {
            background: white;
            color: var(--gray-700);
            border: 1px solid var(--gray-300);
        }
        
        .btn-outline:hover {
            background: var(--gray-50);
            border-color: var(--gray-400);
        }
        
        .btn-success {
            background: var(--tax-yellow);
            color: white;
        }
        
        .btn-success:hover {
            background: #047857;
        }
        
        .section-body {
            padding: 1.5rem;
        }
        
        /* Form Styles */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 0.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            border: 2px solid var(--gray-200);
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-control:disabled {
            background: var(--gray-100);
            color: var(--gray-500);
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }
        
        /* Toggle Switch */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--gray-300);
            transition: 0.4s;
            border-radius: 24px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--tax-blue);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }
        
        /* Progress Bar */
        .progress-bar {
            width: 100%;
            height: 8px;
            background: var(--gray-200);
            border-radius: 4px;
            overflow: hidden;
            margin: 1rem 0;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--tax-blue) 0%, var(--tax-yellow) 100%);
            border-radius: 4px;
            transition: width 0.5s ease;
        }
        
        /* Security Section */
        .security-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border: 1px solid var(--gray-200);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .security-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .security-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
        }
        
        .security-icon.enabled {
            background: rgb(255 247 233);
            color: var(--tax-yellow);
        }
        
        .security-icon.disabled {
            background: rgba(239, 68, 68, 0.1);
            color: var(--error);
        }
        
        .security-details h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .security-details p {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        /* Notification Preferences */
        .notification-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .notification-item:last-child {
            border-bottom: none;
        }
        
        .notification-info h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .notification-info p {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        /* Tax Information Cards */
        .tax-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .tax-info-card {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .tax-info-card:hover {
            border-color: var(--tax-blue-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .tax-info-card.selected {
            border-color: var(--tax-blue);
            background: rgba(59, 130, 246, 0.05);
        }
        
        .tax-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .tax-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: rgba(59, 130, 246, 0.1);
            color: var(--tax-blue);
        }
        
        .tax-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .tax-card-description {
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.5;
        }
        
        /* Activity Timeline */
        .activity-timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .activity-timeline::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gray-200);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -1.75rem;
            top: 0.25rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--tax-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--tax-blue);
        }
        
        .timeline-content {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 0.5rem;
            padding: 1rem;
        }
        
        .timeline-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .timeline-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        .timeline-date {
            font-size: 0.75rem;
            color: var(--gray-500);
        }
        
        .timeline-description {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                padding: 1rem;
            }
            
            .profile-header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .profile-stats {
                justify-content: center;
            }
            
            .nav-tabs {
                flex-wrap: wrap;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .tax-info-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Success Message */
        .success-message {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--tax-yellow);
            color: var(--tax-yellow);
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            display: none;
        }
        
        .success-message.show {
            display: block;
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         /* signup-container*/
        .signup-container {
            min-height: 100vh;
            display: flex;
        }
        
        /* Left Side - Branding */
        .branding-section {
            display: none;
            width: 45%;
            background: linear-gradient(252deg, #3A225D 0%, #3a225de0 100.44%), url(./assets/images/case_study_img5.png);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .branding-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 5rem;
            left: 5rem;
            width: 4rem;
            height: 4rem;
            font-size: 2rem;
        }
        
        .floating-element:nth-child(2) {
            top: 10rem;
            right: 5rem;
            width: 3rem;
            height: 3rem;
            font-size: 1.125rem;
            animation-delay: -2s;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .floating-element:nth-child(3) {
            bottom: 4rem;
            left: 3rem;
            width: 5rem;
            height: 5rem;
            font-size: 2rem;
            animation-delay: -4s;
            background: rgba(255, 255, 255, 0.1);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .branding-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 3rem;
            height: 100%;
            top: 100px;
        }
        
        .branding-logo {
            margin-bottom: 2rem;
        }
        
        .branding-logo h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .branding-logo p {
            font-size: 1.25rem;
            opacity: 0.9;
        }
        
        .branding-description {
            max-width: 28rem;
            margin-bottom: 2rem;
        }
        
        .branding-description h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            text-align: left;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            width: 2rem;
            height: 2rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 0.875rem;
        }
        
        /* Right Side - Signup Form */
        .form-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
        }
        
        .form-container {
            max-width: 32rem;
            width: 100%;
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Logo */
        .mobile-logo {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .mobile-logo h1 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--tax-blue);
        }
        
        .mobile-logo p {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }
        
        /* Progress Indicator */
        .progress-indicator {
            margin-bottom: 2rem;
        }
        
        .progress-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .step-indicator {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            border: 2px solid var(--gray-300);
            background: var(--gray-100);
            color: var(--gray-500);
            transition: all 0.3s ease;
        }
        
        .step-indicator.active {
            background: var(--tax-blue);
            border-color: var(--tax-blue);
            color: white;
        }
        
        .step-indicator.completed {
            background: var(--tax-green);
            border-color: var(--tax-green);
            color: white;
        }
        
        .step-connector {
            width: 3rem;
            height: 2px;
            background: var(--gray-300);
            margin: 0 1rem;
        }
        
        .step-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--gray-500);
        }
        
        /* Form Card */
        .form-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            padding: 2rem;
            border: 1px solid var(--gray-100);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-header h2 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .form-header p {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }
        
        /* Step Content */
        .step-content {
            display: none;
        }
        
        .step-content.active {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Social Signup */
        .social-signup {
            margin-bottom: 1.5rem;
    display: flex
;
    gap: 10px;
        }
        
        .social-button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            background: white;
            color: var(--gray-700);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 0.75rem;
            
        }
        
        .social-button:hover {
            background: var(--gray-50);
        }
        
        .social-button i {
            font-size: 1.125rem;
            margin-right: 0.75rem;
            color: var(--gray-700);
        }
        
        /* Divider */
        .divider {
            position: relative;
            margin: 1.5rem 0;
        }
        
        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gray-300);
        }
        
        .divider span {
            background: white;
            color: var(--gray-500);
            font-size: 0.875rem;
            padding: 0 0.5rem;
            position: relative;
            display: block;
            text-align: center;
        }
        
        /* Form Styles */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.25rem;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            background: white;
        }
        
        .form-control.with-icon {
            padding-left: 2.5rem;
        }
        
        .form-control.with-toggle {
            padding-right: 2.5rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .password-toggle {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .password-toggle:hover {
            color: var(--gray-600);
        }
        
        /* Password Strength */
        .password-strength {
            margin-top: 0.5rem;
        }
        
        .strength-bars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }
        
        .strength-bar {
            height: 0.25rem;
            width: 25%;
            background: var(--gray-200);
            border-radius: 0.125rem;
            transition: background-color 0.3s ease;
        }
        
        .strength-bar.filled {
            background: var(--tax-green);
        }
        
        .strength-bar.weak {
            background: #ef4444;
        }
        
        .strength-bar.medium {
            background: #f59e0b;
        }
        
        .strength-bar.strong {
            background: var(--tax-green);
        }
        
        .strength-text {
            font-size: 0.75rem;
            color: var(--gray-500);
        }
        
        /* Select Styles */
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }
        
        /* Checkbox Styles */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .checkbox-group input {
            width: 1rem;
            height: 1rem;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            accent-color: var(--tax-blue);
            flex-shrink: 0;
        }
        
        .checkbox-group label {
            font-size: 0.875rem;
            color: var(--gray-700);
            line-height: 1.5;
        }
        
        .checkbox-group a {
            color: var(--tax-blue);
            transition: color 0.2s ease;
        }
        
        .checkbox-group a:hover {
            color: #1e3a8a;
        }
        
        /* Verification Code */
        .verification-container {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .verification-icon {
            width: 4rem;
            height: 4rem;
            background: rgba(5, 150, 105, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--tax-green);
            font-size: 2rem;
        }
        
        .code-inputs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        
        .code-input {
            width: 3rem;
            height: 3rem;
            text-align: center;
            font-size: 1.25rem;
            font-weight: 700;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }
        
        .code-input:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .resend-link {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .resend-link button {
            background: none;
            border: none;
            color: var(--tax-blue);
            font-weight: 500;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .resend-link button:hover {
            color: #1e3a8a;
        }
        
        /* Form Actions */
        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn {
            flex: 1;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: none;
        }
        
        .btn-primary {
            background: var(--tax-blue);
            color: white;
        }
        
        .btn-primary:hover {
            background: #1e3a8a;
            transform: translateY(-1px);
        }
        
        .btn-success {
            background: var(--tax-green);
            color: white;
        }
        
        .btn-success:hover {
            background: #047857;
            transform: translateY(-1px);
        }
        
        .btn-outline {
            background: white;
            color: var(--gray-700);
            border: 1px solid var(--gray-300);
        }
        
        .btn-outline:hover {
            background: var(--gray-50);
        }
        
        .btn:disabled {
            background: var(--gray-400);
            cursor: not-allowed;
            transform: none;
        }
        
        /* Footer Links */
        .form-footer {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .form-footer p {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .form-footer a {
            font-weight: 500;
            color: var(--tax-blue);
            transition: color 0.2s ease;
        }
        
        .form-footer a:hover {
            color: #1e3a8a;
        }
        
        /* Security Notice */
        .security-notice {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .security-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(5, 150, 105, 0.1);
            border: 1px solid rgba(5, 150, 105, 0.2);
            border-radius: 0.5rem;
            color: var(--tax-green);
            font-size: 0.875rem;
        }
        
        .security-badge i {
            margin-right: 0.5rem;
        }
        
        /* Responsive Design */
        @media (min-width: 1024px) {
            .branding-section {
                display: block;
            }
            
            .form-section {
                width: 55%;
            }
            
            .mobile-logo {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .form-container {
                padding: 0;
            }
            
            .form-card {
                padding: 1.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-actions {
                flex-direction: column;
            }
            
            .code-inputs {
                gap: 0.25rem;
            }
            
            .code-input {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
            }
        }
        .signup_img{
            width: 300px;
            position: absolute;
            left: calc(50% - 150px);
        }

        .login_img{
            width: 350px;
            position: absolute;
            left: calc(50% - 175px);
            top: -120px;
        }
       
        .header nav ul li a, .header a, .header .subMenuTitle{
            font-size: 0.88rem;
        }
         @media (min-width: 1200px){

        .display-4{
            line-height: 1.2;
        }

        .xl\:gap-10 {
             gap: 1.5rem !important;
        }
        .xl\:pl-30 {
            padding-left: 60px !important;
        }

        }
        .border-p1
        {
            --tw-border-opacity: 1;
            border-color: rgba(58, 34, 93, 1);
            border-color: rgb(58, 34, 93);
        }
        
         /* Left Side - Branding */
        .branding-section {
            display: none;
            width: 50%;
            background: linear-gradient(252deg, #3A225D 0%, #3a225de0 100.44%), url(./assets/images/case_study_img5.png);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .branding-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 5rem;
            left: 5rem;
            width: 4rem;
            height: 4rem;
            font-size: 2rem;
        }
        
        .floating-element:nth-child(2) {
            top: 10rem;
            right: 8rem;
            width: 3rem;
            height: 3rem;
            font-size: 1.125rem;
            animation-delay: -2s;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .floating-element:nth-child(3) {
            bottom: 10rem;
            left: 8rem;
            width: 5rem;
            height: 5rem;
            font-size: 2rem;
            animation-delay: -4s;
            background: rgba(255, 255, 255, 0.1);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .branding-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 3rem;
            height: 100%;
        }
        
        .branding-logo {
            margin-bottom: 2rem;
        }
        
        .branding-logo h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .branding-logo p {
            font-size: 1.25rem;
            opacity: 0.9;
        }
        
        .branding-description {
            max-width: 28rem;
            margin-bottom: 2rem;
        }
        
        .branding-description h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .branding-description p {
            font-size: 1.125rem;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .branding-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            text-align: center;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-size: 1.875rem;
            font-weight: 700;
        }
        
        .stat-label {
            font-size: 0.875rem;
            opacity: 0.8;
        }
        
        /* Right Side - Login Form */
        .form-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .form-container {
            max-width: 28rem;
            width: 100%;
            animation: slideIn 0.5s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Logo */
        .mobile-logo {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .mobile-logo h1 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--tax-blue);
        }
        
        .mobile-logo p {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }
        
        /* Form Card */
        .form-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            padding: 2rem;
            border: 1px solid var(--gray-100);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-header h2 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .form-header p {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }
        
        /* Social Login */
        .social-login {
            margin-bottom: 1.5rem;
        }
        
        .social-button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            background: white;
            color: var(--gray-700);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 0.75rem;
        }
        
        .social-button:hover {
            background: var(--gray-50);
        }
        
        .social-button img {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
        }
        
        .social-button i {
            font-size: 1.125rem;
            margin-right: 0.75rem;
            color: var(--gray-700);
        }
        
        /* Divider */
        .divider {
            position: relative;
            margin: 1.5rem 0;
        }
        
        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gray-300);
        }
        
        .divider span {
            background: white;
            color: var(--gray-500);
            font-size: 0.875rem;
            padding: 0 0.5rem;
            position: relative;
            display: block;
            text-align: center;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.25rem;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            padding-left: 2.5rem;
            font-size: 0.875rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            background: white;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--tax-blue-light);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .password-toggle {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .password-toggle:hover {
            color: var(--gray-600);
        }
        
        /* Form Options */
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
        }
        
        .checkbox-group input {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
            accent-color: var(--tax-blue);
        }
        
        .checkbox-group label {
            font-size: 0.875rem;
            color: var(--gray-700);
        }
        
        .forgot-password {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--tax-blue);
            transition: color 0.2s ease;
        }
        
        .forgot-password:hover {
            color: #1e3a8a;
        }
        
        /* Submit Button */
        .submit-button {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.75rem 1rem;
            background: var(--tax-blue);
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 1.5rem;
        }
        
        .submit-button:hover {
            transform: translateY(-1px);
            background: var(--tax-yellow) !important;
        }
        
        .submit-button:disabled {
            background: var(--gray-400);
            cursor: not-allowed;
            transform: none;
        }
        
        .submit-button i {
            margin-right: 0.5rem;
        }
        
        /* Footer Links */
        .form-footer {
            text-align: center;
        }
        
        .form-footer p {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .form-footer a {
            font-weight: 500;
            color: var(--tax-blue);
            transition: color 0.2s ease;
        }
        
        .form-footer a:hover {
            color: #1e3a8a;
        }
        
        /* Security Notice */
        .security-notice {
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .security-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(5, 150, 105, 0.1);
            border: 1px solid rgba(5, 150, 105, 0.2);
            border-radius: 0.5rem;
            color: var(--tax-green);
            font-size: 0.875rem;
        }
        
        .security-badge i {
            margin-right: 0.5rem;
        }
        .header-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .header-icon {
            color: var(--tax-blue);
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .header-title {
            font-size: 1.875rem;
            font-weight: bold;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .header-description {
            color: var(--gray-600);
        }

        .form-card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
            padding: 2rem;
        }

        /* Success Message */
        .success-message {
            display: none;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background-color: var(--green-50);
            border: 1px solid var(--green-200);
            border-radius: 0.375rem;
        }

        .success-content {
            display: flex;
            align-items: flex-start;
        }

        .success-icon {
            color: var(--tax-green);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .success-text {
            font-size: 0.875rem;
            color: var(--green-700);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.25rem;
        }

        .input-container {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }

        .form-input {
            display: block;
            width: 100%;
            padding: 0.5rem 0.75rem 0.5rem 2.5rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            font-size: 0.875rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--tax-blue);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        /* Security Check */
        .divider {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background-color: var(--gray-200);
        }

        .divider-text {
            padding: 0 0.75rem;
            font-size: 0.75rem;
            color: var(--gray-500);
            background-color: white;
        }

        .captcha-container {
            padding: 1rem;
            background-color: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 0.375rem;
            margin-top: 1rem;
        }

        .captcha-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .captcha-question {
            flex: 1;
        }

        .captcha-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
        }

        .captcha-subtitle {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }

        .captcha-input {
            width: 5rem;
            padding: 0.5rem 0.75rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .captcha-input:focus {
            outline: none;
            border-color: var(--tax-blue);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        /* Submit Button */
        .submit-button {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.375rem;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            background-color: var(--tax-blue) !important;
            cursor: pointer;
            transition: background-color 0.2s, box-shadow 0.2s;
        }

       

        .submit-button:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        /* Sign In Link */
        .signin-link {
            margin-top: 1.5rem;
            text-align: center;
        }

        .signin-text {
            font-size: 0.875rem;
            color: var(--gray-600);
        }

        .signin-text a {
            font-weight: 500;
            color: var(--tax-blue);
            text-decoration: none;
            transition: color 0.2s;
        }

        .signin-text a:hover {
            color: var(--blue-700);
        }

        /* Help Section */
        .help-section {
            margin-top: 1.5rem;
        }

        .help-card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
            padding: 1rem;
        }

        .help-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .help-text {
            font-size: 0.75rem;
            color: var(--gray-600);
            line-height: 1.4;
        }

        .help-text a {
            color: var(--tax-blue);
            text-decoration: none;
        }

        .help-text a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (min-width: 1024px) {
            .branding-section {
                display: block;
            }
            
            .form-section {
                width: 50%;
            }
            
            .mobile-logo {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .form-container {
                padding: 0;
            }
            
            .form-card {
                padding: 1.5rem;
            }
            
            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
       /* Hero Section */
        .hero-section {
            padding: 4rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        
        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(59, 130, 246, 0.1);
            color: var(--tax-blue);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out;
        }
        
        .hero-badge i {
            margin-right: 0.5rem;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 42rem;
            margin: 0 auto 2rem;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            animation: fadeInUp 0.6s ease-out 0.6s both;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--tax-blue);
            display: block;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-top: 0.25rem;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tax-blue);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 4rem;
            height: 4rem;
            font-size: 1.5rem;
        }
        
        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 3rem;
            height: 3rem;
            font-size: 1.125rem;
            animation-delay: -2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            width: 3.5rem;
            height: 3.5rem;
            font-size: 1.25rem;
            animation-delay: -4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         /* Main Content */
        .main-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Featured Testimonials */
        
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-600);
            max-width: 36rem;
            margin: 0 auto;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .featured-testimonial {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }
        
        .featured-testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .featured-testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--tax-blue) 0%, var(--tax-green) 100%);
        }
        
        .testimonial-quote {
            font-size: 1.125rem;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--tax-blue-lighter);
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            font-family: serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--tax-blue) 0%, var(--tax-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.125rem;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--gray-900);
        }
        
        .author-title {
            font-size: 0.875rem;
            color: var(--gray-500);
        }
        
        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-top: 0.5rem;
        }
        
        .star {
            color: #fbbf24;
            font-size: 1rem;
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Testimonial Carousel */
        .carousel-section {
            margin-bottom: 4rem;
            background: white;
            border-radius: 2rem;
            padding: 3rem 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .carousel-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
            pointer-events: none;
        }
        
        .carousel-container {
            position: relative;
            z-index: 2;
        }
        
        .carousel-wrapper {
            overflow: hidden;
            border-radius: 1rem;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
        }
        
        .carousel-testimonial {
            max-width: 48rem;
            margin: 0 auto;
        }
        
        .carousel-quote {
            font-size: 1.5rem;
            color: var(--gray-700);
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .carousel-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .carousel-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .carousel-button {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: var(--tax-blue);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-button:hover {
            background: #1e3a8a;
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            display: flex;
            gap: 0.5rem;
        }
        
        .indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: var(--tax-blue);
            transform: scale(1.2);
        }
        
        /* Video Testimonials */
        .video-section {
            margin-bottom: 4rem;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .video-testimonial {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .video-testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .video-thumbnail {
            position: relative;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--tax-blue) 0%, var(--tax-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .play-button {
            width: 4rem;
            height: 4rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tax-blue);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .video-content {
            padding: 1.5rem;
        }
        
        .video-title {
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .video-description {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 1rem;
        }
        
        .video-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .video-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--tax-orange) 0%, var(--warning) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(338deg, var(--tax-blue) 0%, #bc8dff 100%);
            
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
        }
        
        .stats-container {
            position: relative;
            z-index: 2;
        }
        
        .stats-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .stats-subtitle {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-description {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        /* Review Platform Logos */
        .platforms-section {
            margin-bottom: 4rem;
        }
        
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .platform-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .platform-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .platform-logo {
            width: 3rem;
            height: 3rem;
            background: var(--gray-100);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--tax-blue);
        }
        
        .platform-name {
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .platform-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .platform-reviews {
            font-size: 0.875rem;
            color: var(--gray-500);
        }
        
        /* CTA Section */
        .cta-section {
            background: white;
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
        }
        
        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 0.875rem 2rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--tax-blue);
            color: white;
        }
        
        .btn-primary:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: white;
            color: var(--tax-blue);
            border: 2px solid var(--tax-blue);
        }
        
        .btn-outline:hover {
            background: var(--tax-blue);
            color: white;
        }
        
        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 3rem 1rem 2rem;
            margin-top: 4rem;
        }
        
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: var(--gray-400);
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .footer-copyright {
            color: var(--gray-500);
            font-size: 0.875rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
            }
            
            .carousel-section {
                padding: 2rem 1rem;
            }
            
            .carousel-quote {
                font-size: 1.125rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .floating-element {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .platforms-grid {
                grid-template-columns: 1fr;
            }
        }