@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #202124;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 15px;
    font-weight: 500;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #DADCE0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #202124;
    font-size: 1.25rem;
}

.logo svg {
    width: 32px;
    height: 32px;
    color: #1A73E8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: #5F6368;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    cursor: pointer;
    font-weight: 600;
}

.nav a:hover,
.nav a.active {
    color: #202124;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #1A73E8;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: #1557B0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: #1A73E8;
    border: 1px solid #DADCE0;
}

.btn-secondary:hover {
    background: #000;
}

.btn-ghost {
    background: transparent;
    color: #5F6368;
}

.btn-ghost:hover {
    background: #F8F9FA;
}

/* Card */
.card {
    background: white;
    border: 1px solid #DADCE0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* Input */
.generator-page .input-group {
    margin-bottom: 1rem;
}

.input-label {
    display: block;
    color: #5F6368;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #DADCE0;
    border-radius: 0.5rem !important;
    font-size: 1rem;
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

textarea.input {
    resize: vertical;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer */
.footer {
    background: #1b0c40;
    border-top: 1px solid #DADCE0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #ddd;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #DADCE0;
    text-align: center;
    color: #fff;
}

/* Homepage Styles */
.hero {
    padding: 6rem 0;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    color: #5F6368;
    margin-bottom: 3rem;
}

.hero .btn-primary {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qr-types-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 8px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.25rem;
    color: #5F6368;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.qr-card {
    /* box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25); */
    border: 1px solid #DADCE0;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.qr-card:hover {
    border-color: #1A73E8;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.qr-card-icon {
    width: 58px;
    height: 58px;
    background: #F8F9FA;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.2s;
}

.qr-card:hover .qr-card-icon {
    background: #1a73e817;
}

.qr-card-icon svg {
    width: 25px;
    height: 25px;
    color: #383838;
    transition: color 0.2s;
}

.qr-card:hover .qr-card-icon svg {
    color: #1A73E8;
}

.qr-card h3 {
    color: #383838;
    margin-bottom: 0.25rem;
}

.qr-card p {
    font-size: 0.875rem;
    color: #5F6368;
    margin-bottom: 0;
}

.features-section {
    background: #F8F9FA;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid #DADCE0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* cursor: pointer; */
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, rgba(201, 97, 254, 1) 0%, rgba(158, 134, 255, 1) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.feature-card:hover .feature-icon {
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #5F6368;
    margin-bottom: 0;
}

.cta-section {
    background: #E8F0FE;
    padding: 5rem 0;
    text-align: center;
}

.cta-section svg {
    width: 64px;
    height: 64px;
    color: #1A73E8;
    margin: 0 auto 1.5rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #5F6368;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* QR Generator Styles */
.generator-page {
    background: #F8F9FA;
    min-height: 100vh;
    padding: 2rem 0;
}

.generator-header {
    margin-bottom: 2rem;
}

.generator-header h1 {
    margin-bottom: 0.5rem;
}

.generator-header p {
    font-size: 1.125rem;
    color: #5F6368;
}

.generator-layout {
    display: grid;
    grid-template-columns: 280px 1fr 380px;
    gap: 1.5rem;
}

.qr-types-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.qr-type-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: #5F6368;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.qr-type-btn:hover {
    background: #F8F9FA;
}

.qr-type-btn.active {
    background: #E8F0FE;
    color: #1A73E8;
}

.qr-type-btn svg {
    width: 20px;
    height: 20px;
}

.customization-section {
    margin-top: 1.5rem;
}

.color-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: end;
}

.color-picker {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    border: 1px solid #DADCE0;
    cursor: pointer;
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.pattern-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #DADCE0;
    background: white;
    color: #5F6368;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pattern-btn:hover {
    border-color: #1A73E8;
}

.pattern-btn.active {
    border-color: #1A73E8;
    background: #E8F0FE;
    color: #1A73E8;
}

.eye-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.upload-zone {
    border: 2px dashed #DADCE0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.upload-zone:hover {
    border-color: #1A73E8;
}

.upload-zone svg {
    width: 32px;
    height: 32px;
    color: #5F6368;
    margin: 0 auto 0.5rem;
}

.upload-zone p {
    color: #5F6368;
    font-size: 0.875rem;
}

.upload-zone p:last-child {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.qr-preview {
    position: sticky;
    top: 2rem;
}

.preview-qr {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    border: 1px solid #DADCE0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-pattern {
    width: 75%;
    height: 75%;
    position: relative;
}

.qr-grid-pattern {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 1px;
    padding: 8px;
}

.qr-dot {
    border-radius: 2px;
}

.qr-dot.rounded {
    border-radius: 50%;
}

.slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #DADCE0;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1A73E8;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1A73E8;
    cursor: pointer;
    border: none;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-container {
    width: 100%;
    max-width: 28rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #202124;
}

.auth-logo svg {
    width: 40px;
    height: 40px;
    color: #1A73E8;
}

.auth-logo span {
    font-size: 1.5rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #5F6368;
}

.auth-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #DADCE0;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-row label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #5F6368;
    cursor: pointer;
}

.form-row a {
    font-size: 0.875rem;
    color: #1A73E8;
    text-decoration: none;
}

.form-row a:hover {
    text-decoration: underline;
}

.divider {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #DADCE0;
}

.divider-line {
    position: relative;
    margin-bottom: 1.5rem;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #DADCE0;
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background: white;
    color: #5F6368;
    font-size: 0.875rem;
    left: 50%;
    transform: translateX(-50%);
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #DADCE0;
    border-radius: 0.5rem;
    background: white;
    color: #5F6368;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: #F8F9FA;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: #5F6368;
}

.auth-footer a {
    color: #1A73E8;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard-page {
    background: #F8F9FA;
    min-height: 100vh;
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    transition: box-shadow 0.2s;
}

.stat-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.stat-header span {
    color: #5F6368;
}

.stat-header svg {
    width: 30px;
    height: 30px;
    color: #1A73E8;
}

.stat-value {
    font-size: 1.875rem;
    color: #202124;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
}

.folder-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.folder-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    color: #5F6368;
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.folder-btn:hover {
    background: #F8F9FA;
}

.folder-btn.active {
    background: #E8F0FE;
    color: #1A73E8;
}

.search-bar {
    position: relative;
    flex: 1;
}

.search-bar svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #5F6368;
}

.search-bar input {
    padding-left: 3rem;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #DADCE0;
    background: white;
    color: #5F6368;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn:hover {
    border-color: #1A73E8;
}

.view-btn.active {
    border-color: #1A73E8;
    background: #E8F0FE;
    color: #1A73E8;
}

.view-btn svg {
    width: 20px;
    height: 20px;
}

.qr-codes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qr-code-card {
    transition: box-shadow 0.2s;
}

.qr-code-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qr-thumbnail {
    aspect-ratio: 1;
    background: #F8F9FA;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    width: 128px;
    height: 128px;
    background: #202124;
    opacity: 0.1;
    border-radius: 0.5rem;
}

.qr-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.qr-info span:first-child {
    color: #5F6368;
    font-size: 0.875rem;
}

.qr-info span:last-child {
    color: #1A73E8;
    font-size: 0.875rem;
}

.qr-actions {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.qr-code-card:hover .qr-actions {
    opacity: 1;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #F8F9FA;
    border-radius: 0.5rem;
    border: none;
    color: #5F6368;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #E8F0FE;
    color: #1A73E8;
}

.action-btn.delete:hover {
    background: #FEE;
    color: #DC2626;
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .qr-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .qr-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .generator-layout {
        grid-template-columns: 1fr;
    }

    .qr-preview {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qr-codes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .qr-codes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.btn-primary {
    background: #1b0c40;
}

.btn-primary:hover {
    background: linear-gradient(90deg, rgba(158, 134, 255, 1) 0%, rgba(201, 97, 254, 1) 50%);
}

.user-btn {
    background: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all .2s ease-in-out;
}

.user-btn:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background: #f9fafb;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu {
    border-radius: 14px;
    border: none;
    margin-top: 10px !important;
}

.profile-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
}

.settings-card {
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: none;
    background: #fff;
}

.settings-title {
    font-weight: 700;
    color: #111827;
}

.section-box {
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.danger-box {
    border: 1px solid rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.03);
}

.btn-soft-dark {
    background: #fee2e2;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
}

.btn-soft-danger:hover {
    background: #fecaca;
}

.qr-preview {
    position: sticky;
    top: 90px;
    /* header height ke hisab se adjust */
    align-self: flex-start;
}

.remove-btn {
    padding: 0 5px;
}

/* Desktop default */
.qr-types-list {
    display: block;
}

.faq-sections h1 {
    font-size: 22px;
    margin-bottom: 16px;
}

.faq-sections button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between
}

.banner_top img {
    width: 200px;
}

.content-section h1,
.content-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}
.toggle-icon{display: none;}
/* Mobile only accordion */
@media (max-width: 768px) {
    .qr-types-list {
        display: none;
    }
.toggle-icon{display: block;}
    .content-section h1,
    .content-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .generator-header{
        margin-bottom: 1rem;
    }
    label{
        font-size: 14px;
        margin-bottom: 0.2rem !important;
    }
.generator-header p{
    margin-bottom: 0;
}
    .cta-section p {
        font-size: 1rem;
    }

    .qr-card h3 {
        font-size: 1.1rem;
    }

    .hero .btn-primary {
        padding: 0.5rem 2rem;
    }

    .content-section li {
        font-size: 15px;
    }

    .qr-types-list.open {
        display: block;
    }

    .banner_top img {                                
        width: 100px;
    }

    .banner_top h1 {
        font-size: 25px;
    }

    .qr-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin-bottom: 0;
    }

    .faq-sections button {
        font-size: 15px;
    }
.card{
    padding: 1rem;
}
.dashboard-header .btn{
    padding: 0.75rem 0.7rem;
    font-size: 0.9rem;
}
.dashboard-header .btn svg{
    width: 15px;
}
.dashboard-header h1{
    margin-bottom: 0;
}
.dashboard-header{
    margin-bottom: 1rem;
}
    .pattern-grid {
        overflow: auto;
    }

    .generator-header h2 {
        margin-bottom: 0;
    }

    .generator-header p {
        font-size: 17px;
    }

    .qr-sidebar-header h3 {
        font-size: 16px;
    }

    .toggle-icon {
        font-size: 22px;
        font-weight: bold;
    }

    .generator-layout {
        display: block;
        grid-template-columns: 100% 1fr 100%;
    }

    .generator-page {
        min-height: inherit;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        padding: 1rem 1rem;
    }

    .header-buttons .btn {
        padding: 5px 10px;
        font-size: 15px;
    }

    .hero,
    .qr-types-section,
    .cta-section,
    .features-section {
        padding: 3rem 0;
    }

    .faq-sections h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .qr-card {
        padding: 1rem
    }

    .qr-grid {
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .footer-grid {
        gap: 1rem;
    }

    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 14px;
    }
.footer-content{
    padding: 3rem 0 0.5rem;
}
.input {
    font-size: 14px;
}
    .generator-page .card {
        padding: 0.5rem;
        width: 100%;
    }
}

.quick-link {
  text-decoration: none;
  color: #1d0b3a;
  transition: 0.2s;
}

.quick-link:hover {
  text-decoration: underline;
  color: #5621f3;
}

