/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: url('/images/1.png') center center / cover no-repeat;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}
.case-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    display: inline-block;
    align-self: flex-start;
    position: relative;
}
/* Plasma Background - DISAB    LED */
.plasma-background {
    display: none;
}

#plasma-canvas {
    display: none;
}

.hero-container {
    padding: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.title-normal {
    font-weight: 300;
    font-size: 70px;
}

.title-bold {
    font-weight: 300;
    display: block;
    margin-top: 0.5rem;
    font-size: 70px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Learn More Button */
.learn-more,
a.learn-more,
button.learn-more {
    position: relative;
    display: inline-block;
    width: 14rem;
    height: auto;
    text-decoration: none;
    cursor: pointer;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 3rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.learn-more:hover .circle {
    width: 100%;
}

.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
    color: #fff;
}



.button-text {
    padding: 1rem 1.5rem 1rem 0;
    white-space: nowrap;
}

/* Consult Button - Gradient Style */
.consult-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #0f172a 0%, #1e293b 30%, #334155 60%, #475569 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.consult-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.consult-button:hover::before {
    left: 100%;
}

.consult-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.6);
    background: linear-gradient(to right, #1e293b 0%, #334155 30%, #475569 60%, #64748b 100%);
    border-color: rgba(148, 163, 184, 0.3);
}

.consult-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.4);
}

.consult-button-text {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.consult-button-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.consult-button:hover .consult-button-arrow {
    transform: translateX(4px);
}

/* Code Editor */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-editor {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #3d3d3d;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.editor-content {
    padding: 2rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    height: 400px;
}

.code-line {
    margin-bottom: 0.5rem;
    display: block;
}

.code-line.indent {
    padding-left: 2rem;
}

.code-keyword {
    color: #c586c0;
}

.code-variable {
    color: #d4d4d4;
}

.code-operator {
    color: #d4d4d4;
}

.code-string {
    color: #ce9178;
}

.code-bracket {
    color: #d4d4d4;
}

.code-method {
    color: #9cdcfe;
}

/* Services Grid */
.services-grid {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .services-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .services-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }
    
    @media (max-width: 768px) {
        .services-title {
            font-size: 2rem;
        }
        
        .services-subtitle {
            font-size: 1rem;
        }
        
        .service-title {
            font-size: 1.1rem;
        }
        
        .service-description {
            font-size: 0.9rem;
        }
    }

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}




