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

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background: white;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #11767f;
}

.logo-icon .letter-s {
    color: #3b82f6;
}

.logo-icon .letter-q {
    color: #10b981;
}

.logo-icon .letter-l {
    color: #f59e0b;
}

.logo-icon .letter-normal {
    color: #1e293b;
}

.logo-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-icon:hover .letter-s {
    color: #1d4ed8;
}

.logo-icon:hover .letter-q {
    color: #059669;
}

.logo-icon:hover .letter-l {
    color: #d97706;
}

.logo-icon:hover .letter-normal {
    color: #0f172a;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e293b;
}

.header.scrolled .nav-link {
    color: #64748b;
}

.header.scrolled .nav-link:hover {
    color: #1e293b;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #64748b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #1e293b;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #1e293b;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-panel.active {
    left: 0;
}

.mobile-nav-content {
    padding: 80px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}

.mobile-contact-btn {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: auto;
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.contact-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background: #334155;
}

/* Main Content */
.main-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
    padding-top: 120px;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.content-center {
    text-align: center;
    max-width: 800px;
    z-index: 20;
    position: relative;
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06b6d4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    animation: pulse-ai 3s ease-in-out infinite;
}

.ai-badge i {
    font-size: 16px;
    animation: rotate-ai 4s linear infinite;
}

@keyframes pulse-ai {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    }
}

