/* --- TECHNOLOGY PAGE STYLES --- */

:root {
    --primary-red: #e61818;
    --dark-bg: #0f1113;
    --dark-text: #1a1a1a;
    --gray-text: #666;
    --light-gray: #f8f9fa;
}

.tc-red {
    color: var(--primary-red);
}

/* Hero */
.tc-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #050709; /* Deep dark background */
    color: var(--white);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.tc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(230, 24, 24, 0.08) 0%, transparent 60%);
    z-index: 1;
}

/* Subtle grid/circuit pattern */
.tc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
}

.tc-hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tc-hero-left {
    flex: 1;
    max-width: 600px;
}

.tc-hero-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.tc-hero-left h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: var(--white);
}

.tc-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
}

.tc-hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.tc-btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-btn-primary:hover {
    background: #c41414;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 24, 24, 0.3);
}

.tc-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.tc-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tc-hero-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-feature-icon {
    color: var(--primary-red);
    opacity: 0.9;
}

.tc-feature-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

.tc-hero-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.tc-hero-laptop {
    position: relative;
    width: 120%;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.tc-hero-laptop:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.tc-hero-laptop > img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.laptop-screen-content {
    position: absolute;
    top: 6.5%;
    left: 12.3%;
    width: 75.3%;
    height: 81%;
    background: #fff;
    overflow: hidden;
    border-radius: 2px;
}

.laptop-screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Software Categories Section */
.tc-categories-section {
    padding: 100px 0;
    background-color: var(--white);
}

.tc-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tc-category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tc-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 24, 24, 0.2);
}

.tc-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tc-category-icon {
    width: 44px;
    height: 44px;
    background: #fff5f5;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-category-header h3 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark-text);
}

.tc-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex: 1;
}

.tc-category-list li {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.tc-category-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 900;
    font-size: 12px;
}

.tc-explore-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: capitalize;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-explore-link:hover {
    gap: 12px;
}

/* Stats Bar Section */
.tc-stats-section {
    padding-bottom: 100px;
    background-color: var(--white);
}

.tc-stats-bar {
    background: #111315;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.tc-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.tc-stat-icon {
    color: var(--primary-red);
}

.tc-stat-content h3 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.tc-stat-content p {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Technology Solutions Section */
.tc-solutions-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.tc-solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.tc-solution-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tc-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 24, 24, 0.2);
}

.tc-solution-header {
    position: relative;
    margin-bottom: 20px;
}

.tc-solution-num {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.8;
}

.tc-solution-icon {
    width: 44px;
    height: 44px;
    background: #fff5f5;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tc-solution-card h4 {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.tc-solution-card p {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 25px;
    flex: 1;
}

.tc-solution-actions {
    display: flex;
    gap: 10px;
}

.tc-btn-sm {
    flex: 1;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tc-btn-red-outline {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
}

.tc-btn-red-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

.tc-btn-gray-outline {
    border: 1px solid #ddd;
    color: #666;
}

.tc-btn-gray-outline:hover {
    background: #f5f5f5;
    color: var(--dark-text);
}

/* Development Process Section */
.tc-process-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.tc-process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

/* Horizontal line passing through numbers */
.tc-process-timeline::before {
    content: '';
    position: absolute;
    top: 25px; /* Aligned with number center */
    left: 10%;
    right: 10%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.tc-process-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.tc-process-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 0 0 10px var(--white); /* Break the line effect */
}

.tc-process-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tc-process-item:hover .tc-process-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
}

.tc-process-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.tc-process-item p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Technology CTA Banner */
.tc-cta-section {
    padding-bottom: 100px;
    background-color: var(--white);
}

.tc-cta-banner {
    background: linear-gradient(135deg, #e61818 0%, #a81010 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 80px 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tc-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tc-cta-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 15px;
    display: block;
}

.tc-cta-left h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
}

.tc-cta-right {
    text-align: right;
    max-width: 400px;
}

