        :root {
            --bg: #0f1724;
            --card: rgba(255, 255, 255, 0.04);
            --muted: #98a0b3;
            --accent: #00f5a0;
            --accent-2: #FF6347;
            --accent-3: #8a7dff;
            --accent-4: #feca57;
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.06);
            --radius: 14px;
            --fw-regular: 400;
            --fw-medium: 600;
            --fw-bold: 700;
            --header-height: 72px;
            --link-hover-bg: rgba(255, 255, 255, 0.02);
            --muted: #6c757d;
            --font-family: 'Inter', sans-serif;
            --font-heading: 'Space Grotesk', sans-serif;
            --about-title-font-size: 1.8rem;
            --skills-title-font-size: 1.5rem;
            --section-title-font-size: 1.6rem;
             color-scheme: dark;
            --shape-i: #ffffff;    
        }

        :root[data-theme="light"] {
            --bg: #f8f9fa;
            --card: #ffffff;
            --muted: #6c757d;
            --accent: #00a36c;
            --accent-2: #e74c3c;
            --accent-3: #6c5ce7;
            --accent-4: #f39c12;
            --glass: rgba(0, 0, 0, 0.03);
            --glass-border: rgba(0, 0, 0, 0.06);
            --link-hover-bg: rgba(0, 0, 0, 0.02);
            color-scheme: light;
            --shape-i: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg);
            color: var(--muted);
            line-height: 1.6;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--accent);
        }

        .glass-card {
            background: var(--card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .accent-text {
            color: var(--accent);
        }

        .accent-2-text {
            color: var(--accent-2);
        }

        .accent-3-text {
            color: var(--accent-3);
        }

        .accent-4-text {
            color: var(--accent-4);
        }

        /* Header Styles */
        .main-header {
            background: var(--card);
            border-bottom: 1px solid var(--glass-border);
            padding: 0 25px;
            height: var(--header-height);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent);
            text-decoration: none;
            font-family: monospace;
        }
        .logo-icon {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            border-radius: 10px;
            overflow: hidden;
        }

        .logo-icon i {
            color: white;
            font-size: 1.2rem;
            z-index: 1;
        }


        .logo-shape {
            position: relative;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: var(--accent); */
            /* background: linear-gradient(135deg, var(--accent), var(--secondary)); */
            /* border-radius: 10px; */
            /* transform: rotate(45deg); */
            overflow: hidden;


            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            /* animation: float 6s ease-in-out infinite; */
        }

        .logo-shape i {
            transform: rotate(-45deg);
            color: var(--shape-i);
            font-size: 1.2rem;
            z-index: 1;
        }

/* 
        .logo-shape::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, var(--accent), var(--accent-3), var(--accent-2));
            border-radius: 12px;
            z-index: -1;
            filter: blur(8px);
            opacity: 0.7;
        }

 */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 15px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--muted);
            text-decoration: none;
            padding: 10px 15px;
            border-radius: var(--radius);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: monospace;
        }

        .nav-link:hover {
            color: var(--accent);
            background: var(--link-hover-bg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            min-width: 200px;
            padding: 10px 0;
            z-index: 1000;
            display: none;
        }

        .dropdown-menu.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--link-hover-bg);
            color: var(--accent);
        }

        .templates-menu {
            max-height: 400px;
            overflow-y: auto;
        }

        .templates-menu::-webkit-scrollbar {
            width: 6px;
        }

        .templates-menu::-webkit-scrollbar-track {
            background: var(--glass);
            border-radius: 10px;
        }

        .templates-menu::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        .templates-menu::-webkit-scrollbar-thumb:hover {
            background: var(--accent-3);
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .user-profile:hover {
            background: var(--link-hover-bg);
        }

        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }

        /* Editor Layout */
        .editor-container {
            display: flex;
            height: calc(100vh - var(--header-height));
            overflow: hidden;
        }

        .customization-panel {
            width: 380px;
            background: var(--card);
            border-right: 1px solid var(--glass-border);
            padding: 25px;
            overflow-y: auto;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .resume-preview {
            flex: 1;
            padding: 25px;
            overflow-y: auto;
            background: var(--bg);
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .preview-container {
            width: 100%;
            max-width: 1100px;
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            /* IMPORTANT: Prevent customization styles from affecting editor */
            background: var(--card) !important;
            color: var(--muted) !important;
        }

        .preview-container:hover {
            transform: scale(0.92);
        }

        /* Control Groups */
        .control-group {
            margin-bottom: 25px;
            padding: 20px;
            background: var(--glass);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .control-group:hover {
            border-color: var(--accent);
            box-shadow: 0 5px 15px rgba(0, 245, 160, 0.1);
        }

        .control-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--accent);
            display: block;
            font-size: 1.1rem;
        }

        .form-control {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: var(--muted);
            border-radius: var(--radius);
            padding: 12px 15px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .form-control:focus {
            background: var(--glass);
            border-color: var(--accent);
            color: var(--muted);
            box-shadow: 0 0 0 0.25rem rgba(0, 245, 160, 0.25);
        }

        .color-picker {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .color-option {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .color-option.active {
            border-color: white;
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .color-option.active::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 0 0 3px rgba(0,0,0,0.5);
        }

        .btn-custom {
            background: var(--accent);
            color: var(--bg);
            border: none;
            border-radius: var(--radius);
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-custom:hover {
            background: var(--accent-3);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 125, 255, 0.4);
        }

        .btn-custom-secondary {
            background: var(--glass);
            color: var(--accent);
            border: 1px solid var(--glass-border);
        }

        .btn-custom-secondary:hover {
            background: var(--accent);
            color: var(--bg);
        }

        /* Resume Preview Styles */
        .profile-hero {
            padding: 4rem 0 3rem;
            background: var(--card);
            position: relative;
            overflow: hidden;
        }

        .profile-picture {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 3px solid var(--accent);
            object-fit: cover;
            box-shadow: 0 0 30px rgba(0, 245, 160, 0.3);
            transition: all 0.3s ease;
        }

        .profile-picture.square {
            border-radius: 10px;
        }

        .profile-picture.rounded-square {
            border-radius: 25px;
        }

        .profile-picture.hexagon {
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .profile-picture.small {
            width: 120px;
            height: 120px;
        }

        .profile-picture.medium {
            width: 180px;
            height: 180px;
        }

        .profile-picture.large {
            width: 220px;
            height: 220px;
        }

        .profile-name {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .profile-title {
            font-size: 1.5rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .profile-badges .badge {
            background: var(--glass);
            color: var(--accent);
            border: 1px solid var(--glass-border);
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 600;
            font-size: var(--section-title-font-size);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .card-custom {
            background: var(--card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            margin-bottom: 25px;
            overflow: hidden;
        }

        .card-header-custom {
            background: var(--glass);
            border-bottom: 1px solid var(--glass-border);
            padding: 1.5rem;
        }

        .skill-bar {
            height: 10px;
            background-color: var(--glass);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            border-radius: 10px;
            background: var(--accent);
            transition: width 1s ease-in-out;
            position: relative;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent);
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--accent);
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info li i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--glass);
            color: var(--accent);
            margin-right: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid var(--glass-border);
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--bg);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 245, 160, 0.3);
        }

        .progress {
            background: var(--glass);
            height: 8px;
            border-radius: 10px;
        }

        .progress-bar {
            background: var(--accent);
            border-radius: 10px;
        }

        /* Action Buttons */
        .action-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
        }

        .action-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 245, 160, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
            position: relative;
        }

        .action-btn:hover {
            background: var(--accent-3);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(138, 125, 255, 0.4);
        }

        .action-btn .tooltip {
            position: absolute;
            right: 70px;
            background: var(--card);
            color: var(--muted);
            padding: 8px 12px;
            border-radius: var(--radius);
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border: 1px solid var(--glass-border);
        }

        .action-btn:hover .tooltip {
            opacity: 1;
        }

        /* Export Options */
        .export-options {
            display: none;
            position: fixed;
            bottom: 150px;
            right: 30px;
            background: var(--card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 999;
            width: 200px;
        }

        .export-options.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .export-option {
            display: block;
            width: 100%;
            padding: 12px 15px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: var(--muted);
            border-radius: var(--radius);
            margin-bottom: 10px;
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .export-option:hover {
            background: var(--accent);
            color: var(--bg);
            transform: translateX(5px);
        }

        /* Customization Tabs */
        .customization-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--glass-border);
            overflow-x: hidden;
            position: relative;
        }

        .customization-tabs-container {
            display: flex;
            width: 100%;
            transition: transform 0.3s ease;
        }

        .customization-tab {
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: var(--muted);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .customization-tab.active {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }

        .customization-tab:hover {
            color: var(--accent);
        }

        .tab-nav-btn {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 30px;
            background: var(--glass);
            border: none;
            color: var(--accent);
            z-index: 10;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .tab-nav-btn.prev {
            left: 0;
        }

        .tab-nav-btn.next {
            right: 0;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        /* Fullscreen Preview */
        .fullscreen-preview {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            z-index: 2000;
            display: none;
            flex-direction: column;
            overflow: auto;
        }

        .fullscreen-preview.active {
            display: flex;
        }

        .fullscreen-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--card);
            border-bottom: 1px solid var(--glass-border);
        }

        .fullscreen-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 40px;
            overflow: auto;
        }

        .fullscreen-resume {
            width: 100%;
            max-width: 1200px;
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        /* Resume Page Management */
        .resume-page {
            background: white;
            color: #333;
            padding: 40px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            page-break-after: always;
            min-height: 1122px; /* A4 height */
            position: relative;
        }

        .resume-page:last-child {
            page-break-after: auto;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .editor-container {
                flex-direction: column;
            }
            
            .customization-panel {
                width: 100%;
                height: 50vh;
                border-right: none;
                border-bottom: 1px solid var(--glass-border);
            }
            
            .resume-preview {
                height: 50vh;
            }
            
            .preview-container {
                transform: scale(0.85);
            }
        }

        @media (max-width: 768px) {
            .preview-container {
                transform: scale(0.75);
            }
            
            .action-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .export-options {
                right: 20px;
                bottom: 140px;
            }
            
            .header-nav {
                gap: 10px;
            }
            
            .nav-menu {
                gap: 8px;
            }
            
            .nav-link {
                padding: 8px 12px;
                font-size: 0.9rem;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--glass);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-3);
        }

        /* Animation for skill bars */
        @keyframes slideIn {
            from { transform: translateX(-20px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .skill-input, .experience-input, .education-input {
            animation: slideIn 0.3s ease;
        }

        /* Section visibility toggles */
        .section-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .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(--glass);
            transition: .4s;
            border-radius: 24px;
            border: 1px solid var(--glass-border);
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 3px;
            background-color: var(--muted);
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: var(--accent);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(26px);
            background-color: white;
        }

        /* Advanced customization options */
        .advanced-options {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--glass-border);
        }

        .advanced-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            cursor: pointer;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .font-preview {
            font-size: 1.2rem;
            padding: 10px;
            border-radius: var(--radius);
            background: var(--glass);
            margin-top: 10px;
            text-align: center;
        }

        /* Professional Skills */
        .professional-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .professional-skill-tag {
            background: var(--glass);
            color: var(--accent);
            border: 1px solid var(--glass-border);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .professional-skill-tag:hover {
            background: var(--accent);
            color: var(--bg);
            transform: translateY(-2px);
        }

        /* Image customization options */
        .image-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .image-option {
            padding: 8px 12px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .image-option.active {
            background: var(--accent);
            color: var(--bg);
        }

        .image-option:hover {
            border-color: var(--accent);
        }

        /* Stats Section */
        .stats-item {
            text-align: center;
            padding: 25px 15px;
            border-radius: var(--radius);
            background: var(--card);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .stats-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
            line-height: 1;
        }

        .stats-label {
            font-size: 0.9rem;
            color: var(--muted);
            margin-top: 5px;
        }

        /* Portfolio Section */
        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            height: 280px;
            margin-bottom: 25px;
            border: 1px solid var(--glass-border);
            background: var(--card);
        }

        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(15, 23, 36, 0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: white;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid var(--glass-border);
            margin-bottom: 25px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--accent);
        }

        /* Custom Color Input */
        .custom-color-input {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .custom-color-input input {
            flex: 1;
        }

        .custom-color-preview {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid var(--glass-border);
        }

        /* Language Progress */
        .language-item {
            margin-bottom: 20px;
        }

        .language-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        /* Font Size Controls */
        .font-size-controls {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .font-size-control {
            flex: 1;
        }

        /* Templates Tab */
        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .template-item {
            background: var(--glass);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
            cursor: pointer;
        }

        .template-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 5px 15px rgba(0, 245, 160, 0.2);
        }

        .template-preview {
            height: 120px;
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .template-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--accent-3));
            opacity: 0.1;
        }

        .template-name {
            padding: 10px;
            text-align: center;
            font-weight: 500;
            color: var(--muted);
        }

        /* New Features */
        .new-features {
            margin-top: 25px;
            padding: 20px;
            background: var(--glass);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
        }

        .new-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: var(--radius);
            background: var(--card);
            transition: all 0.3s ease;
        }

        .new-feature:hover {
            transform: translateX(5px);
            border-color: var(--accent);
        }

        .new-feature i {
            color: var(--accent);
            font-size: 1.2rem;
        }
    
        


.content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #aaa;
    font-size: 13px;
    padding: 12px 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.content-footer .footer-left {
    flex: 1;
    text-align: left;
}

.content-footer .footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.content-footer a {
    color: #5ea9ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .content-footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}






/* Fix for white text in light theme */
:root[data-theme="light"] .text-white,
:root[data-theme="light"] .timeline-item p.text-white,
:root[data-theme="light"] .testimonial-author p.text-white {
    color: #333333 !important;
}

:root[data-theme="light"] .accent-text,
:root[data-theme="light"] .section-title,
:root[data-theme="light"] h1,
:root[data-theme="light"] h2,
:root[data-theme="light"] h3,
:root[data-theme="light"] h4,
:root[data-theme="light"] h5,
:root[data-theme="light"] h6 {
    color: var(--accent) !important;
}