@keyframes rotate-ai {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Section Styles */
.how-it-works-section,
.features-section,
.documentation-section,
.about-section,
.support-section {
    padding: 80px 0;
    background: white;
}

.features-section,
.about-section {
    background: #f8fafc;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step-1 {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.step-2 {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.step-3 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.step-number {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-1 .step-number {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.step-2 .step-number {
    background: linear-gradient(45deg, #10b981, #059669);
}

.step-3 .step-number {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* How It Works CTA */
.how-it-works-cta {
    text-align: center;
    margin-top: 50px;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.know-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.know-more-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.know-more-btn:hover i {
    transform: translateX(4px);
}



/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item:nth-child(1) .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item:nth-child(3) .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.features-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    max-width: 400px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.highlight-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.highlight-box p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    font-weight: 500;
    color: #1e293b;
}

.highlight-feature i {
    color: #8b5cf6;
    font-size: 16px;
}

/* Documentation Section */
.documentation-section {
    background: white;
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.docs-column {
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.docs-column:hover {
    transform: translateY(-4px);
}

.docs-column-1 {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.docs-column-2 {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.docs-column-3 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.docs-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-column-1 h3 i {
    color: #3b82f6;
    font-size: 18px;
}

.docs-column-2 h3 i {
    color: #10b981;
    font-size: 18px;
}

.docs-column-3 h3 i {
    color: #f59e0b;
    font-size: 18px;
}

.docs-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.docs-link {
    color: #64748b;
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.docs-link:hover {
    color: #3b82f6;
    transform: translateX(4px);
    border-bottom-color: #e2e8f0;
}

.docs-cta {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.docs-cta p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

.docs-cta-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.docs-cta-link:hover {
    color: #1d4ed8;
}

.docs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    margin-top: 20px;
}

.docs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.docs-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.docs-btn:hover i {
    transform: translateX(4px);
}

/* About Section */
.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* About Main */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-story-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.about-visual {
    text-align: center;
    margin-bottom: 32px;
}

.about-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.about-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    animation-delay: 0s;
}

.about-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
    animation-delay: 0.5s;
}

.about-icon-3 {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    animation-delay: 1s;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.step-icon-1 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.step-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.step-icon-3 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.step-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.step-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* About Vision */
.about-vision {
    display: flex;
    flex-direction: column;
}

.vision-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.vision-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.vision-main p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vision-goal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.goal-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.goal-icon-1 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.goal-icon-2 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.goal-icon-3 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.goal-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.goal-text p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* About Values */
.about-values {
    text-align: center;
}

.about-values h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.value-card:nth-child(1) .value-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.value-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.value-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Support Section */
.support-section {
    background: white;
}

.support-intro {
    text-align: center;
    margin-bottom: 60px;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.support-main {
    margin-bottom: 50px;
}

.support-header-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 2px solid #e2e8f0;
}

.support-main-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.support-main-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.support-main-text p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

.support-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.support-email-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

.support-email-link i {
    font-size: 16px;
}

/* Footer */
.footer {
    background: #ffffff !important;
    color: #1e293b;
    padding: 60px 0 0;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-icon {
    background: white;
    color: #1e293b;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    border: 1px solid #e2e8f0;
}

.footer-logo-icon .letter-s {
    color: #3b82f6;
}

.footer-logo-icon .letter-q {
    color: #10b981;
}

.footer-logo-icon .letter-l {
    color: #f59e0b;
}

.footer-logo-icon .letter-normal {
    color: #1e293b;
}

.footer-logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo-icon:hover .letter-s {
    color: #1d4ed8;
}

.footer-logo-icon:hover .letter-q {
    color: #059669;
}

.footer-logo-icon:hover .letter-l {
    color: #d97706;
}

.footer-logo-icon:hover .letter-normal {
    color: #0f172a;
}

.footer-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column:nth-child(1) h4 {
    color: #3b82f6;
}

.footer-column:nth-child(2) h4 {
    color: #10b981;
}

.footer-column:nth-child(3) h4 {
    color: #8b5cf6;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.footer-link:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-column:nth-child(1) .footer-link:hover {
    color: #3b82f6;
}

.footer-column:nth-child(2) .footer-link:hover {
    color: #10b981;
}

.footer-column:nth-child(3) .footer-link:hover {
    color: #8b5cf6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.footer-social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    transform: translateY(-2px);
}

.footer-social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-2px);
}

.footer-social-link:nth-child(3):hover {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #3b82f6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.support-options h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    text-decoration: none;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.support-item:hover {
    color: #3b82f6;
    transform: translateX(8px);
}

.support-item:last-child {
    border-bottom: none;
}

.support-item:nth-child(1)>i:first-child {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.support-item:nth-child(2)>i:first-child {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.support-item:nth-child(3)>i:first-child {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.support-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.support-item-title {
    font-weight: 500;
    font-size: 1rem;
}

.support-item-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.support-item>i:last-child {
    color: #64748b;
    font-size: 16px;
    margin-left: auto;
}

.support-item:hover>i:last-child {
    color: #3b82f6;
}

/* Subscription Form */
.subscription-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #3b82f6;
}

.notify-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.checkbox-group {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkbox {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.checkbox-label {
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    border-radius: 8px;
    opacity: 0.8;
}

.decoration-1 {
    width: 60px;
    height: 60px;
    background: #00d4aa;
    top: 15%;
    left: 8%;
    transform: rotate(15deg);
}

.decoration-2 {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    top: 25%;
    right: 12%;
    border-radius: 50%;
}

.decoration-3 {
    width: 80px;
    height: 80px;
    background: #a78bfa;
    bottom: 20%;
    left: 5%;
    border-radius: 50%;
}

.decoration-4 {
    width: 50px;
    height: 50px;
    background: #34d399;
    top: 40%;
    left: 15%;
    transform: rotate(-20deg);
}

.decoration-5 {
    width: 70px;
    height: 70px;
    background: #fbbf24;
    bottom: 30%;
    right: 8%;
    transform: rotate(25deg);
}

.decoration-6 {
    width: 35px;
    height: 35px;
    background: #f472b6;
    top: 60%;
    right: 20%;
    border-radius: 50%;
}

.decoration-7 {
    width: 45px;
    height: 45px;
    background: #06b6d4;
    bottom: 15%;
    right: 25%;
    transform: rotate(-15deg);
}

.decoration-8 {
    width: 55px;
    height: 55px;
    background: #8b5cf6;
    top: 35%;
    right: 5%;
    border-radius: 50%;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .content-center {
        max-width: 900px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .main-title {
        font-size: 3.5rem;
    }

    .header {
        padding: 20px 30px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .header {
        padding: 15px 25px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 30px;
        padding-top: 100px;
    }

    .decoration {
        transform: scale(0.8);
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {

    .desktop-nav,
    .desktop-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .main-title {
        font-size: 2.8rem;
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        font-weight: 400;
        line-height: 1.5;
    }

    .main-content {
        padding: 25px;
        padding-top: 100px;
    }

    .how-it-works-section,
    .features-section,
    .documentation-section,
    .about-section,
    .support-section {
        padding: 60px 0;
    }

    .container-content {
        padding: 0 25px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 16px;
        padding: 25px 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-text .section-title {
        text-align: center;
    }
    
    .feature-item {
        gap: 16px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .highlight-box {
        padding: 35px 25px;
        max-width: 100%;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .docs-column {
        padding: 25px 20px;
    }

    .about-story {
        gap: 30px;
    }

    .story-section {
        flex-direction: column;
        gap: 12px;
    }

    .story-header {
        min-width: auto;
    }
    
    .story-header i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .about-values h3 {
        font-size: 1.2rem;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .support-content {
        gap: 40px;
    }

    .support-header-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 25px 0;
    }

    .support-main-icon {
        margin: 0 auto;
    }

    .docs-grid {
        gap: 25px;
    }

    .docs-column {
        padding: 20px 15px;
    }

    .docs-column h3 {
        font-size: 1rem;
    }

    .about-intro {
        margin-bottom: 50px;
    }

    .about-lead {
        font-size: 1.2rem;
    }

    .about-story {
        gap: 25px;
        margin-bottom: 50px;
    }

    .support-content {
        gap: 35px;
    }

    .support-header-section {
        padding: 20px 0;
    }

    .support-main-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .support-main-text h3 {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
    }

    .stat {
        flex: 1;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
        gap: 15px;
    }

    .email-input {
        width: 100%;
        max-width: 400px;
        padding: 14px 18px;
    }

    .notify-btn {
        width: 100%;
        max-width: 400px;
        padding: 12px 28px;
    }

    /* Keep decorations visible on tablets */
    .decoration {
        transform: scale(0.7);
        opacity: 0.7;
    }

    /* Creator section responsive styles for tablets */
    .creator-section {
        padding: 60px 0;
    }
    
    .creator-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .creator-profile {
        padding: 32px 24px;
    }
    
    .creator-image img {
        width: 100px;
        height: 100px;
    }
    
    .creator-info h3 {
        font-size: 1.3rem;
    }
    
    .creator-links {
        flex-direction: row;
        gap: 10px;
    }
    
    .creator-link {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .story-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .story-header h4 {
        font-size: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .expertise-item {
        padding: 20px 16px;
    }
    
    .expertise-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Footer responsive styles for tablets */
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 20px;
    }
}

/* Mobile Large (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {

    .desktop-nav,
    .desktop-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .main-title {
        font-size: 2.6rem;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.025em;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1d4ed8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 5px;
        font-weight: 400;
        line-height: 1.5;
        color: #475569;
    }
    
    .ai-badge {
        font-size: 13px;
        padding: 7px 14px;
        margin-bottom: 20px;
    }
    
    .ai-badge i {
        font-size: 15px;
    }

    .main-content {
        padding: 25px 20px;
        padding-top: 110px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    }
    
    .main-content::before {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    /* Enhanced decorations for mobile large */
    .decoration {
        transform: scale(0.8);
        opacity: 0.8;
        animation: float 6s ease-in-out infinite;
    }
    
    .decoration-1 {
        background: linear-gradient(45deg, #10b981, #059669);
        border-radius: 12px;
        top: 20%;
        left: 10%;
    }
    
    .decoration-2 {
        background: linear-gradient(45deg, #3b82f6, #1d4ed8);
        top: 30%;
        right: 15%;
    }
    
    .decoration-3 {
        background: linear-gradient(45deg, #8b5cf6, #7c3aed);
        bottom: 25%;
        left: 8%;
    }
    
    .decoration-5 {
        background: linear-gradient(45deg, #f59e0b, #d97706);
        bottom: 35%;
        right: 12%;
        border-radius: 8px;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) scale(0.8); }
        50% { transform: translateY(-10px) scale(0.85); }
    }

    .how-it-works-section,
    .features-section,
    .documentation-section,
    .about-section,
    .support-section {
        padding: 50px 0;
    }

    .container-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .steps-grid {
        gap: 25px;
    }

    .step {
        padding: 20px 15px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature {
        padding: 25px 20px;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .docs-intro p,
    .support-intro p {
        font-size: 1rem;
    }

    .docs-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-content {
        display: grid;
        gap: 40px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .features-list {
        gap: 24px;
    }
    
    .feature-item {
        gap: 14px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 30px 25px;
    }
    
    .highlight-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .highlight-box h3 {
        font-size: 1.3rem;
    }
    
    .highlight-box p {
        font-size: 0.95rem;
    }

    .docs-grid {
        gap: 20px;
    }

    .docs-column {
        padding: 18px 12px;
    }

    .docs-column h3 {
        font-size: 0.95rem;
    }

    .docs-column-1 h3 i,
    .docs-column-2 h3 i,
    .docs-column-3 h3 i {
        font-size: 16px;
    }

    .about-intro {
        margin-bottom: 40px;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-story {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .story-header i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .story-header h3 {
        font-size: 1.1rem;
    }
    
    .story-section p {
        font-size: 0.95rem;
    }
    
    .about-values h3 {
        font-size: 1.1rem;
    }
    
    .value-item {
        padding: 14px;
    }

    .support-content {
        gap: 30px;
    }

    .support-header-section {
        padding: 18px 0;
    }

    .support-main-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .support-main-text h3 {
        font-size: 1.1rem;
    }

    .support-main-text p {
        font-size: 0.95rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .subscription-form {
        max-width: 100%;
    }

    .input-group {
        flex-direction: column;
        gap: 12px;
    }

    .email-input {
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
        border: 2px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .email-input:focus {
        border-color: #3b82f6;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    }

    .notify-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 10px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    }

    .checkbox-label {
        font-size: 13px;
        text-align: center;
    }

    /* Keep decorations visible on mobile */
    .decoration {
        transform: scale(0.5);
        opacity: 0.5;
    }

    /* Footer responsive styles for mobile large */
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    /* Creator section responsive styles for mobile large */
    .creator-section {
        padding: 50px 0;
    }
    
    .creator-intro {
        margin-bottom: 40px;
    }
    
    .creator-content {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .creator-profile {
        padding: 28px 20px;
    }
    
    .creator-image img {
        width: 90px;
        height: 90px;
    }
    
    .creator-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .creator-info h3 {
        font-size: 1.2rem;
    }
    
    .creator-title {
        font-size: 0.95rem;
    }
    
    .creator-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .creator-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .story-card {
        padding: 18px;
    }
    
    .story-header {
        gap: 12px;
    }
    
    .story-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .story-header h4 {
        font-size: 0.95rem;
    }
    
    .story-card p {
        font-size: 0.9rem;
    }
    
    .creator-expertise h3 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .expertise-item {
        padding: 18px 16px;
    }
    
    .expertise-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .expertise-content h5 {
        font-size: 0.95rem;
    }
    
    .expertise-content p {
        font-size: 0.8rem;
    }

    /* Scroll to top button responsive */
    .scroll-to-top {
        background: #1e293b;
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {

    .desktop-nav,
    .desktop-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .logo-icon {
        font-size: 16px;
        padding: 6px 12px;
    }

    .main-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 18px;
        font-weight: 800;
        letter-spacing: -0.025em;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1d4ed8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 8px;
        line-height: 1.4;
        font-weight: 400;
        color: #475569;
    }
    
    .ai-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 18px;
    }
    
    .ai-badge i {
        font-size: 14px;
    }

    .main-content {
        padding: 20px 15px;
        padding-top: 105px;
        min-height: 100vh;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    }
    
    .main-content::before {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(6px);
    }
    
    /* Enhanced decorations for mobile small */
    .decoration {
        transform: scale(0.6);
        opacity: 0.7;
        animation: float 8s ease-in-out infinite;
    }
    
    .decoration-1 {
        background: linear-gradient(45deg, #10b981, #059669);
        border-radius: 10px;
    }
    
    .decoration-2 {
        background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    }
    
    .decoration-3 {
        background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    }
    
    .decoration-5 {
        background: linear-gradient(45deg, #f59e0b, #d97706);
        border-radius: 6px;
    }

    .content-center {
        max-width: 100%;
    }

    .how-it-works-section,
    .features-section,
    .documentation-section,
    .about-section,
    .support-section {
        padding: 40px 0;
    }

    .container-content {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .steps-grid {
        gap: 20px;
    }

    .step {
        padding: 18px 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .features-grid {
        gap: 20px;
    }

    .feature {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .features-list {
        gap: 20px;
    }

    .feature-item:nth-child(1) .feature-icon,
    .feature-item:nth-child(2) .feature-icon,
    .feature-item:nth-child(3) .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 25px 20px;
    }

    .highlight-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .highlight-box h3 {
        font-size: 1.2rem;
    }
    
    .highlight-box p {
        font-size: 0.9rem;
    }
    
    .highlight-features {
        gap: 10px;
    }
    
    .highlight-feature {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .docs-grid {
        gap: 18px;
    }

    .docs-column {
        padding: 15px 10px;
    }

    .docs-column h3 {
        font-size: 0.9rem;
    }

    .docs-links {
        gap: 6px;
    }

    .docs-link {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .about-intro {
        margin-bottom: 35px;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-story {
        gap: 18px;
        margin-bottom: 35px;
    }
    
    .story-header i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .story-header h3 {
        font-size: 1rem;
    }
    
    .story-section p {
        font-size: 0.9rem;
    }
    
    .about-values h3 {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .value-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .support-content {
        gap: 25px;
    }

    .support-header-section {
        padding: 16px 0;
    }

    .support-main-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .support-main-text h3 {
        font-size: 1rem;
    }

    .support-main-text p {
        font-size: 0.9rem;
    }

    .support-email-link {
        font-size: 0.9rem;
    }

    .support-item {
        padding: 16px 0;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .subscription-form {
        max-width: 100%;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .email-input {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 6px;
    }

    .notify-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 6px;
    }

    .checkbox-group {
        gap: 8px;
        text-align: center;
    }

    .checkbox-label {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Keep decorations visible but smaller on small mobile */
    .decoration {
        transform: scale(0.4);
        opacity: 0.4;
    }

    /* Footer responsive styles for mobile small */
    .footer {
        padding: 35px 0 0;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-icon {
        font-size: 16px;
        padding: 6px 12px;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }

    .footer-bottom-link {
        font-size: 0.85rem;
    }

    /* Creator section responsive styles for mobile small */
    .creator-section {
        padding: 40px 0;
    }
    
    .creator-intro {
        margin-bottom: 35px;
    }
    
    .creator-content {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .creator-profile {
        padding: 24px 16px;
    }
    
    .creator-image img {
        width: 80px;
        height: 80px;
    }
    
    .creator-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .creator-badge i {
        font-size: 12px;
    }
    
    .creator-info h3 {
        font-size: 1.1rem;
    }
    
    .creator-title {
        font-size: 0.9rem;
    }
    
    .creator-location {
        font-size: 0.85rem;
    }
    
    .creator-link {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    
    .story-card {
        padding: 16px;
    }
    
    .story-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .story-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .story-header h4 {
        font-size: 0.9rem;
    }
    
    .story-card p {
        font-size: 0.85rem;
    }
    
    .creator-expertise h3 {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .expertise-item {
        padding: 16px 12px;
    }
    
    .expertise-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .expertise-content h5 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .expertise-content p {
        font-size: 0.75rem;
    }

    /* Scroll to top button responsive */
    .scroll-to-top {
        background: #1e293b;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {

    .desktop-nav,
    .desktop-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 10px 15px;
        justify-content: space-between;
    }

    .main-title {
        font-size: 1.9rem;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1d4ed8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subtitle {
        font-size: 0.95rem;
        line-height: 1.35;
        font-weight: 400;
        margin-bottom: 30px;
        padding: 0 5px;
        color: #475569;
    }
    
    .ai-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 16px;
    }
    
    .ai-badge i {
        font-size: 13px;
    }

    .main-content {
        padding: 18px 12px;
        padding-top: 100px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    }
    
    .main-content::before {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    /* Enhanced decorations for extra small mobile */
    .decoration {
        transform: scale(0.5);
        opacity: 0.6;
        animation: float 10s ease-in-out infinite;
    }
    
    .decoration-1 {
        background: linear-gradient(45deg, #10b981, #059669);
        border-radius: 8px;
    }
    
    .decoration-2 {
        background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    }
    
    .decoration-3 {
        background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    }
    
    .decoration-5 {
        background: linear-gradient(45deg, #f59e0b, #d97706);
        border-radius: 4px;
    }

    .email-input,
    .notify-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .checkbox-label {
        font-size: 11px;
    }

    .how-it-works-section,
    .features-section,
    .documentation-section,
    .about-section,
    .support-section {
        padding: 35px 0;
    }

    .container-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .steps-grid {
        gap: 18px;
    }

    .step {
        padding: 15px 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .features-grid {
        gap: 18px;
    }

    .feature {
        padding: 18px 12px;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .feature h3 {
        font-size: 0.95rem;
    }

    .feature p {
        font-size: 0.85rem;
    }



    .features-list {
        gap: 18px;
    }

    .feature-item:nth-child(1) .feature-icon,
    .feature-item:nth-child(2) .feature-icon,
    .feature-item:nth-child(3) .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-text h3 {
        font-size: 0.95rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .features-content {
        gap: 30px;
    }

    .highlight-box {
        padding: 20px 15px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .highlight-box h3 {
        font-size: 1.1rem;
    }
    
    .highlight-box p {
        font-size: 0.85rem;
    }
    
    .highlight-features {
        gap: 8px;
    }
    
    .highlight-feature {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .docs-grid {
        gap: 16px;
    }

    .docs-column {
        padding: 12px 8px;
    }

    .docs-column h3 {
        font-size: 0.85rem;
    }

    .docs-column-1 h3 i,
    .docs-column-2 h3 i,
    .docs-column-3 h3 i {
        font-size: 14px;
    }

    .docs-links {
        gap: 4px;
    }

    .docs-link {
        padding: 4px 0;
        font-size: 0.85rem;
    }

    .docs-cta {
        padding: 20px 15px;
    }

    .docs-cta p {
        font-size: 0.9rem;
    }

    .about-intro {
        margin-bottom: 30px;
    }

    .about-lead {
        font-size: 0.95rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-story {
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .story-header i {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .story-header h3 {
        font-size: 0.95rem;
    }

    .story-section p {
        font-size: 0.85rem;
    }
    
    .about-values h3 {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .value-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .support-content {
        gap: 20px;
    }

    .support-primary {
        padding: 16px 10px;
    }

    .primary-header i {
        font-size: 18px;
    }

    .primary-header h3 {
        font-size: 1rem;
    }

    .support-item {
        padding: 14px 0;
    }

    .support-item-title {
        font-size: 0.9rem;
    }

    .support-item-desc {
        font-size: 0.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Keep minimal decorations */
    .decoration {
        transform: scale(0.3);
        opacity: 0.3;
    }

    /* Adjust mobile nav panel for very small screens */
    .mobile-nav-panel {
        width: 280px;
        left: -280px;
    }

    .mobile-nav-content {
        padding: 70px 20px 20px;
    }

    /* Footer responsive styles for extra small mobile */
    .footer {
        padding: 30px 0 0;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo-icon {
        font-size: 14px;
        padding: 5px 10px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 3px 0;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-content p {
        font-size: 0.8rem;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    /* Creator section responsive styles for extra small mobile */
    .creator-section {
        padding: 35px 0;
    }
    
    .creator-intro {
        margin-bottom: 30px;
    }
    
    .creator-content {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .creator-profile {
        padding: 20px 12px;
    }
    
    .creator-image img {
        width: 70px;
        height: 70px;
    }
    
    .creator-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .creator-info h3 {
        font-size: 1rem;
    }
    
    .creator-title {
        font-size: 0.85rem;
    }
    
    .creator-location {
        font-size: 0.8rem;
    }
    
    .creator-link {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .story-card {
        padding: 14px;
    }
    
    .story-header {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .story-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .story-header h4 {
        font-size: 0.85rem;
    }
    
    .story-card p {
        font-size: 0.8rem;
    }
    
    .creator-expertise h3 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .expertise-item {
        padding: 14px 10px;
    }
    
    .expertise-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .expertise-content h5 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .expertise-content p {
        font-size: 0.7rem;
    }

    /* Scroll to top button responsive */
    .scroll-to-top {
        background: #1e293b;
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* How It Works Page Styles */

/* Hero Section */
.how-it-works-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 400;
}

/* Detailed Steps Section */
.detailed-steps-section {
    padding: 80px 0;
    background: white;
}

.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.detailed-step {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.detailed-step:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.detailed-step:nth-child(even) .step-visual {
    order: 2;
}

.detailed-step:nth-child(even) .step-details {
    order: 1;
}

/* Step Visual */
.step-visual {
    position: relative;
    height: 250px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-visual-1 {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.step-visual-2 {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.step-visual-3 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    z-index: 2;
    position: relative;
}

.step-visual-1 .step-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.step-visual-2 .step-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.step-visual-3 .step-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.step-number-large {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.step-visual-1 .step-number-large {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.step-visual-2 .step-number-large {
    background: linear-gradient(45deg, #10b981, #059669);
}

.step-visual-3 .step-number-large {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

/* Step Details */
.step-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.step-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Step Features */
.step-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1e293b;
}

.feature-item i {
    /* color: #10b981; */
    font-size: 18px;
    flex-shrink: 0;
}

/* Code Example */
.code-example {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.code-header {
    background: #334155;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.code-content {
    padding: 20px;
}

.code-content code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Question Examples */
.question-examples {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.example-question {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.question-bubble {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
}

.question-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1d4ed8;
}

.ai-processing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.ai-processing i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.generated-sql {
    background: #1e293b;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.generated-sql code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

/* AI Capabilities */
.ai-capabilities h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.capability {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.capability i {
    color: #8b5cf6;
    font-size: 18px;
    flex-shrink: 0;
}

.capability span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

/* Visualization Types */
.visualization-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.viz-type {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.viz-type:hover {
    transform: translateY(-4px);
}

.viz-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 16px;
}

.viz-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.viz-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.viz-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.viz-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.viz-type h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.viz-type p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Export Options */
.export-options h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.export-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.export-csv:hover {
    border-color: #10b981;
    color: #10b981;
}

.export-pdf:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.export-png:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.export-share:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Advanced Features Section */
.advanced-features-section {
    padding: 80px 0;
    background: #f8fafc;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.advanced-feature {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advanced-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
}

.feature-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.feature-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.feature-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.feature-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.advanced-feature h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1e293b;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #1e293b;
}

.cta-btn i {
    font-size: 20px;
}

/* Responsive Styles for How It Works Page */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .detailed-step {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .detailed-step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .detailed-step:nth-child(even) .step-visual,
    .detailed-step:nth-child(even) .step-details {
        order: initial;
    }
    
    .step-visual {
        height: 200px;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .advanced-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .visualization-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .how-it-works-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .detailed-steps-section {
        padding: 60px 0;
    }
    
    .detailed-steps {
        gap: 60px;
    }
    
    .step-details h3 {
        font-size: 1.6rem;
    }
    
    .visualization-types {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .export-buttons {
        justify-content: center;
    }
    
    .advanced-features-section {
        padding: 60px 0;
    }
    
    .advanced-feature {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .step-visual {
        height: 160px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-number-large {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .question-examples {
        gap: 20px;
    }
    
    .example-question {
        padding: 16px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
/* Documentation Page Styles */

/* Active nav link */
.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Documentation Hero */
.docs-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.docs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.docs-hero-content {
    position: relative;
    z-index: 2;
}

.docs-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docs-hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Search Box */
.docs-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 18px;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Documentation Layout */
.docs-toc-section {
    padding: 80px 0;
    background: white;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.docs-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
}

.nav-section {
    margin-bottom: 32px;
}

.nav-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-section h4 i {
    font-size: 16px;
}

.nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-section li {
    margin-bottom: 8px;
}

.nav-item {
    display: block;
    padding: 8px 16px;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.nav-item:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateX(4px);
}

.nav-item.active {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

/* Main Documentation Content */
.docs-main {
    min-height: 100vh;
}

.docs-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.section-header-1 .section-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.section-header-2 .section-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.section-header-3 .section-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.section-header-4 .section-icon {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.docs-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.docs-content p {
    margin-bottom: 24px;
}

/* Installation Methods */
.install-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.install-method {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.method-header i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.method-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.install-method p {
    color: #64748b;
    margin-bottom: 16px;
}

/* Code Blocks */
.code-block {
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0;
}

.code-header {
    background: #334155;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.copy-btn:hover {
    color: #e2e8f0;
}

.code-block code {
    display: block;
    padding: 16px;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ios-badge:hover {
    border-color: #1e293b;
    color: #1e293b;
}

.android-badge:hover {
    border-color: #10b981;
    color: #10b981;
}

/* Quick Start Steps */
.quick-start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.quick-step {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.quick-step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.quick-step:nth-child(1) .step-number {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.quick-step:nth-child(2) .step-number {
    background: linear-gradient(45deg, #10b981, #059669);
}

.quick-step:nth-child(3) .step-number {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.step-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    margin-bottom: 16px;
}

.step-btn {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.step-btn:hover {
    transform: translateY(-1px);
}

/* Database Configuration */
.config-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.config-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.database-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.connection-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #10b981);
    position: relative;
}

.connection-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #10b981;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.sqlus-icon {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.config-form h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Security Note */
.security-note {
    display: flex;
    gap: 16px;
    background: #f0fdf4;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin-top: 24px;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.note-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 8px;
}

.note-content ul {
    margin: 0;
    padding-left: 16px;
    color: #047857;
}

.note-content li {
    margin-bottom: 4px;
}

/* Query Patterns */
.pattern-examples {
    margin-top: 32px;
}

.pattern-category {
    margin-bottom: 40px;
}

.pattern-category h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pattern-category h4 i {
    color: #3b82f6;
}

.pattern-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pattern-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.pattern-question {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
}

.pattern-question::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1d4ed8;
}

.pattern-sql {
    background: #1e293b;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    border-left: 4px solid #10b981;
}

/* Chart Gallery */
.chart-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.chart-type {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.chart-type:hover {
    transform: translateY(-4px);
}

.chart-preview {
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.chart-preview-1 {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.chart-preview-2 {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.chart-preview-3 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.chart-preview-4 {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

/* Chart Visualizations */
.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.bar {
    width: 16px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 2px 2px 0 0;
}

.pie-chart {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.pie-slice {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
}

.slice-1 {
    background: #10b981;
    transform: rotate(0deg);
}

.slice-2 {
    background: #3b82f6;
    transform: rotate(90deg);
}

.slice-3 {
    background: #f59e0b;
    transform: rotate(180deg);
}

.slice-4 {
    background: #8b5cf6;
    transform: rotate(270deg);
}

.line-chart {
    width: 80px;
    height: 60px;
}

.table-preview {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    width: 120px;
    border: 1px solid #e2e8f0;
}

.table-header {
    display: flex;
    background: #f1f5f9;
}

.header-cell {
    flex: 1;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    border-right: 1px solid #e2e8f0;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
}

.cell {
    flex: 1;
    padding: 4px 8px;
    font-size: 10px;
    color: #64748b;
    border-right: 1px solid #f1f5f9;
}

.chart-type h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.chart-type p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 14px;
}

.chart-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.use-case {
    background: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* API Reference */
.api-endpoints {
    margin-top: 32px;
}

.endpoint {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.method {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.method-post {
    background: #10b981;
}

.method-get {
    background: #3b82f6;
}

.url {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.api-example {
    margin-top: 16px;
}

.example-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Help Section */
.docs-help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.help-content {
    max-width: 600px;
    margin: 0 auto;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
}

.help-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.help-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 32px;
}

.help-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.help-btn-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.help-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: white;
}

.help-btn-secondary {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.help-btn-secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Responsive Styles for Documentation */
@media (max-width: 991px) {
    .docs-hero-title {
        font-size: 3rem;
    }
    
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .docs-sidebar {
        position: static;
        order: 2;
    }
    
    .docs-main {
        order: 1;
    }
    
    .config-example {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .install-methods {
        grid-template-columns: 1fr;
    }
    
    .chart-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .docs-hero {
        padding: 100px 0 60px;
    }
    
    .docs-hero-title {
        font-size: 2.5rem;
    }
    
    .docs-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .docs-toc-section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .chart-gallery {
        grid-template-columns: 1fr;
    }
    
    .quick-start-steps {
        grid-template-columns: 1fr;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .docs-hero-title {
        font-size: 2rem;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .search-input {
        padding: 14px 18px 14px 45px;
        font-size: 15px;
    }
    
    .pattern-item {
        padding: 16px;
    }
    
    .chart-type {
        padding: 20px 16px;
    }
    
    .chart-preview {
        height: 100px;
    }
}
/* Web App Info Styles */
.web-app-info {
    margin-top: 32px;
}

.web-app-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.web-app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.web-app-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.web-app-content > p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.web-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.web-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.web-feature i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

.access-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.access-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.access-info p {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 14px;
}

.access-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.access-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.security-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.security-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.security-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.security-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.security-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.security-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.security-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.security-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.security-best-practices {
    background: #f0fdf4;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin-top: 32px;
}

.security-best-practices h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 16px;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.practice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #047857;
}

.practice-item i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

/* Troubleshooting */
.troubleshooting-items {
    margin-top: 32px;
}

.trouble-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.trouble-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trouble-question i {
    color: #f59e0b;
    font-size: 20px;
    flex-shrink: 0;
}

.trouble-question h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.trouble-answer p {
    color: #64748b;
    margin-bottom: 12px;
}

.trouble-answer ul {
    margin: 0;
    padding-left: 20px;
    color: #374151;
}

.trouble-answer li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Tips & Tricks */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.tip-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 16px;
}

.tip-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.tip-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.tip-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.tip-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.tip-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.tip-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 767px) {
    .web-app-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .web-features {
        grid-template-columns: 1fr;
    }
    
    .security-feature {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .web-app-card {
        padding: 24px 20px;
    }
    
    .security-feature {
        padding: 20px 16px;
    }
    
    .trouble-item {
        padding: 20px 16px;
    }
    
    .tip-card {
        padding: 20px 16px;
    }
}
/* Suggestions Section */
.suggestions-section {
    padding: 80px 0;
    background: #f8fafc;
}

.suggestions-intro {
    text-align: center;
    margin-bottom: 60px;
}

.suggestions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Suggestions Main */
.suggestions-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.suggestions-visual {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.suggestion-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.suggestion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.suggestion-icon-1 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    animation-delay: 0s;
}

.suggestion-icon-2 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    animation-delay: 0.5s;
}

.suggestion-icon-3 {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    animation-delay: 1s;
}

.suggestion-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.suggestion-text p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Suggestion Form */
.suggestion-form {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.suggestion-form h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.suggestion-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.suggestion-input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.suggestion-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.suggestion-textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.suggestion-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.suggestion-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.category-label:hover {
    background: #f1f5f9;
}

.category-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

.category-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.suggestion-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.suggestion-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Suggestion Types */
.suggestion-types h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.suggestion-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suggestion-example {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.suggestion-example:hover {
    transform: translateX(4px);
}

.example-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.example-icon-1 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.example-icon-2 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.example-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.example-icon-4 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.example-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.example-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Suggestions Footer */
.suggestions-footer {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.suggestions-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

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

.suggestions-note {
    color: #64748b;
    font-style: italic;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Styles for Suggestions */
@media (max-width: 991px) {
    .suggestions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .suggestions-stats {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .suggestions-section {
        padding: 60px 0;
    }
    
    .suggestions-intro {
        margin-bottom: 40px;
    }
    
    .suggestions-visual,
    .suggestion-form,
    .suggestions-footer {
        padding: 24px 20px;
    }
    
    .suggestion-icons {
        gap: 12px;
    }
    
    .suggestion-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .suggestion-categories {
        grid-template-columns: 1fr;
    }
    
    .suggestions-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .suggestions-visual,
    .suggestion-form,
    .suggestions-footer {
        padding: 20px 16px;
    }
    
    .suggestion-example {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .example-icon {
        margin: 0 auto;
    }
    
    .suggestion-submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}
/* Responsive Styles for About Section */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-intro {
        margin-bottom: 40px;
    }

    .about-story-card,
    .vision-card {
        padding: 24px 20px;
    }

    .about-icons {
        gap: 12px;
    }

    .about-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .vision-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 20px 16px;
    }

    .journey-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .vision-goal {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .about-story-card,
    .vision-card {
        padding: 20px 16px;
    }

    .about-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .vision-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .goal-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .value-card .value-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* Backend Architecture Section */
.backend-architecture-section {
    padding: 80px 0;
    background: white;
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    width: 100%;
    position: relative;
    transition: transform 0.2s ease;
}

.flow-step:hover {
    transform: translateX(8px);
}

.flow-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.flow-step-1 .flow-number {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.flow-step-2 .flow-number {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.flow-step-3 .flow-number {
    background: linear-gradient(45deg, #10b981, #059669);
}

.flow-step-4 .flow-number {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.flow-step-5 .flow-number {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.flow-step-6 .flow-number {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
}

.flow-step-7 .flow-number {
    background: linear-gradient(45deg, #84cc16, #65a30d);
}

.flow-step-8 .flow-number {
    background: linear-gradient(45deg, #ec4899, #db2777);
}

.flow-content {
    flex: 1;
}

.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
}

.flow-step-1 .flow-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.flow-step-2 .flow-icon {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.flow-step-3 .flow-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.flow-step-4 .flow-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.flow-step-5 .flow-icon {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.flow-step-6 .flow-icon {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
}

.flow-step-7 .flow-icon {
    background: linear-gradient(45deg, #84cc16, #65a30d);
}

.flow-step-8 .flow-icon {
    background: linear-gradient(45deg, #ec4899, #db2777);
}

.flow-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.flow-content p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.code-preview {
    background: #1e293b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.code-preview code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.flow-arrow {
    color: #94a3b8;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Technology Stack */
.tech-stack {
    margin: 80px 0;
    text-align: center;
}

.tech-stack h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 16px;
}

.tech-icon-1 {
    background: linear-gradient(45deg, #4285f4, #34a853);
}

.tech-icon-2 {
    background: linear-gradient(45deg, #6db33f, #5a9e3a);
}

.tech-icon-3 {
    background: linear-gradient(45deg, #336791, #2d5a87);
}

.tech-icon-4 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.tech-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.tech-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Architecture Benefits */
.architecture-benefits {
    text-align: center;
}

.architecture-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.benefit-icon-1 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.benefit-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.benefit-icon-3 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.benefit-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.benefit-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles for Backend Architecture */
@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .backend-architecture-section {
        padding: 60px 0;
    }
    
    .architecture-flow {
        margin: 40px 0;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .flow-step:hover {
        transform: translateY(-4px);
    }
    
    .flow-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .flow-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-item {
        padding: 20px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .flow-step {
        padding: 16px;
    }
    
    .flow-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .flow-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .flow-content h4 {
        font-size: 1rem;
    }
    
    .tech-item {
        padding: 16px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .benefit-item {
        padding: 16px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* About Me Page Styles */

/* About Me Hero Section */
.about-me-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-me-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-placeholder i {
    font-size: 80px;
    color: #64748b;
}

.profile-info {
    flex: 1;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.role-badge i {
    font-size: 16px;
}

.profile-name {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.1;
}

.profile-title {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 1rem;
}

.profile-location i {
    color: #10b981;
    font-size: 18px;
}

/* Professional Summary Section */
.professional-summary-section {
    padding: 80px 0;
    background: white;
}

.summary-main {
    margin-bottom: 50px;
}

.summary-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 24px;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.summary-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
}

.summary-text p:last-child {
    margin-bottom: 0;
}

.summary-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.highlight-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.highlight-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.highlight-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.highlight-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.highlight-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.highlight-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Work Experience Section */
.work-experience-section {
    padding: 80px 0;
    background: #f8fafc;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.experience-current::before {
    background: linear-gradient(45deg, #10b981, #059669);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.experience-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.experience-icon-1 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.experience-icon-2 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-current {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.status-completed {
    background: linear-gradient(45deg, #64748b, #475569);
    color: white;
}

.experience-info {
    margin-bottom: 16px;
}

.experience-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.experience-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 12px;
}

.experience-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-duration i {
    color: #10b981;
    font-size: 16px;
}

.experience-description {
    margin-bottom: 20px;
}

.experience-description p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.experience-achievements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.achievement-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.achievement-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.achievement-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.achievement-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.achievement-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.achievement-item span {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.9rem;
}

.tech-stack-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.tech-stack-section h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    transition: transform 0.2s ease;
}

.tech-tag:hover {
    transform: translateY(-1px);
}

.tech-tag-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.tech-tag-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.tech-tag-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.tech-tag-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

/* Technical Skills Section */
.technical-skills-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.skill-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.skill-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.skill-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.skill-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.skill-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.skill-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.skill-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.skill-percentage {
    font-weight: 600;
    color: #3b82f6;
    font-size: 1rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.additional-skills {
    text-align: center;
}

.additional-skills h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
}

.additional-skills-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.additional-skill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    color: #475569;
    font-weight: 500;
}

.additional-skill i {
    color: #3b82f6;
    font-size: 16px;
}

/* Major Projects Section */
.major-projects-section {
    padding: 80px 0;
    background: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-featured {
    position: relative;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.project-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.project-icon-1 {
    background: white;
    color: #1e293b;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.project-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.project-badge {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.project-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-tech {
    margin-bottom: 16px;
}

.project-tech h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-item {
    background: #e2e8f0;
    color: #475569;
    padding: 15px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-target {
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.project-target p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* Education & Certifications Section */
.education-section {
    padding: 80px 0;
    background: white;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.education-item {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.education-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.education-details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 8px;
}

.education-details p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certification-item {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.cert-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.cert-icon-1 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.cert-icon-2 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.cert-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.cert-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.contact-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.contact-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.contact-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.contact-icon-3 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.contact-icon-4 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.contact-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
}

.contact-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.contact-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.contact-cta .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-cta .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.contact-cta .contact-btn i {
    font-size: 18px;
}

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

.about-icon {
    animation: float 3s ease-in-out infinite;
}

.about-icon-1 {
    animation-delay: 0s;
}

.about-icon-2 {
    animation-delay: 0.5s;
}

.about-icon-3 {
    animation-delay: 1s;
}

/* About Me Page Responsive Design */

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .about-me-hero {
        padding: 100px 0 60px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .profile-image img,
    .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .profile-placeholder i {
        font-size: 60px;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .professional-summary-section,
    .work-experience-section,
    .technical-skills-section,
    .major-projects-section,
    .education-section,
    .contact-info-section {
        padding: 60px 0;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .summary-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .experience-card {
        padding: 28px 24px;
    }
    
    .experience-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .experience-info h3 {
        font-size: 1.3rem;
    }
    
    .experience-achievements {
        gap: 10px;
    }
    
    .achievement-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .achievement-item span {
        font-size: 0.85rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .additional-skills-list {
        gap: 12px;
    }
    
    .additional-skill {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        padding: 28px 24px;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
    
    .education-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .education-item {
        padding: 28px 24px;
    }
    
    .certification-item {
        padding: 18px 20px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px 18px;
    }
    
    .contact-cta {
        padding: 35px 25px;
    }
}

/* Mobile Large (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .about-me-hero {
        padding: 90px 0 50px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .profile-image img,
    .profile-placeholder {
        width: 130px;
        height: 130px;
    }
    
    .profile-placeholder i {
        font-size: 50px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .professional-summary-section,
    .work-experience-section,
    .technical-skills-section,
    .major-projects-section,
    .education-section,
    .contact-info-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .summary-card {
        padding: 30px 20px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .summary-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-item h4 {
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-card {
        padding: 24px 20px;
    }
    
    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .experience-info h3 {
        font-size: 1.2rem;
    }
    
    .experience-info h4 {
        font-size: 1rem;
    }
    
    .experience-description p {
        font-size: 0.95rem;
    }
    
    .experience-achievements {
        gap: 8px;
    }
    
    .achievement-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .achievement-item span {
        font-size: 0.8rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-item {
        padding: 20px;
    }
    
    .skill-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .skill-details h4 {
        font-size: 1rem;
    }
    
    .additional-skills h3 {
        font-size: 1.2rem;
    }
    
    .additional-skills-list {
        gap: 12px;
    }
    
    .additional-skill {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-card {
        padding: 24px 20px;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .project-content p {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .tech-item {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .education-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .education-item {
        padding: 24px 20px;
    }
    
    .education-details h3 {
        font-size: 1.1rem;
    }
    
    .education-details h4 {
        font-size: 0.95rem;
    }
    
    .certification-item {
        padding: 18px 16px;
    }
    
    .cert-details h4 {
        font-size: 0.95rem;
    }
    
    .cert-details p {
        font-size: 0.85rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .contact-cta .contact-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
    .about-me-hero {
        padding: 80px 0 40px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-image img,
    .profile-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .profile-placeholder i {
        font-size: 45px;
    }
    
    .role-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .profile-location {
        font-size: 0.9rem;
    }
    
    .professional-summary-section,
    .work-experience-section,
    .technical-skills-section,
    .major-projects-section,
    .education-section,
    .contact-info-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .summary-main {
        margin-bottom: 35px;
    }
    
    .summary-card {
        padding: 25px 15px;
        flex-direction: column;
        gap: 16px;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .summary-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .summary-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlight-item {
        padding: 18px 15px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .highlight-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .highlight-item p {
        font-size: 0.85rem;
    }
    
    .experience-timeline {
        gap: 30px;
    }
    
    .experience-cards {
        gap: 18px;
    }
    
    .experience-card {
        padding: 20px 15px;
    }
    
    .experience-header {
        margin-bottom: 16px;
    }
    
    .experience-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .status-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .experience-info h3 {
        font-size: 1.1rem;
    }
    
    .experience-info h4 {
        font-size: 1rem;
    }
    
    .experience-duration {
        font-size: 0.85rem;
    }
    
    .experience-description {
        margin-bottom: 16px;
    }
    
    .experience-description p {
        font-size: 0.9rem;
    }
    
    .experience-achievements {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .achievement-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .achievement-item span {
        font-size: 0.8rem;
    }
    
    .tech-stack-section h5 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .tech-tags {
        gap: 6px;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .skill-item {
        padding: 18px 15px;
    }
    
    .skill-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .skill-details h4 {
        font-size: 1rem;
    }
    
    .skill-percentage {
        font-size: 0.9rem;
    }
    
    .skill-bar {
        height: 6px;
    }
    
    .additional-skills h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .additional-skills-list {
        gap: 10px;
    }
    
    .additional-skill {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .additional-skill i {
        font-size: 14px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 20px 15px;
    }
    
    .project-header {
        margin-bottom: 20px;
    }
    
    .project-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .project-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .project-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .project-content p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .project-features {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .project-tech h5 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .tech-stack {
        gap: 4px;
    }
    
    .tech-item {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .project-target {
        padding: 10px;
    }
    
    .project-target p {
        font-size: 0.85rem;
    }
    
    .education-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-item {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .education-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .education-details h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .education-details h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .education-details p {
        font-size: 0.85rem;
    }
    
    .certifications-list {
        gap: 16px;
    }
    
    .certification-item {
        padding: 16px 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cert-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto;
    }
    
    .cert-details h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .cert-details p {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-item {
        padding: 18px 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 25px 15px;
    }
    
    .contact-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .contact-cta .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-cta .contact-btn i {
        font-size: 16px;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .about-me-hero {
        padding: 70px 0 35px;
    }
    
    .profile-image img,
    .profile-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .profile-placeholder i {
        font-size: 35px;
    }
    
    .role-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 0.9rem;
    }
    
    .profile-location {
        font-size: 0.85rem;
    }
    
    .professional-summary-section,
    .work-experience-section,
    .technical-skills-section,
    .major-projects-section,
    .education-section,
    .contact-info-section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .summary-main {
        margin-bottom: 30px;
    }
    
    .summary-card {
        padding: 20px 12px;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .summary-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .summary-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .highlight-item {
        padding: 15px 12px;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .highlight-item h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .highlight-item p {
        font-size: 0.8rem;
    }
    
    .experience-cards {
        gap: 16px;
    }
    
    .experience-card {
        padding: 18px 12px;
    }
    
    .experience-header {
        margin-bottom: 14px;
    }
    
    .experience-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .experience-info h3 {
        font-size: 1rem;
    }
    
    .experience-info h4 {
        font-size: 0.9rem;
    }
    
    .experience-duration {
        font-size: 0.8rem;
    }
    
    .experience-description {
        margin-bottom: 14px;
    }
    
    .experience-description p {
        font-size: 0.85rem;
    }
    
    .experience-achievements {
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .achievement-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
    
    .achievement-item span {
        font-size: 0.75rem;
    }
    
    .tech-stack-section h5 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .tech-tags {
        gap: 5px;
    }
    
    .tech-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .skills-grid {
        gap: 16px;
    }
    
    .skill-item {
        padding: 15px 12px;
    }
    
    .skill-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .skill-details h4 {
        font-size: 0.9rem;
    }
    
    .skill-percentage {
        font-size: 0.85rem;
    }
    
    .skill-bar {
        height: 5px;
    }
    
    .additional-skills h3 {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .additional-skills-list {
        gap: 8px;
    }
    
    .additional-skill {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .additional-skill i {
        font-size: 12px;
    }
    
    .projects-grid {
        gap: 18px;
    }
    
    .project-card {
        padding: 18px 12px;
    }
    
    .project-header {
        margin-bottom: 18px;
    }
    
    .project-icon {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .project-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .project-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .project-content p {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
    
    .project-features {
        gap: 5px;
        margin-bottom: 14px;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .project-tech h5 {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .tech-stack {
        gap: 3px;
    }
    
    .tech-item {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .project-target {
        padding: 8px;
    }
    
    .project-target p {
        font-size: 0.8rem;
    }
    
    .education-content {
        gap: 25px;
    }
    
    .education-item {
        padding: 18px 12px;
        gap: 14px;
    }
    
    .education-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .education-details h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .education-details h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .education-details p {
        font-size: 0.8rem;
    }
    
    .certifications-list {
        gap: 14px;
    }
    
    .certification-item {
        padding: 14px 12px;
        gap: 10px;
    }
    
    .cert-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .cert-details h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .cert-details p {
        font-size: 0.75rem;
    }
    
    .contact-grid {
        gap: 14px;
    }
    
    .contact-item {
        padding: 15px 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .contact-details a {
        font-size: 0.85rem;
    }
    
    .contact-cta {
        padding: 20px 12px;
    }
    
    .contact-cta p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .contact-cta .contact-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .contact-cta .contact-btn i {
        font-size: 14px;
    }
}
/* Creator Section */
.creator-section {
    padding: 80px 0;
    background: white;
}

.creator-intro {
    text-align: center;
    margin-bottom: 60px;
}

.creator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.creator-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.creator-image {
    position: relative;
    margin-bottom: 24px;
}

.creator-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.creator-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.creator-badge i {
    font-size: 14px;
}

.creator-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.creator-title {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.creator-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.creator-location i {
    color: #10b981;
    font-size: 16px;
}

.creator-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.creator-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.creator-link-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
}

.creator-link-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.creator-link-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.creator-link-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.creator-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.story-card:hover {
    transform: translateY(-2px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.story-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.story-icon-1 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.story-icon-2 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.story-icon-3 {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.story-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.story-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.creator-expertise {
    text-align: center;
}

.creator-expertise h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Desktop expertise grid */
@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-item {
    background: #f8fafc;
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease;
}

.expertise-item:hover {
    transform: translateY(-4px);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.expertise-icon-1 {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.expertise-icon-2 {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.expertise-icon-3 {
    background: linear-gradient(45deg, #10b981, #059669);
}

.expertise-icon-4 {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.expertise-content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.expertise-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Creator Section Responsive Design */

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .creator-section {
        padding: 60px 0;
    }
    
    .creator-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .creator-profile {
        padding: 32px 24px;
    }
    
    .creator-image img {
        width: 100px;
        height: 100px;
    }
    
    .creator-info h3 {
        font-size: 1.3rem;
    }
    
    .creator-links {
        flex-direction: row;
        gap: 10px;
    }
    
    .creator-link {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .story-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .story-header h4 {
        font-size: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .expertise-item {
        padding: 20px 16px;
    }
    
    .expertise-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile Large (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .creator-section {
        padding: 50px 0;
    }
    
    .creator-intro {
        margin-bottom: 40px;
    }
    
    .creator-content {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .creator-profile {
        padding: 28px 20px;
    }
    
    .creator-image img {
        width: 90px;
        height: 90px;
    }
    
    .creator-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .creator-info h3 {
        font-size: 1.2rem;
    }
    
    .creator-title {
        font-size: 0.95rem;
    }
    
    .creator-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .creator-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .story-card {
        padding: 18px;
    }
    
    .story-header {
        gap: 12px;
    }
    
    .story-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .story-header h4 {
        font-size: 0.95rem;
    }
    
    .story-card p {
        font-size: 0.9rem;
    }
    
    .creator-expertise h3 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .expertise-item {
        padding: 18px 16px;
    }
    
    .expertise-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .expertise-content h5 {
        font-size: 0.95rem;
    }
    
    .expertise-content p {
        font-size: 0.8rem;
    }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
    .creator-section {
        padding: 40px 0;
    }
    
    .creator-intro {
        margin-bottom: 35px;
    }
    
    .creator-content {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .creator-profile {
        padding: 24px 16px;
    }
    
    .creator-image img {
        width: 80px;
        height: 80px;
    }
    
    .creator-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .creator-badge i {
        font-size: 12px;
    }
    
    .creator-info h3 {
        font-size: 1.1rem;
    }
    
    .creator-title {
        font-size: 0.9rem;
    }
    
    .creator-location {
        font-size: 0.85rem;
    }
    
    .creator-link {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    
    .story-card {
        padding: 16px;
    }
    
    .story-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .story-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .story-header h4 {
        font-size: 0.9rem;
    }
    
    .story-card p {
        font-size: 0.85rem;
    }
    
    .creator-expertise h3 {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .expertise-grid {
        gap: 16px;
    }
    
    .expertise-item {
        padding: 16px 12px;
    }
    
    .expertise-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .expertise-content h5 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .expertise-content p {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .creator-section {
        padding: 35px 0;
    }
    
    .creator-intro {
        margin-bottom: 30px;
    }
    
    .creator-content {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .creator-profile {
        padding: 20px 12px;
    }
    
    .creator-image img {
        width: 70px;
        height: 70px;
    }
    
    .creator-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .creator-info h3 {
        font-size: 1rem;
    }
    
    .creator-title {
        font-size: 0.85rem;
    }
    
    .creator-location {
        font-size: 0.8rem;
    }
    
    .creator-link {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .story-card {
        padding: 14px;
    }
    
    .story-header {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .story-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .story-header h4 {
        font-size: 0.85rem;
    }
    
    .story-card p {
        font-size: 0.8rem;
    }
    
    .creator-expertise h3 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .expertise-grid {
        gap: 14px;
    }
    
    .expertise-item {
        padding: 14px 10px;
    }
    
    .expertise-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .expertise-content h5 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .expertise-content p {
        font-size: 0.7rem;
    }
}