.tc-cta-right p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tc-cta-btn {
    background: var(--white);
    color: var(--primary-red);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tc-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

/* Services Section */

.tc-services-section {
    padding: 100px 0;
}

.tc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tc-subtitle-main {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tc-section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-text);
}

.tc-title-line {
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto 0;
}

.tc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tc-service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tc-service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.tc-service-icon {
    color: var(--primary-red);
    margin-bottom: 25px;
    background: #fdf2f2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.tc-service-card h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.tc-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tc-learn-more {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
}

/* Why Choose Section (Dark) */
.tc-why-section {
    background: var(--dark-bg);
    padding: 100px 0;
    color: #fff;
}

.tc-why-header {
    text-align: center;
    margin-bottom: 70px;
}

.tc-why-header h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
}

.tc-why-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tc-why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.tc-why-icon {
    color: var(--primary-red);
}

.tc-why-content h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tc-why-content p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
}

/* Process Section */
.tc-process-section {
    padding: 100px 0;
}

.tc-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.tc-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tc-step-num {
    font-size: 24px;
    font-weight: 900;
    color: #eee;
    margin-bottom: 10px;
}

.tc-step-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.tc-process-step:hover .tc-step-icon {
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(230, 24, 24, 0.1);
}

.tc-step-text h4 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.tc-step-text p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    padding: 0 15px;
}

.tc-process-arrow {
    flex-shrink: 0;
    padding-top: 45px;
    width: 40px;
}

/* Grow Bar */
.tc-grow-bar {
    background: var(--primary-red);
    padding: 60px 0;
    color: #fff;
}

.tc-grow-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-grow-text h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.tc-grow-text p {
    font-size: 16px;
    opacity: 0.9;
}

.tc-grow-btn {
    background: #fff;
    color: var(--primary-red);
    padding: 15px 35px;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tc-grow-btn:hover {
    background: var(--dark-bg);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .tc-hero-laptop {
        width: 100%;
        transform: none;
    }
    
    .tc-hero-laptop:hover {
        transform: none;
    }
}

@media (max-width: 1100px) {
    .tc-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .tc-cta-right {
        text-align: center;
    }

    .tc-cta-left h2 {
        font-size: 32px;
    }

    .tc-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .tc-hero-left {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .tc-hero-actions {
        justify-content: center;
    }

    .tc-hero-features {
        justify-items: center;
    }

    .tc-hero-right {
        width: 100%;
        justify-content: center;
    }

    .tc-hero-laptop {
        width: 80%;
    }

    .tc-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-services-grid { grid-template-columns: 1fr 1fr; }
    .tc-why-grid { flex-wrap: wrap; }
    .tc-why-item { flex: 0 0 45%; }
    .tc-stats-bar {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .tc-stat-item {
        flex: 0 0 30%;
    }

    .tc-stat-divider {
        display: none;
    }

    .tc-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-process-timeline {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .tc-process-timeline::before {
        display: none;
    }

    .tc-process-item {
        max-width: 400px;
    }
}




@media (max-width: 768px) {
    .tc-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 650px) {
    .tc-hero-left h1 { font-size: 36px; }
    .tc-categories-grid { grid-template-columns: 1fr; }
    .tc-services-grid { grid-template-columns: 1fr; }
    .tc-solutions-grid {
        grid-template-columns: 1fr;
    }
    .tc-stat-item {
        flex: 0 0 100%;
        justify-content: center;
    }
    .tc-why-item { flex: 0 0 100%; }
    .tc-grow-flex { flex-direction: column; gap: 30px; text-align: center; }
}

/* Why Choose Light Section */
.tc-why-light-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.tc-why-light-header {
    text-align: center;
    margin-bottom: 60px;
}

.tc-why-label {
    display: block;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tc-why-light-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.tc-title-line-red {
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
}

.tc-why-light-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.tc-why-light-item {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
}

.tc-why-light-icon {
    color: var(--primary-red);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.tc-why-light-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.tc-why-light-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .tc-why-light-grid {
        flex-wrap: wrap;
    }
    .tc-why-light-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .tc-why-light-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .tc-why-light-item {
        flex: 0 0 100%;
    }
}
