/* Index Page Specific Variables */
:root {
    --primary: #00c0c0;
    --primary-dark: #00a8a8;
    --dark: #1a1a1a;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --gray-200: #e5e7eb;
    --white: #ffffff;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-3xl: 5rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition-base: all 0.3s ease;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0,192,192,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0,192,192,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(0,192,192,0.03) 50%, transparent 51%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 100;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(0,192,192,0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,192,192,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 150;
}

.hero-actions .btn {
    position: relative;
    z-index: 150;
    pointer-events: all;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    letter-spacing: 0.025em;
    border: none;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00a8a8 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0,192,192,.4);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,192,192,.5);
    color: white;
    text-decoration: none;
}

.hero-actions .btn-outline-primary {
    color: var(--primary);
    border: 3px solid var(--primary);
    background: rgba(0,192,192,0.05);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,192,192,.4);
}

/* Code Window Styles */
.hero-visual {
    position: relative;
    z-index: 2;
}

.code-window {
    background: rgba(20, 20, 20, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: rgba(40, 40, 40, 0.9);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot.red { background: #ff5f56; }
.code-dots .dot.yellow { background: #ffbd2e; }
.code-dots .dot.green { background: #27ca3f; }

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    display: flex;
    margin-bottom: 4px;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 20px;
    min-width: 20px;
    text-align: right;
}

.code-text .keyword { color: #c792ea; }
.code-text .function { color: #82aaff; }
.code-text .variable { color: #ecc48d; }
.code-text .string { color: #c3e88d; }

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: center;
}

.features-section .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 192, 192, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    flex-shrink: 0;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.industries-section .container {
    position: relative;
    z-index: 2;
}

.industries-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.industries-section .section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.text-white {
    color: white;
}

.text-white-50 {
    color: rgba(255,255,255,0.7);
}

.mb-5 {
    margin-bottom: 3rem;
}

.industry-tabs {
    margin-top: 3rem;
}

.industry-tabs .nav-pills {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    justify-content: center;
}

.industry-tabs .nav-item {
    margin: 0;
}

.industry-tabs .nav-link {
    color: rgba(255,255,255,0.8);
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.9rem;
    min-height: 44px;
}

.industry-tabs .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.industry-tabs .nav-link.active {
    background: #00c0c0;
    color: white;
    box-shadow: 0 4px 15px rgba(0,192,192,0.4);
    transform: translateY(-1px);
}

.industry-tabs .nav-link i {
    font-size: 1rem;
    flex-shrink: 0;
}

.me-2 {
    margin-right: 0.5rem;
}

.tab-content {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

.industry-content {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.industry-content:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transform: translateY(-4px);
    border-color: rgba(0,192,192,0.2);
}

.row {
    margin: 0;
}

.g-0 > * {
    padding: 0;
}

.col-lg-5,
.col-lg-7,
.col-md-6 {
    position: relative;
}

.industry-img {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
}

.industry-img-overlay {
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    padding: 3rem;
    width: 100%;
}

.industry-img-overlay h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.industry-detail {
    padding: 5rem;
    background: rgba(255,255,255,0.02);
}

.industry-detail h3 {
    color: #00c0c0;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-primary {
    color: #00c0c0;
}

.industry-detail p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.align-items-start {
    align-items: flex-start;
}

.industry-feature {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 8px;
}

.industry-feature:hover {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    margin: 0 -1rem 2rem -1rem;
    transform: translateX(4px);
}

.me-3 {
    margin-right: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.industry-feature i {
    color: #00c0c0;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.fw-bold {
    font-weight: 700;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.industry-feature h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.small {
    font-size: 0.875rem;
}

.mb-0 {
    margin-bottom: 0;
}

.industry-feature p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.industry-detail .btn {
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,192,192,0.3);
}

.industry-detail .btn:hover {
    background: linear-gradient(135deg, #00a8a8 0%, #00c0c0 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,192,192,0.4);
}

/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
    gap: var(--space-xl);
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
    transition: var(--transition-base);
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-item:not(.active) .step-number {
    background: #e5e7eb;
    color: var(--gray-600);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--gray-900);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,192,192,0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* Button Styles for All Sections */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Clean Mobile Responsive - Single Definition */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 90vh;
        text-align: center;
    }
    
    .hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
        color: rgba(255,255,255,0.9);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 2rem 0;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-width: auto;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .code-window {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .code-content {
        padding: 16px 12px;
        font-size: 12px;
        line-height: 1.5;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .features-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-section .section-title {
        font-size: 2.25rem;
    }
    
    /* Fixed horizontal scrolling tabs for mobile */
    .industry-tabs .nav-pills {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 8px !important;
        gap: 8px !important;
        justify-content: flex-start !important;
        min-height: 60px !important;
    }
    
    .industry-tabs .nav-pills::-webkit-scrollbar {
        display: none;
    }
    
    .industry-tabs .nav-link {
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: 140px !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }
    
    .industry-detail {
        padding: 2rem 1.5rem;
    }
    
    .industry-detail h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .industry-feature {
        margin-bottom: 1.5rem;
        padding: 0.75rem;
        background: rgba(255,255,255,0.03);
        border-radius: 8px;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .step-indicators {
        display: none;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    }
    
    .hero-section::before {
        background: 
            radial-gradient(ellipse at 30% 20%, rgba(0,192,192,0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(0,192,192,0.12) 0%, transparent 50%),
            linear-gradient(45deg, transparent 49%, rgba(0,192,192,0.05) 50%, transparent 51%);
    }
    
    .hero-section .container {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.875rem;
        background: linear-gradient(135deg, #ffffff 0%, rgba(0,192,192,0.95) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        font-weight: 900;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        color: rgba(255,255,255,0.85);
        font-weight: 400;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        margin: 1.5rem 0;
        gap: 0.875rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0,192,192,0.25);
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-actions .btn-primary {
        background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    }
    
    .hero-actions .btn-primary:hover,
    .hero-actions .btn-primary:active {
        background: linear-gradient(135deg, #00a8a8 0%, #009999 100%);
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(0,192,192,0.35);
    }
    
    .hero-actions .btn-outline-primary {
        border: 2px solid #00c0c0;
        background: rgba(0,192,192,0.1);
        backdrop-filter: blur(10px);
    }
    
    .hero-visual {
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-code-display {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .code-window {
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .code-header {
        padding: 12px 16px;
        background: rgba(30, 30, 30, 0.95);
    }
    
    .code-content {
        padding: 14px 12px;
        font-size: 11px;
        line-height: 1.4;
        background: rgba(15, 15, 15, 0.98);
    }
    
    .code-title {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .code-dots .dot {
        width: 9px;
        height: 9px;
    }
    
    .line-number {
        min-width: 16px;
        margin-right: 12px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
    }
    
    .code-text {
        font-size: 11px;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
    }
    
    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    
    .features-section .col-md-6,
    .features-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .features-section .section-title {
        font-size: 2rem;
    }
    
    .features-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .industry-tabs .nav-link {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .industry-detail {
        padding: 1.5rem 1rem;
    }
    
    .industry-detail h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .industry-detail p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .industry-feature {
        padding: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .industry-feature h6 {
        font-size: 0.825rem;
    }
    
    .industry-feature p {
        font-size: 0.75rem;
    }
}

/* Extra small devices improvements */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        max-width: 280px;
    }
    
    .hero-actions {
        max-width: 280px;
    }
    
    .hero-actions .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .code-content {
        padding: 12px 10px;
        font-size: 10px;
    }
    
    .code-header {
        padding: 10px 12px;
    }
    
    .features-section .section-title {
        font-size: 1.5rem;
    }
    
    .industries-section .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-detail {
        padding: 1.25rem 0.75rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 50%, var(--gray-800) 100%);
    --gradient-glass: rgba(255, 255, 255, 0.05);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Don't override navbar body styles */
body:not(.navbar-only) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0,192,192,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0,192,192,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(0,192,192,0.03) 50%, transparent 51%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 100;
}

.hero-section .row {
    position: relative;
    z-index: 100;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(0,192,192,0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,192,192,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 150 !important;
}

.hero-actions .btn {
    position: relative;
    z-index: 150 !important;
    pointer-events: all !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    letter-spacing: 0.025em;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00a8a8 100%);
    color: white !important;
    border: none;
    box-shadow: 0 10px 30px rgba(0,192,192,.4);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.hero-actions .btn-primary:hover::before {
    left: 100%;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,192,192,.5);
    color: white !important;
    text-decoration: none;
}

.hero-actions .btn-outline-primary {
    color: var(--primary) !important;
    border: 3px solid var(--primary);
    background: rgba(0,192,192,0.05);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-primary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,192,192,.4);
}

/* Code Window Styles */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-code-display {
    position: relative;
    max-width: 100%;
}

.code-window {
    background: rgba(20, 20, 20, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: rgba(40, 40, 40, 0.9);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot.red { background: #ff5f56; }
.code-dots .dot.yellow { background: #ffbd2e; }
.code-dots .dot.green { background: #27ca3f; }

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    display: flex;
    margin-bottom: 4px;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 20px;
    min-width: 20px;
    text-align: right;
}

.code-text .keyword { color: #c792ea; }
.code-text .function { color: #82aaff; }
.code-text .variable { color: #ecc48d; }
.code-text .string { color: #c3e88d; }

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    background: rgba(0, 192, 192, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Button System - Scoped to page content only */
.hero-section .btn,
.features-section .btn,
.industries-section .btn,
.contact-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Specific button styles for page content only - prevent navbar conflicts */
.hero-section .btn,
.features-section .btn, 
.industries-section .btn,
.contact-section .btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.375rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    line-height: 1.5 !important;
    border: 1px solid transparent !important;
}

.hero-section .btn-primary,
.features-section .btn-primary,
.industries-section .btn-primary, 
.contact-section .btn-primary {
    background: #00c0c0 !important;
    color: white !important;
    border-color: #00c0c0 !important;
}

.hero-section .btn-primary:hover,
.features-section .btn-primary:hover,
.industries-section .btn-primary:hover,
.contact-section .btn-primary:hover {
    background: #00a8a8 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    border-color: #00a8a8 !important;
}

.hero-section .btn-outline-primary,
.features-section .btn-outline-primary,
.industries-section .btn-outline-primary,
.contact-section .btn-outline-primary {
    color: #00c0c0 !important;
    border-color: #00c0c0 !important;
    background: transparent !important;
}

.hero-section .btn-outline-primary:hover,
.features-section .btn-outline-primary:hover,
.industries-section .btn-outline-primary:hover,
.contact-section .btn-outline-primary:hover {
    background: #00c0c0 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    border-color: #00c0c0 !important;
}

/* Hero Visual Side */
.hero-visual-side {
    position: relative;
    height: 600px;
}

.hero-dashboard {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.dashboard-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    display: grid;
    gap: var(--space-md);
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.metric-title {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xs);
}

.metric-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.metric-trend {
    font-size: var(--font-size-sm);
    color: var(--primary);
}

.metric-chart {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px;
    min-height: 8px;
    animation: grow 1.5s ease-out;
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--height); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; right: 20%; animation-delay: 0s; }
.card-2 { bottom: 30%; right: 10%; animation-delay: 2s; }
.card-3 { top: 60%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.scroll-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.scroll-arrow {
    font-size: var(--font-size-lg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Services Section */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-2xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-lg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.large-card {
    grid-row: span 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--space-lg);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.industries-section .container {
    position: relative;
    z-index: 2;
}

.industries-section .section-title {
    color: white !important;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.industries-section .section-subtitle {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.text-white {
    color: white !important;
}

.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.industry-tabs {
    margin-top: 3rem;
}

.industry-tabs .nav-pills {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    justify-content: center;
}

.industry-tabs .nav-item {
    margin: 0;
}

.industry-tabs .nav-link {
    color: rgba(255,255,255,0.8) !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
}

.industry-tabs .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

.industry-tabs .nav-link.active {
    background: #00c0c0 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,192,192,0.4) !important;
    transform: translateY(-1px) !important;
}

.industry-tabs .nav-link i {
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.tab-content {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

.industry-content {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.industry-content:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transform: translateY(-4px);
    border-color: rgba(0,192,192,0.2);
}

.row {
    margin: 0;
}

.g-0 > * {
    padding: 0;
}

.col-lg-5,
.col-lg-7,
.col-md-6 {
    position: relative;
}

.industry-img {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
}

.industry-img-overlay {
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    padding: 3rem;
    width: 100%;
}

.industry-img-overlay h4 {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
}

.industry-detail {
    padding: 5rem;
    background: rgba(255,255,255,0.02);
}

.industry-detail h3 {
    color: #00c0c0 !important;
    font-size: 1.875rem !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-primary {
    color: #00c0c0 !important;
}

.industry-detail p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    margin-bottom: 3rem !important;
}

.d-flex {
    display: flex !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.industry-feature {
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
    padding: 1rem 0 !important;
    border-radius: 8px !important;
}

.industry-feature:hover {
    background: rgba(255,255,255,0.05) !important;
    padding: 1rem !important;
    margin: 0 -1rem 2rem -1rem !important;
    transform: translateX(4px) !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.industry-feature i {
    color: #00c0c0 !important;
    font-size: 1.2rem !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.industry-feature h6 {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    font-size: 1rem !important;
}

.small {
    font-size: 0.875rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.industry-feature p {
    color: rgba(255,255,255,0.7) !important;
    margin: 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

.industry-detail .btn {
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1.5rem 3rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(0,192,192,0.3) !important;
}

.industry-detail .btn:hover {
    background: linear-gradient(135deg, #00a8a8 0%, #00c0c0 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,192,192,0.4) !important;
}

/* Mobile Responsive for Industries */
@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-section .section-title {
        font-size: 2.25rem;
    }
    
    .industry-tabs .nav-pills {
        flex-direction: column;
        padding: 4px;
        gap: 4px;
    }
    
    .industry-tabs .nav-link {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .industry-detail {
        padding: 2rem;
    }
    
    .industry-detail h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .industry-detail p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .industry-img {
        min-height: 250px;
    }
    
    .industry-img-overlay {
        padding: 2rem;
    }
    
    .industry-img-overlay h4 {
        font-size: 1.125rem !important;
    }
    
    .industry-feature {
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 12px !important;
    }
    
    .industry-feature h6 {
        font-size: 0.95rem !important;
    }
    
    .industry-feature p {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .industry-tabs .nav-pills {
        justify-content: center;
        gap: 8px;
    }
    
    .industry-tabs .nav-link {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .industry-detail {
        padding: 3rem;
    }
    
    .industry-img {
        min-height: 300px;
    }
}

@media (min-width: 1200px) {
    .industry-tabs .nav-pills {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .industry-detail {
        padding: 5rem 4rem;
    }
    
    .industry-content {
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

/* Process Section */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: var(--font-size-xl);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 0 calc(50% + 40px) 0 0;
    border: 1px solid var(--gray-200);
}

.timeline-item:nth-child(even) .timeline-content {
    margin: 0 0 0 calc(50% + 40px);
}

.timeline-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-600);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 90vh;
        text-align: center;
    }
    
    .hero-section .container {
        padding: 0 1rem;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
        color: rgba(255,255,255,0.9);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 2rem 0;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
        min-width: auto;
        border-radius: 12px !important;
        font-weight: 600 !important;
    }
    
    .hero-visual {
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-code-display {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .code-window {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .code-content {
        padding: 16px 12px;
        font-size: 12px;
        line-height: 1.5;
    }
    
    .code-header {
        padding: 12px 16px;
    }
    
    .code-title {
        font-size: 13px;
    }
    
    .code-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .line-number {
        min-width: 18px;
        margin-right: 16px;
        font-size: 11px;
    }
    
    .code-text {
        font-size: 12px;
    }
}
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .feature-card {
        margin-bottom: var(--space-lg);
    }
    
    .industry-tabs .nav-pills {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .industry-tabs .nav-link {
        width: 100%;
        justify-content: center;
        padding: var(--space-md);
    }
    
    .industry-detail {
        padding: var(--space-xl);
    }
    
    .industry-detail h3 {
        font-size: var(--font-size-2xl);
    }
    
    .industry-img {
        min-height: 250px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .row.g-0 > .col-lg-5,
    .row.g-0 > .col-lg-7 {
        margin-bottom: 0;
    }
    
    @media (max-width: 991px) {
        .industry-img {
            margin-bottom: 0;
        }
    }
}

/* Basic Reset & Variables */
:root {
    --primary: #00c0c0;
    --dark: #1a1a1a;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --white: #ffffff;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-3xl: 5rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition-base: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #00a8a8;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Code Window */
.code-window {
    background: rgba(20, 20, 20, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-header {
    background: rgba(40, 40, 40, 0.9);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot.red { background: #ff5f56; }
.code-dots .dot.yellow { background: #ffbd2e; }
.code-dots .dot.green { background: #27ca3f; }

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    display: flex;
    margin-bottom: 4px;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 20px;
    min-width: 20px;
    text-align: right;
}

.code-text .keyword { color: #c792ea; }
.code-text .function { color: #82aaff; }
.code-text .variable { color: #ecc48d; }
.code-text .string { color: #c3e88d; }

/* Features Section */
.features-section {
    padding: var(--space-3xl) 0;
    background: #f8fafc;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var (--gray-900);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: var (--radius-xl);
    padding: var (--space-xl);
    text-align: center;
    transition: var (--transition-base);
    box-shadow: var (--shadow-lg);
    height: 100%;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: var (--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var (--space-lg);
    color: white;
}

.feature-card h4 {
    font-size: var (--font-size-xl);
    font-weight: 700;
    margin-bottom: var (--space-md);
    color: var (--gray-900);
}

.feature-card p {
    color: var (--gray-600);
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.industries-section .container {
    position: relative;
    z-index: 2;
}

.industries-section .section-title {
    color: white !important;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.industries-section .section-subtitle {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.text-white {
    color: white !important;
}

.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.industry-tabs {
    margin-top: 3rem;
}

.industry-tabs .nav-pills {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    justify-content: center;
}

.industry-tabs .nav-item {
    margin: 0;
}

.industry-tabs .nav-link {
    color: rgba(255,255,255,0.8) !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
}

.industry-tabs .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

.industry-tabs .nav-link.active {
    background: #00c0c0 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,192,192,0.4) !important;
    transform: translateY(-1px) !important;
}

.industry-tabs .nav-link i {
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.tab-content {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

.industry-content {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.industry-content:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transform: translateY(-4px);
    border-color: rgba(0,192,192,0.2);
}

.row {
    margin: 0;
}

.g-0 > * {
    padding: 0;
}

.col-lg-5,
.col-lg-7,
.col-md-6 {
    position: relative;
}

.industry-img {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
}

.industry-img-overlay {
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    padding: 3rem;
    width: 100%;
}

.industry-img-overlay h4 {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
}

.industry-detail {
    padding: 5rem;
    background: rgba(255,255,255,0.02);
}

.industry-detail h3 {
    color: #00c0c0 !important;
    font-size: 1.875rem !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-primary {
    color: #00c0c0 !important;
}

.industry-detail p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    margin-bottom: 3rem !important;
}

.d-flex {
    display: flex !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.industry-feature {
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
    padding: 1rem 0 !important;
    border-radius: 8px !important;
}

.industry-feature:hover {
    background: rgba(255,255,255,0.05) !important;
    padding: 1rem !important;
    margin: 0 -1rem 2rem -1rem !important;
    transform: translateX(4px) !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.industry-feature i {
    color: #00c0c0 !important;
    font-size: 1.2rem !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.industry-feature h6 {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    font-size: 1rem !important;
}

.small {
    font-size: 0.875rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.industry-feature p {
    color: rgba(255,255,255,0.7) !important;
    margin: 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

.industry-detail .btn {
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1.5rem 3rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(0,192,192,0.3) !important;
}

.industry-detail .btn:hover {
    background: linear-gradient(135deg, #00a8a8 0%, #00c0c0 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,192,192,0.4) !important;
}

/* Mobile Responsive for Industries */
@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-section .section-title {
        font-size: 2.25rem;
    }
    
    .industry-tabs .nav-pills {
        flex-direction: column;
        padding: 4px;
        gap: 4px;
    }
    
    .industry-tabs .nav-link {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .industry-detail {
        padding: 2rem;
    }
    
    .industry-detail h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .industry-detail p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .industry-img {
        min-height: 250px;
    }
    
    .industry-img-overlay {
        padding: 2rem;
    }
    
    .industry-img-overlay h4 {
        font-size: 1.125rem !important;
    }
    
    .industry-feature {
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 12px !important;
    }
    
    .industry-feature h6 {
        font-size: 0.95rem !important;
    }
    
    .industry-feature p {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .industry-tabs .nav-pills {
        justify-content: center;
        gap: 8px;
    }
    
    .industry-tabs .nav-link {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .industry-detail {
        padding: 3rem;
    }
    
    .industry-img {
        min-height: 300px;
    }
}

@media (min-width: 1200px) {
    .industry-tabs .nav-pills {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .industry-detail {
        padding: 5rem 4rem;
    }
    
    .industry-content {
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
    gap: var(--space-xl);
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
    transition: var(--transition-base);
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-item:not(.active) .step-number {
    background: #e5e7eb;
    color: var(--gray-600);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--gray-900);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,192,192,0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var (--space-sm);
    }
    
    .industry-tabs .nav-pills {
        flex-direction: column;
        padding: var (--space-xs);
        gap: var (--space-xs);
    }
    
    .industry-tabs .nav-link {
        width: 100%;
        justify-content: center;
        padding: var (--space-md);
        font-size: 1rem;
    }
    
    .industry-detail {
        padding: var (--space-xl);
    }
    
    .industry-detail h3 {
        font-size: var (--font-size-2xl);
        line-height: 1.3;
    }
    
    .industry-detail p {
        font-size: 1rem;
        margin-bottom: var (--space-lg);
    }
    
    .industry-img {
        min-height: 250px;
    }
    
    .industry-img-overlay {
        padding: var (--space-lg);
    }
    
    .industry-img-overlay h4 {
        font-size: var (--font-size-lg);
    }
    
    .industry-feature {
        margin-bottom: var (--space-md);
        padding: var (--space-sm);
        background: rgba(255,255,255,0.03);
        border-radius: var (--radius-lg);
    }
    
    .industry-feature h6 {
        font-size: 0.95rem;
    }
    
    .industry-feature p {
        font-size: 0.85rem;
    }
    
    .form-container {
        padding: var (--space-lg);
    }
    
    .step-indicators {
        display: none !important;
    }
    
    .code-content {
        padding: 15px;
        font-size: 12px;
    }
    
    .code-header {
        padding: 12px 15px;
    }
    
    .feature-card {
        margin-bottom: var (--space-md);
        padding: var (--space-lg);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-subtitle {
        font-size: var (--font-size-lg);
    }
}

/* Tablet responsive */
@media (max-width: 991px) and (min-width: 769px) {
    .industry-tabs .nav-pills {
        justify-content: center;
        gap: var (--space-xs);
    }
    
    .industry-tabs .nav-link {
        padding: var (--space-sm) var (--space-md);
        font-size: 0.9rem;
    }
    
    .industry-detail {
        padding: var (--space-xl);
    }
    
    .industry-img {
        min-height: 300px;
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .industry-tabs .nav-pills {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .industry-detail {
        padding: var (--space-3xl) 4rem;
    }
    
    .industry-content {
        max-width: 1200px;
        margin: var (--space-xl) auto 0;
    }
}

/* Services Overview Section */
.services-overview {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro h2 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--dark) 0%, rgba(0,192,192,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro p {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    line-height: 1.6;
}

.services-showcase {
    display: grid;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl);
    background: rgba(248,250,252,0.8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.service-highlight.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-highlight.reverse .service-content {
    order: 2;
}

.service-highlight.reverse .service-visual {
    order: 1;
}

.service-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var (--space-lg);
    color: var(--gray-900);
}

.service-content p {
    font-size: var(--font-size-lg);
    color: var (--gray-600);
    margin-bottom: var (--space-xl);
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin-bottom: var (--space-xl);
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: var (--space-md);
    margin-bottom: var (--space-md);
    color: var(--gray-600);
    font-size: var (--font-size-lg);
}

.service-benefits i {
    color: var(--primary);
    font-size: var (--font-size-lg);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: var (--space-xs);
    padding: var (--space-md) var (--space-xl);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var (--radius-lg);
    font-weight: 600;
    transition: var (--transition-base);
    box-shadow: var (--shadow-lg);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: var (--shadow-xl);
    text-decoration: none;
    color: white;
}

/* Visual Mockups */
.visual-mockup {
    position: relative;
}

.mockup-screen {
    background: var (--gray-900);
    border-radius: var (--radius-lg);
    overflow: hidden;
    box-shadow: var (--shadow-2xl);
    transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
}

.mockup-header {
    background: var (--gray-800);
    padding: var (--space-md);
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: var (--space-xs);
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var (--gray-600);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27ca3f; }

.mockup-content {
    padding: var (--space-xl);
}

.content-line {
    height: 12px;
    background: var (--gray-700);
    border-radius: 6px;
    margin-bottom: var (--space-md);
}

.content-line.short {
    width: 60%;
}

.content-block {
    height: 80px;
    background: var (--gray-700);
    border-radius: var (--radius-md);
    margin-top: var (--space-xl);
}

/* Inventory Dashboard */
.inventory-dashboard {
    background: var (--white);
    border-radius: var (--radius-xl);
    padding: var (--space-xl);
    box-shadow: var (--shadow-2xl);
    transform: perspective(800px) rotateY(5deg) rotateX(-5deg);
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var (--space-lg);
}

.widget {
    background: rgba(0,192,192,0.05);
    padding: var (--space-lg);
    border-radius: var (--radius-lg);
    border: 1px solid rgba(0,192,192,0.1);
}

.widget.small {
    padding: var (--space-md);
}

.widget-title {
    font-size: var (--font-size-sm);
    color: var (--gray-600);
    margin-bottom: var (--space-xs);
    font-weight: 600;
}

.widget-value {
    font-size: var (--font-size-2xl);
    font-weight: 800;
    color: var (--primary);
}

.progress-bar {
    height: 8px;
    background: var (--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var (--gradient-primary);
    border-radius: 4px;
}

.chart-mini {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var (--gradient-primary);
    border-radius: 2px;
    min-height: 8px;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 100%; }
.chart-bar:nth-child(4) { height: 70%; }

/* Industries Section */
.industries-section {
    padding: var (--space-3xl) 0;
    background: linear-gradient(135deg, var (--gray-900) 0%, var (--dark) 100%);
    color: white;
}

.industries-section .section-intro h2 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0,192,192,0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-section .section-intro p {
    color: rgba(255,255,255,0.8);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var (--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var (--radius-xl);
    padding: var (--space-xl);
    text-align: center;
    transition: var (--transition-base);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var (--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var (--gradient-primary);
    border-radius: var (--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var (--space-lg);
    font-size: var (--font-size-2xl);
    color: white;
    transition: var (--transition-base);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
}

.industry-card h4 {
    font-size: var (--font-size-xl);
    font-weight: 700;
    margin-bottom: var (--space-md);
    color: white;
}

.industry-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var (--space-lg);
    line-height: 1.6;
}

.industry-link {
    color: var (--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var (--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var (--space-xs);
}

.industry-link:hover {
    color: var (--primary-light);
    transform: translateX(4px);
}

/* Fixed Industry Image Heights */
.industry-content .row {
    min-height: 350px !important;
    align-items: stretch !important;
}

.industry-content .col-lg-5 {
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column !important;
}

.industry-content .col-lg-7 {
    min-height: 350px !important;
    display: flex !important;
    align-items: center !important;
}

.industry-img {
    min-height: 350px !important;
    height: 100% !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: end !important;
    flex: 1 !important;
    overflow: hidden !important;
}

.industry-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #1f2937 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0,192,192,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59,130,246,0.1) 0%, transparent 50%);
    z-index: 1;
}

.industry-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0,192,192,0.05) 25%, 
        transparent 50%, 
        rgba(0,192,192,0.05) 75%, 
        transparent 100%);
    background-size: 60px 60px;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
    opacity: 0.3;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-100px);
    }
    50% { 
        opacity: 0.6;
        transform: translateX(100px);
    }
}

.industry-img-overlay {
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%) !important;
    padding: 3rem !important;
    width: 100% !important;
    position: relative !important;
    z-index: 3 !important;
}

.industry-detail {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 2rem !important;
}

/* Mobile adjustments for better image display */
@media (max-width: 991px) {
    .industry-content .row {
        min-height: auto !important;
        flex-direction: column !important;
    }
    
    .industry-content .col-lg-5 {
        min-height: 250px !important;
        order: 1 !important;
    }
    
    .industry-content .col-lg-7 {
        min-height: auto !important;
        order: 2 !important;
    }
    
    .industry-img {
        min-height: 250px !important;
        background-size: contain !important;
    }
}

@media (max-width: 768px) {
    .industry-img {
        min-height: 250px !important;
        background-size: cover !important;
    }
    
    .industry-img::before {
        background: 
            linear-gradient(135deg, #1f2937 0%, transparent 30%),
            radial-gradient(circle at 70% 30%, rgba(0,192,192,0.2) 0%, transparent 60%);
    }
    
    .industry-img::after {
        animation-duration: 2s;
        background-size: 40px 40px;
    }
    
    .industry-content .col-lg-5 {
        min-height: 250px !important;
    }
    
    .industry-detail {
        padding: 1.5rem !important;
    }
    
    .industry-img-overlay {
        padding: 2rem !important;
    }
}

/* Features Section - Market Your Inventory Everywhere */
.features-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: center;
}

.features-section .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.features-section .col-md-6,
.features-section .col-lg-3 {
    padding: 0 0.75rem;
    margin-bottom: 2rem;
    display: flex;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 192, 192, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover .feature-icon::after {
    left: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    flex-shrink: 0;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Mobile Responsive for Features */
@media (max-width: 991px) {
    .features-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .features-section .col-md-6,
    .features-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .features-section .section-title {
        font-size: 2rem;
    }
    
    .features-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Comprehensive Responsive Design for All Sections */

/* Large Tablets and Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-actions .btn {
        min-width: 140px;
        padding: 0.625rem 1.25rem !important;
    }
    
    .features-section .section-title {
        font-size: 2.25rem;
    }
    
    .industries-section .section-title {
        font-size: 2.75rem;
    }
    
    .industry-detail {
        padding: 4rem 3rem !important;
    }
    
    .contact-section .section-title {
        font-size: 2.25rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        min-width: 160px;
        font-size: 0.95rem;
    }
    
    .code-window {
        margin-top: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .features-section .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
        padding: 1.75rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-section .section-title {
        font-size: 2.5rem;
    }
    
    /* Keep horizontal tabs on tablets */
    .industry-tabs .nav-pills {
        justify-content: center;
        gap: 8px;
    }
    
    .industry-tabs .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .industry-content .row {
        flex-direction: column;
    }
    
    .industry-content .col-lg-5 {
        order: 1;
    }
    
    .industry-content .col-lg-7 {
        order: 2;
    }
    
    .industry-detail {
        padding: 3rem 2rem;
    }
    
    .industry-detail h3 {
        font-size: 1.75rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .form-container {
        padding: 2rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .code-window {
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .code-content {
        padding: 15px;
        font-size: 12px;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .features-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .features-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .features-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .industries-section {
        padding: 50px 0;
    }
    
    .industries-section .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .industries-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .industry-tabs .nav-link {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
    }
    
    .industry-detail {
        padding: 2rem 1.5rem !important;
    }
    
    .industry-detail h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .industry-detail p {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }
    
    .industry-feature {
        margin-bottom: 1.5rem !important;
        padding: 0.75rem !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 8px !important;
    }
    
    .industry-feature h6 {
        font-size: 0.9rem !important;
    }
    
    .industry-feature p {
        font-size: 0.8rem !important;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .contact-section p {
        font-size: 0.95rem;
        margin-bottom: 2rem !important;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-step h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero-actions .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
        max-width: 240px;
    }
    
    .code-window {
        margin-top: 1rem;
    }
    
    .code-header {
        padding: 12px 15px;
    }
    
    .code-content {
        padding: 12px;
        font-size: 11px;
    }
    
    .features-section {
        padding: 2.5rem 0;
    }
    
    .features-section .container {
        padding: 0 1rem;
    }
    
    .features-section .section-title {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }
    
    .features-section .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.875rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .industries-section {
        padding: 40px 0;
    }
    
    .industries-section .container {
        padding: 0 1rem;
    }
    
    .industries-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .industries-section .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .industry-tabs .nav-link {
        padding: 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    .industry-detail {
        padding: 1.5rem 1rem !important;
    }
    
    .industry-detail h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .industry-detail p {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .industry-feature {
        padding: 0.625rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .industry-feature h6 {
        font-size: 0.825rem !important;
    }
    
    .industry-feature p {
        font-size: 0.75rem !important;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-section .container {
        padding: 0 1rem;
    }
    
    .contact-section .section-title {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }
    
    .contact-section p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem !important;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    .form-step h4 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* Extra small devices improvements */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        max-width: 280px;
    }
    
    .hero-actions {
        max-width: 280px;
    }
    
    .hero-actions .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .code-content {
        padding: 12px 10px;
        font-size: 10px;
    }
    
    .code-header {
        padding: 10px 12px;
    }
    
    .features-section .section-title {
        font-size: 1.5rem;
    }
    
    .industries-section .section-title {
        font-size: 1.5rem;
    }
    
    .contact-section .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-detail {
        padding: 1.25rem 0.75rem !important;
    }
    
    .form-container {
        padding: 1rem;
    }
}

/* Mobile-Specific Hero Improvements */
@media (max-width: 575px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    }
    
    .hero-section::before {
        background: 
            radial-gradient(ellipse at 30% 20%, rgba(0,192,192,0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(0,192,192,0.12) 0%, transparent 50%),
            linear-gradient(45deg, transparent 49%, rgba(0,192,192,0.05) 50%, transparent 51%);
    }
    
    .hero-section .container {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.875rem;
        background: linear-gradient(135deg, #ffffff 0%, rgba(0,192,192,0.95) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        font-weight: 900;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        color: rgba(255,255,255,0.85);
        font-weight: 400;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        margin: 1.5rem 0;
        gap: 0.875rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        box-shadow: 0 8px 20px rgba(0,192,192,0.25) !important;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-actions .btn-primary {
        background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%) !important;
    }
    
    .hero-actions .btn-primary:hover,
    .hero-actions .btn-primary:active {
        background: linear-gradient(135deg, #00a8a8 0%, #009999 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 10px 25px rgba(0,192,192,0.35) !important;
    }
    
    .hero-actions .btn-outline-primary {
        border: 2px solid #00c0c0 !important;
        background: rgba(0,192,192,0.1) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .hero-visual {
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-code-display {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .code-window {
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .code-header {
        padding: 12px 16px;
        background: rgba(30, 30, 30, 0.95);
    }
    
    .code-content {
        padding: 14px 12px;
        font-size: 11px;
        line-height: 1.4;
        background: rgba(15, 15, 15, 0.98);
    }
    
    .code-title {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .code-dots .dot {
        width: 9px;
        height: 9px;
    }
    
    .line-number {
        min-width: 16px;
        margin-right: 12px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
    }
    
    .code-text {
        font-size: 11px;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
    }
    
    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    
    .features-section .col-md-6,
    .features-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .features-section .section-title {
        font-size: 2rem;
    }
    
    .features-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .industry-tabs .nav-link {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .industry-detail {
        padding: 1.5rem 1rem;
    }
    
    .industry-detail h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .industry-detail p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .industry-feature {
        padding: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .industry-feature h6 {
        font-size: 0.825rem;
    }
    
    .industry-feature p {
        font-size: 0.75rem;
    }
}

/* Extra small devices improvements */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        max-width: 280px;
    }
    
    .hero-actions {
        max-width: 280px;
    }
    
    .hero-actions .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .code-content {
        padding: 12px 10px;
        font-size: 10px;
    }
    
    .code-header {
        padding: 10px 12px;
    }
}
/* FINAL OVERRIDE - Responsive Industry Tabs */
.industry-tabs .nav-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 8px 12px !important;
    gap: 8px !important;
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
}

.industry-tabs .nav-link {
    flex-shrink: 0 !important;
    width: auto !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    color: rgba(255,255,255,0.8) !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 44px !important;
    margin: 0 !important;
}

.industry-tabs .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    transform: translateY(-1px) !important;
}

.industry-tabs .nav-link.active {
    background: #00c0c0 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,192,192,0.4) !important;
}

.industry-tabs .nav-link i {
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
}

/* Mobile: Clean horizontal scrolling */
@media (max-width: 768px) {
    .industry-tabs .nav-pills {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 12px 16px !important;
        margin: 0 -8px !important;
        position: relative !important;
    }
    
    .industry-tabs .nav-pills::-webkit-scrollbar {
        display: none !important;
    }
    
    .industry-tabs .nav-pills::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        background: linear-gradient(to left, rgba(31,41,55,0.8), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .industry-tabs .nav-pills::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        background: linear-gradient(to right, rgba(31,41,55,0.8), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .industry-tabs .nav-link {
        min-width: 140px !important;
        margin-right: 12px !important;
        padding: 14px 18px !important;
        font-size: 0.9rem !important;
        border-radius: 14px !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .industry-tabs .nav-link:last-child {
        margin-right: 0 !important;
    }
}

/* Tablet: Center tabs with wrap */
@media (min-width: 769px) and (max-width: 1199px) {
    .industry-tabs .nav-pills {
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
    }
    
    .industry-tabs .nav-link {
        min-width: 120px !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* Desktop: Allow tabs to wrap */
@media (min-width: 1200px) {
    .industry-tabs .nav-pills {
        max-width: 1000px !important;
        margin: 0 auto !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
    }
    
    .industry-tabs .nav-link {
        min-width: 140px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}