/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        font-size: 2.4rem;
    }

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

    .title-normal {
        font-size: 3rem;
        font-weight: 400;
    }

    .title-bold {
        font-size: 3rem;
        font-weight: 400;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        max-width: none;
        font-size: 0.85rem;
    }
    
    .code-editor {
        max-width: 100%;
    }
    
    .services-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* header-related responsive rules removed */
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-normal {
        font-size: 3rem;
    }
    
    .title-bold {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .services-container,
    .tech-container,
    .process-container,
    .cta-container {
        padding: 0 1rem;
    }
    
    .service-card,
    .tech-category,
    .process-step {
        padding: 1.5rem;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .expertise-title {
        font-size: 1.8rem;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .philosophy-title {
        font-size: 1.6rem;
    }
    
    .philosophy-description {
        font-size: 0.9rem;
    }
    
    .additional-services-title {
        font-size: 1.6rem;
    }
    
    .cases-title {
        font-size: 3rem;
    }
}

/* Expertise Section */
.expertise {
    padding: 8rem 0;
    background: #ffffff;
    color: #1a1a1a;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.expertise-header {
    position: sticky;
    top: 10rem;
}

.expertise-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.expertise-content {
    width: 100%;
}

.expertise-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-arrow {
    font-size: 0.875rem;
    font-weight: 300;
    color: #666;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: #1a1a1a;
}

.accordion-item.active .icon-arrow {
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 0 2rem 0;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Expertise Responsive */
@media (max-width: 768px) {
    .expertise-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-header {
        position: unset;
    }
    
    .expertise-title {
        font-size: 2.4rem;
    }
    
    .accordion-header {
        padding: 1.5rem 0;
    }
    
    .accordion-title {
        font-size: 0.85rem;
    }
}

/* Process Responsive */
@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-title {
        font-size: 2.4rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}

/* Features Section Styles */
.features {
    padding: 8rem 2rem;
    background: #1a1a1a;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 55px;
    margin: 0 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-title {
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
}

.features-subtitle {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
   
}

.features-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.features-icon svg {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin-top: 2rem;
}

.feature-card:nth-child(1),
.feature-card:nth-child(2) {
    grid-row: 1;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-row: 2;
}

.feature-card:nth-child(1) {
    grid-column: 2;
}

.feature-card:nth-child(2) {
    grid-column: 3;
}

.feature-card:nth-child(3) {
    grid-column: 1;
}

.feature-card:nth-child(4) {
    grid-column: 2;
}

.feature-card:nth-child(5) {
    grid-column: 3;
}

.feature-card {
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: #ff6b6b;
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        grid-row: 1;
    }
    
    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        grid-row: 2;
    }
    
    .feature-card:nth-child(5) {
        grid-row: 3;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 1rem;
    }
    
    .features-content {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .feature-card:nth-child(n) {
        grid-row: auto;
        grid-column: 1;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features-title {
        font-size: 2.8rem;
    }
    
    .features-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        margin-left: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}
 
/* FAQ Section Styles */
.faq {
    padding: 8rem 0;
    background: white;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: left;
    margin-bottom: 4rem;
}

    .faq-title {
        font-size: 70px;
        font-weight: 400;
        color: #1a1a1a;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin: 0;
    }
    
    @media (max-width: 768px) {
        .faq-title {
           font-size: 2.4rem;
           text-align: left;
           font-weight: 400;
           margin: 0 30px;
        }

        .philosophy-container {
            padding: 3rem 2rem;
        }
        
        .faq-list {
            margin: 0 30px;
        }
    
        .faq-question h3 {
            font-size: 0.95rem;
        }
        
        .faq-answer p {
            font-size: 0.85rem;
        }
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    border-color: #1a1a1a;
    background: #fafafa;
}

.faq-question {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1a1a1a;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    width: 3px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
    color: #1a1a1a;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(0deg) scale(1);
    font-size: 1.2rem;
    font-weight: 300;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg) scale(1.1);
    color: #1a1a1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    border-radius: 55px;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    padding-right: 2rem;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.philosophy-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* From Uiverse.io by adamgiebl */
.cssbuttons-io {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: ghostwhite;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.cssbuttons-io svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}

.cssbuttons-io span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 1.2em 0.8em 1.05em;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cssbuttons-io::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
    transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
    transform: scale(0.95);
}

.philosophy-terminal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.terminal-header {
    background: #2d2d2d;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #404040;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f56;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    background: #1a1a1a;
    min-height: 200px;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.terminal-prompt {
    color: #4ade80;
    margin-right: 0.5rem;
    font-weight: 600;
}

.terminal-command {
    color: #fbbf24;
    font-weight: 500;
}

.terminal-output {
    color: #e5e7eb;
    margin-left: 1.5rem;
}

.terminal-output.info {
    color: #60a5fa;
}

.terminal-output.build {
    color: #fbbf24;
}

.terminal-output.optimize {
    color: #34d399;
}

.terminal-output.security {
    color: #f87171;
}

.terminal-output.responsive {
    color: #a78bfa;
}

.terminal-output.deploy {
    color: #fb7185;
}

.terminal-output.success {
    color: #4ade80;
    font-weight: 600;
}

.terminal-cursor {
    color: #4ade80;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .philosophy {
        margin: 0 1rem;
        padding: 3rem 0;
        border-radius: 30px;
    }
    
    .philosophy-container {
        padding: 0 1.5rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-text {
        padding-right: 0;
        text-align: center;
    }
    
    .philosophy-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }
    
    .philosophy-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .philosophy-description:last-of-type {
        margin-bottom: 1.5rem;
    }
    
    .cssbuttons-io {
        display: block;
        margin: 0 auto;
        font-size: 16px;
        width: fit-content;
    }
    
    .terminal-window {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .philosophy {
        margin: 0 0.75rem;
        padding: 2.5rem 0;
        border-radius: 25px;
    }
    
    .philosophy-container {
        padding: 0 1rem;
    }
    
    .philosophy-content {
        gap: 1.5rem;
    }
    
    .philosophy-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .philosophy-description {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .philosophy-description:last-of-type {
        margin-bottom: 1.25rem;
    }
    
    .cssbuttons-io {
        font-size: 14px;
        margin-top: 0;
    }
    
    .cssbuttons-io span {
        padding: 0.7em 1em 0.7em 0.9em;
    }
}

/* Additional Services Section */
.additional-services {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.additional-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.additional-services-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.additional-services-text {
    padding-right: 2rem;
}

.additional-services-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin: 0;
}

.additional-services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.additional-services .accordion-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.additional-services .accordion-item:last-child {
    border-bottom: none;
}

.additional-services .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.additional-services .accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
    margin: 0 -2rem;
    padding: 2rem;
}

.additional-services .accordion-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.additional-services .accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.additional-services .icon-arrow {
    font-size: 1.2rem;
    color: #6b7280;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.additional-services .accordion-item.active .icon-arrow {
    color: #1a1a1a;
    transform: rotate(180deg);
}

.additional-services .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.additional-services .accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 2rem;
}

.additional-services .accordion-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.additional-services .accordion-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .additional-services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .additional-services-text {
        padding-right: 0;
        text-align: center;
    }
    
    .additional-services-title {
        font-size: 2rem;
    }
    
    .additional-services .accordion-title {
        font-size: 0.95rem;
    }
    
    .additional-services .accordion-content p {
        font-size: 0.85rem;
    }
    
    .additional-services .accordion-header:hover {
        margin: 0;
        padding: 2rem 0;
    }
}

/* Smooth Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Enhanced scroll animations for specific sections */
.hero {
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise,
.philosophy,
.features,
.cases,
.faq {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise.visible,
.philosophy.visible,
.features.visible,
.cases.visible,
.faq.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for interactive elements */
.accordion-item,
.feature-card,
.case-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced button animations */
button,
.nav-arrow,
.accordion-header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax effect for background elements */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


* Cases Section Styles */
.cases {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 0;
}

.cases-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 1.5rem;
    padding: 0 25px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cases-title-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .cases-title {
        font-size: 70px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0;
        letter-spacing: -0.02em;
    }
    
    @media (max-width: 768px) {
        .cases {
            padding: 4rem 0;
        }
        
        .cases-header {
            padding: 0 1.5rem;
            margin-bottom: 3rem;
        }
        
        .cases-title {
            font-size: 2.5rem;
        }
        
        .all-articles-link {
            font-size: 0.85rem;
        }
        
        .cases-showcase {
            gap: 1.5rem;
            padding: 0 1.5rem;
        }
        
        .case-item {
            width: 320px;
            height: 380px;
        }
        
        .case-content-overlay {
            padding: 1.5rem;
            padding-top: 2.5rem;
        }
        
        .case-title {
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            margin-bottom: 1rem;
            margin-top: 100px;
        }
        
        .case-description {
            font-size: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .case-link {
            font-size: 0.85rem;
            margin-top: 1.5rem;
        }
    }

.all-articles-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.all-articles-link:hover {
    color: #666;
}

/* Cases Showcase - Horizontal Scrollable Row */
.cases-showcase {
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 0 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.cases-showcase::-webkit-scrollbar {
    height: 8px;
}

.cases-showcase::-webkit-scrollbar-track {
    background: transparent;
}

.cases-showcase::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.cases-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.case-item {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.case-item:nth-child(1) { animation-delay: 0.1s; }
.case-item:nth-child(2) { animation-delay: 0.2s; }
.case-item:nth-child(3) { animation-delay: 0.3s; }
.case-item:nth-child(4) { animation-delay: 0.4s; }
.case-item:nth-child(5) { animation-delay: 0.5s; }
.case-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.case-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.case-item:hover .case-bg-image {
    transform: scale(1.1);
}

.case-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: background 0.6s ease;
}

.case-item:hover .case-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.case-content-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 2rem;
    padding-top: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-item:hover .case-content-overlay {
    transform: translateY(-5px);
}

.case-category-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.case-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.6s ease;
    margin-top: 70px;
}

.case-item:hover .case-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.case-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 90%;
}

.case-meta {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    opacity: 0.95;
    transition: opacity 0.6s ease;
}

.case-item:hover .case-meta {
    opacity: 1;
}

.case-time,
.case-category {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    transition: background 0.6s ease, transform 0.6s ease;
}

.case-item:hover .case-time,
.case-item:hover .case-category {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.case-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0.9;
    display: inline-block;
    align-self: flex-start;
}

.case-item:hover .case-link {
    transform: translateX(5px);
    opacity: 1;
}

/* URL link that appears on hover */
.case-url-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.case-item:hover .case-url-link {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.case-url-link:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.case-url-link::after {
    content: '→';
    font-size: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.case-url-link:hover::after {
    transform: translateX(3px);
}

/* Mobile-specific case item sizing */
@media (max-width: 480px) {
    .cases-header {
        padding: 0 1rem;
    }
    
    .cases-title {
        font-size: 2rem;
    }
    
    .cases-showcase {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .case-item {
        width: 280px;
        height: 350px;
    }
    
    .case-content-overlay {
        padding: 1.25rem;
        padding-top: 2rem;
    }
    
    .case-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        margin-top: 80px;
    }
    
    .case-description {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .case-link {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    position: relative;
}