/* Hero Section */
.hero-section {
    position: relative;
    margin: 0 24px 24px 24px;
    border-radius: 24px;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    min-height: 580px;
    background-image:
        linear-gradient(266.58deg, rgba(0, 0, 0, 0.6) 18.24%, rgba(0, 0, 0, 0.85) 71%),
        url('../assets/Images/home_hero.webp');
    box-shadow: 0px 1px 2px 0px #FFFFFF1A inset;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    padding: 80px 0;
    width: 100%;
    max-width: 950px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease forwards;
}







.title {
    color: white;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.title span {
    color: var(--primary-orange);
}

.description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 850px;
    font-weight: 400;
}

.button-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.arrow {
    margin-left: 8px;
    font-weight: bold;
    font-size: 18px;
    vertical-align: middle;
}

/* Subtle animation for entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .title {
        font-size: 52px;
    }

    .hero-content {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .title {
        font-size: 42px;
    }

    .hero-content {
        padding: 40px;
    }
}

/* Track Record Section */
.track-record-section {
    padding: 60px 0;
    background-color: white;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.track-record-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.track-record-content {
    max-width: 650px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}



.track-record-image {
    position: absolute;
    right: -300px;
    top: -60px;
    z-index: 1;
}

.track-record-image img {
    width: 550px;
    height: auto;
}


.stats-card {
    background: linear-gradient(135deg, #1e1b30 0%, #152044 50%, #132448 100%);
    border-radius: 20px;
    padding: 56px 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1 1 180px;
    max-width: 250px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}


.orange-text {
    color: var(--primary-orange);
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Adjust grid for responsiveness */
@media (max-width: 1024px) {
    .stats-card {
        gap: 40px;
        padding: 48px 32px;
    }

    .track-record-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }
    
    .description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .button-group .btn-primary,
    .button-group .btn-outline-white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .stats-card {
        padding: 40px 24px;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .stats-card {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .stat-item {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
    }
    
    .stat-number {
        justify-content: center;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
}

.sticky-overlap-wrapper {
    position: relative;
    z-index: 1;
}

.who-we-are-section {
    margin: 0 24px 24px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #172445 100%);
    border-radius: 24px;
    padding: 80px 0;
    position: sticky;
    top: 24px;
    z-index: 1;
    overflow: hidden;
}

.who-we-are-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.who-we-are-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.who-we-are-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.who-we-are-image {
    width: 140%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    margin-right: -100px;
    margin-top: -40px;
    margin-bottom: -40px;
}

/* Helpers */
.text-white {
    color: white !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 992px) {
    .who-we-are-box {
        flex-direction: column;
        padding: 40px;
    }
    .process-timeline {
        flex-direction: column;
        gap: 48px;
    }
    .timeline-line {
        display: none;
    }
    .step-icon {
        height: auto;
        margin-bottom: 24px;
    }
    .process-step {
        padding: 0;
    }
    .who-we-are-image-wrapper {
        margin-top: 40px;
    }

    .who-we-are-image {
        width: 100%;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 60px 0;
    background-color: #fafbfc;
    position: relative;
    overflow: hidden;
}

.what-we-do-bg-circle {
    position: absolute;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    left: -200px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -100px;
}

.what-we-do-header {
    max-width: 800px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 90px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(45deg, #1B3A5C 0%, #1B3A5C 42.5%, #E8652C 65%, #E8652C 100%);
    z-index: 1;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 32px;
}

.step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step-blue {
    color: #5a7398;
}

.step-orange {
    color: var(--primary-orange);
}

.process-step .step-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.process-step .step-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .timeline-line {
        display: block;
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, #1B3A5C 0%, #1B3A5C 42.5%, #E8652C 65%, #E8652C 100%);
        z-index: 1;
    }

    .process-step {
        padding: 24px;
        align-items: center;
        text-align: center;
        background-color: #fafbfc;
        z-index: 2;
        width: 100%;
        max-width: 400px;
    }
    
    .step-icon {
        justify-content: center;
    }
}


/* Capabilities Section */
.capabilities-section {
    margin: 0 24px 24px 24px;
    background-color: #0b1328;
    border-radius: 24px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.capabilities-box {
    position: relative;
}

.capabilities-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 700px;
}

.capabilities-diagram {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
}

.diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-color: #0b1328;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
}

.diagram-center h4 {
    color: white;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.diagram-center span {
    color: #a0aec0;
    font-size: 10px;
}

.diagram-card {
    position: absolute;
    background-color: #121c3a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    width: 240px;
    z-index: 3;
    --x-trans: -50%;
    --y-trans: -50%;
    transform: translate(var(--x-trans), var(--y-trans));
    transition: all 0.3s ease;
    cursor: pointer;
}

.diagram-card.active {
    border: 1px solid var(--primary-orange);
    transform: translate(var(--x-trans), var(--y-trans)) scale(1.05);
    box-shadow: 0 15px 35px rgba(242, 104, 34, 0.15);
    z-index: 10;
}

.diagram-card .card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: white;
}

.diagram-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.diagram-card.active .dot {
    background-color: var(--primary-orange);
}

.diagram-card .dot-blue {
    background-color: #3b82f6;
}

.diagram-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.diagram-line {
    stroke: #5a7398;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    transition: all 0.3s ease;
    fill: none;
}

.diagram-line.active {
    stroke: #f26822;
    stroke-width: 2;
    stroke-dasharray: none;
}

/* Positions relative to the 900x500 box */
.pos-tl {
    top: 100px;
    left: 300px;
    --x-trans: -100%;
    --y-trans: -100%;
}

.pos-tr {
    top: 100px;
    left: 600px;
    --x-trans: 0%;
    --y-trans: -100%;
}

.pos-ml {
    top: 250px;
    left: 120px;
    --x-trans: -100%;
    --y-trans: -50%;
}

.pos-mr {
    top: 250px;
    left: 780px;
    --x-trans: 0%;
    --y-trans: -50%;
}

.pos-bl {
    top: 400px;
    left: 300px;
    --x-trans: -100%;
    --y-trans: 0%;
}

.pos-br {
    top: 400px;
    left: 600px;
    --x-trans: 0%;
    --y-trans: 0%;
}

@media (max-width: 992px) {
    .capabilities-diagram {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .diagram-lines {
        display: none;
    }

    .diagram-center {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }

    .diagram-card {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
    }
}


/* Security Section */
.security-section {
    padding: 60px 0;
    background-color: white;
}

.security-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.security-content {
    display: flex;
    gap: 40px;
}

.security-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-card {
    background-color: #0b1328;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.security-card:hover,
.security-card.active-hover {
    background-color: var(--primary-orange);
}

.security-card:hover .security-card-desc,
.security-card.active-hover .security-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

.security-card:hover .security-card-icon,
.security-card:hover .security-card-icon img,
.security-card.active-hover .security-card-icon,
.security-card.active-hover .security-card-icon img {
    color: white;
    filter: brightness(0) invert(1);
}

/* Active card overrides removed for uniform card layout */

.security-card-icon {
    color: var(--primary-orange);
    font-size: 20px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.security-card-text {
    flex: 1;
}

.security-card-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.security-card-desc {
    color: #a0aec0;
    font-size: 13px;
    line-height: 1.5;
}

.security-image-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: calc(100vh - 160px);
    max-height: 750px;
    min-height: 500px;
}

.security-image-wrapper {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    background-color: #0b1328;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s ease-in-out;
}

.security-image-wrapper img.fading {
    opacity: 0;
}

.security-audit-card {
    background-color: #0b1328;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-audit-icon {
    color: var(--primary-orange);
    font-size: 24px;
}

.security-audit-text h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.security-audit-text p {
    color: #a0aec0;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 992px) {
    .security-content {
        flex-direction: column;
    }
}


/* Technology Section */
.technology-section {
    margin: 0 24px 24px 24px;
    background-color: #0b1328;
    background: linear-gradient(180deg, #0b1328 0%, #152044 100%);
    border-radius: 24px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.technology-box {
    position: relative;
}

.technology-header {
    margin: 0 auto 80px auto;
    max-width: 800px;
    text-align: center;
}

.tech-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 100px auto;
    display: flex;
    flex-direction: column;
}

.tech-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 50%, transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
}

.tech-item {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    max-width: none;
}

.tech-item-right {
    align-self: flex-end;
    padding-left: 40px;
    text-align: left;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.tech-item-left {
    align-self: flex-start;
    padding-right: 40px;
    text-align: right;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.tech-item-left .tech-tags {
    justify-content: flex-end;
}

.tech-item-right.reveal-visible,
.tech-item-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.tech-item::after {
    content: "";
    position: absolute;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #5a7398;
    border-radius: 50%;
    z-index: 2;
}

.tech-item-left::after {
    right: -4px; /* Center 8px dot on 2px line */
}

.tech-item-right::after {
    left: -4px; /* Center 8px dot on 2px line */
}

.tech-item-number {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tech-item-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-item-desc {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 10px;
    color: white;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    background-color: rgba(255, 255, 255, 0.03);
}

/* Unified Platform Architecture */
.unified-architecture {
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.architecture-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}

.arch-layer {
    display: flex;
    align-items: center;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    gap: 40px;
    transition: all 0.3s ease;
}

.arch-layer:hover {
    border-color: var(--primary-orange);
    background-color: rgba(242, 104, 34, 0.05);
    box-shadow: 0 8px 32px rgba(242, 104, 34, 0.1);
}

.arch-layer:last-of-type {
    margin-bottom: 0;
}

.arch-layer-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 180px;
    flex-shrink: 0;
}

.arch-level {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.arch-layer-header h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.arch-desc {
    color: #a0aec0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
    max-width: none;
}

.arch-layer .tech-tags {
    justify-content: flex-end;
    width: 280px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .arch-layer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .arch-layer-header {
        width: 100%;
    }

    .arch-desc {
        border-left: none;
        padding-left: 0;
    }

    .arch-layer .tech-tags {
        width: 100%;
        justify-content: flex-start;
    }
}

.arch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.arch-footer-text {
    color: #a0aec0;
    font-size: 11px;
}

.arch-status {
    color: white;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-orange);
}

@media (max-width: 992px) {
    .tech-item-right {
        align-self: flex-start;
    }
}


/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: white;
}

.products-box {
    position: relative;
}

.products-header {
    margin-bottom: 60px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: #F9FAFB;
;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.product-card:hover {
    background-color: white !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--primary-orange) !important;
    transform: translateY(-8px) !important;
    transition-delay: 0s !important;
}

.product-icon {
    margin-bottom: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 66px;
}

.product-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: var(--primary-orange);
    font-weight: bold;
}

.products-action {
    text-align: center;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Industries Section */
.industries-section {
    margin: 0 24px 24px 24px;
    border-radius: 24px;
    padding: 60px 0;
    background-color: #0b1328;
}

.industries-box {
    background-color: #0b1328;
    border-radius: 24px;
    padding: 0;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.industries-title-area {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.industries-section.reveal.active .industries-title-area {
    opacity: 1;
    transform: translateY(0);
}

.industries-explore-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.industries-explore-text span {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: normal;
}

.industries-accordion {
    display: flex;
    background-color: #121c3a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
}

.industry-item {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.industry-item:last-child {
    border-right: none;
}

.industry-item-number {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 40px;
}

.industry-item-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.industry-item.active {
    flex: 10;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    background-color: #0b1328;
    border-left: 3px solid var(--primary-orange);
    cursor: default;
}

.industry-item.active .industry-item-number,
.industry-item.active .industry-item-text {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.active-industry-content {
    display: none;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.industry-item.active .active-industry-content {
    display: flex;
    width: 100%;
    padding: 40px;
    animation: fadeInContent 0.7s ease forwards;
}

.active-industry-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 40px;
}

.active-industry-header .industry-item-number {
    color: var(--primary-orange);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: left;
}

.active-industry-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.active-industry-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.active-industry-footer {
    margin-top: auto;
}

.active-industry-tags {
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.6;
    text-transform: uppercase;
}

.active-industry-link {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.active-industry-link:hover {
    opacity: 0.8;
}

.active-industry-image {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #050a15;
}

.active-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.industry-item:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.industries-action {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .industries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .industries-accordion {
        height: auto;
        flex-direction: column;
    }

    .industry-item {
        flex-direction: row;
        padding: 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        align-items: center;
    }

    .industry-item-number {
        margin-bottom: 0;
        margin-right: 20px;
        font-size: 16px;
    }

    .industry-item-text {
        writing-mode: horizontal-tb;
        transform: none;
        white-space: normal;
        font-size: 14px;
    }

    .industry-item:not(.active):hover .industry-item-text {
        transform: translateX(4px);
    }

    .industry-item.active {
        flex-direction: column;
        align-items: stretch;
        border-left: none;
        border-top: 3px solid var(--primary-orange);
        padding: 0;
    }

    .industry-item.active .active-industry-content {
        flex-direction: column;
        padding: 32px 24px;
    }

    .active-industry-header .industry-item-number {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .active-industry-title {
        font-size: 22px;
    }

    .active-industry-info {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .active-industry-image {
        flex: none;
        width: 100%;
        height: auto;
    }

    .active-industry-image img {
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* Government & Institutions Section */
.gov-institutions-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.gov-institutions-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.gov-inst-left {
    flex: 1;
}





.gov-inst-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 32px;
}

.gov-inst-title span {
    color: var(--primary-orange);
}

.gov-inst-desc-primary {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.gov-inst-desc-secondary {
    font-size: 14px;
    font-weight: 500;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.gov-inst-right {
    flex: 1;
}

.gov-inst-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gov-inst-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
}

.gov-inst-list li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.check-mark {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .gov-institutions-content {
        flex-direction: column;
        gap: 60px;
    }

    .gov-inst-desc-primary,
    .gov-inst-desc-secondary {
        max-width: 100%;
    }

    .gov-inst-right {
        width: 100%;
    }
}

/* Projects & Impact Section */
.projects-impact-section {
    border-radius: 24px;
    margin: 0 24px 24px 24px;
    padding: 60px 0;
    background-color: #0b1328;
}

.projects-header {
    margin-bottom: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    background-color: #121c3a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover,
.project-card.active {
    transform: translateY(-8px) !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    transition-delay: 0s !important;
}

.project-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.project-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.project-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.project-data-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.data-label {
    font-size: 11px;
    font-weight: 700;
    color: #5a7398;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 85px;
    flex-shrink: 0;
}

.data-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.highlight-orange {
    color: var(--primary-orange);
    font-weight: 600;
}

.highlight-white {
    color: white;
    font-weight: 700;
}

.project-bg-number {
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 120px;
    font-weight: 800;
    color: #2c252a;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.project-card:hover .project-bg-number,
.project-card.active .project-bg-number {
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Credentials Section */
.credentials-section {
    padding: 60px 0;
    background-color: white;
}

.credentials-header {
    margin-bottom: 60px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cred-card {
    background-color:#F9FAFB;
;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cred-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--primary-orange) !important;
    transition-delay: 0s !important;
}

.cred-card.active,
.cred-card:hover {
    background-color: #fff9f5;
    border-color: var(--primary-orange);
}

.cred-icon-bg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--primary-orange);
    opacity: 0.15;
    font-size: 72px;
    font-weight: 900;
    font-family: Arial, sans-serif;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cred-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cred-card.active .cred-title,
.cred-card:hover .cred-title {
    color: var(--primary-orange);
}

.cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cred-list li {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cred-list li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Connect Section */
/* CTA Connect Section */
.cta-section {
    margin: 0 24px 24px 24px;
    
    position: relative;
}

.cta-section .container {
    max-width: 100%;
    padding: 0;
}

.cta-box {
    margin: 0 24px;
    background: linear-gradient(135deg, #0b1328 0%, #151a26 50%, #0b1328 100%);
    border-radius: 24px;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-icon {
    position: absolute;
    opacity: 0.8;
}

.cta-icon-left {
    left: 0;
    bottom: 0;
    width: 600px;
    height: auto;
    /* Anchors the icon to the bottom-left corner so changing width scales it proportionally outwards */
    transform: translate(-30%, 30%) rotate(35deg);
}

.cta-icon-right {
    right: 0;
    top: 0;
    width: 320px;
    height: auto;
    /* Anchors the icon to the top-right corner */
    transform: translate(30%, -30%) rotate(25deg);
    align-items: center;
    gap: 20px;
}

.cta-btn {
    padding: 16px 32px;
    font-size: 15px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}



.cta-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-orange);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-title span {
    color: var(--primary-orange);
}

.cta-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}


/* ================================
   SECTION ANIMATIONS
================================ */

/* Hero */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content 
.hero-content .title { animation-delay: 0.3s; }
.hero-content .description { animation-delay: 0.45s; }
.hero-content .button-group { animation-delay: 0.6s; }
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Headings */
.section-subtitle {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active .section-subtitle,
.track-record-section.active .section-subtitle,
.what-we-do-section.active .section-subtitle,
.capabilities-section.active .section-subtitle,
.security-section.active .section-subtitle,
.projects-impact-section.active .section-subtitle,
.credentials-section.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}
.reveal.active .section-title,
.track-record-section.active .section-title,
.what-we-do-section.active .section-title,
.capabilities-section.active .section-title,
.security-section.active .section-title,
.projects-impact-section.active .section-title,
.credentials-section.active .section-title {
    animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes titleReveal {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Track Record */
.stats-card .stat-item {
    opacity: 0;
    transform: translateY(30px);
}
.track-record-section.active .stat-item { animation: statReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.track-record-section.active .stat-item:nth-child(1) { animation-delay: 0.1s; }
.track-record-section.active .stat-item:nth-child(2) { animation-delay: 0.18s; }
.track-record-section.active .stat-item:nth-child(3) { animation-delay: 0.26s; }
.track-record-section.active .stat-item:nth-child(4) { animation-delay: 0.34s; }
.track-record-section.active .stat-item:nth-child(5) { animation-delay: 0.42s; }
.track-record-section.active .stat-item:nth-child(6) { animation-delay: 0.5s; }
@keyframes statReveal { to { opacity: 1; transform: translateY(0); } }

/* What We Do Process */
.process-step {
    opacity: 0;
    transform: translateY(40px);
}
.what-we-do-section.active .process-step { animation: processReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.what-we-do-section.active .process-step:nth-child(2) { animation-delay: 0.1s; }
.what-we-do-section.active .process-step:nth-child(3) { animation-delay: 0.25s; }
.what-we-do-section.active .process-step:nth-child(4) { animation-delay: 0.4s; }
.what-we-do-section.active .process-step:nth-child(5) { animation-delay: 0.55s; }
@keyframes processReveal { to { opacity: 1; transform: translateY(0); } }

/* Capabilities Diagram */
.diagram-center {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.capabilities-section.active .diagram-center { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.diagram-card {
    opacity: 0;
    transform: translate(var(--x-trans), var(--y-trans)) scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.capabilities-section.active .diagram-card { opacity: 1; transform: translate(var(--x-trans), var(--y-trans)) scale(1); }
.capabilities-section.active .pos-tl { transition-delay: 0.15s; }
.capabilities-section.active .pos-tr { transition-delay: 0.25s; }
.capabilities-section.active .pos-ml { transition-delay: 0.35s; }
.capabilities-section.active .pos-mr { transition-delay: 0.45s; }
.capabilities-section.active .pos-bl { transition-delay: 0.55s; }
.capabilities-section.active .pos-br { transition-delay: 0.65s; }
.diagram-lines line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.2s ease;
}
.capabilities-section.active .diagram-lines line { stroke-dashoffset: 0; }

/* Security */
.security-card {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.security-section.active .security-card { opacity: 1; transform: translateX(0); }
.security-section.active .security-card:nth-child(1) { transition-delay: 0.1s; }
.security-section.active .security-card:nth-child(2) { transition-delay: 0.18s; }
.security-section.active .security-card:nth-child(3) { transition-delay: 0.26s; }
.security-section.active .security-card:nth-child(4) { transition-delay: 0.34s; }
.security-section.active .security-card:nth-child(5) { transition-delay: 0.42s; }
.security-section.active .security-card:nth-child(6) { transition-delay: 0.50s; }

/* Tech Timeline */
.tech-item-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tech-item-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tech-item-left.reveal-visible,
.tech-item-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Products Hover */
.product-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.product-icon { transition: transform 0.35s ease, background-color 0.35s ease; }
.product-card:hover .product-icon { transform: translateY(-3px) scale(1.05); }

/* Projects & Impact */
.project-card {
    opacity: 0;
    transform: translateY(35px);
}
.projects-impact-section.active .project-card { animation: projectReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.projects-impact-section.active .project-card:nth-child(1) { animation-delay: 0.05s; }
.projects-impact-section.active .project-card:nth-child(2) { animation-delay: 0.15s; }
.projects-impact-section.active .project-card:nth-child(3) { animation-delay: 0.25s; }
.projects-impact-section.active .project-card:nth-child(4) { animation-delay: 0.35s; }
.projects-impact-section.active .project-card:nth-child(5) { animation-delay: 0.45s; }
.projects-impact-section.active .project-card:nth-child(6) { animation-delay: 0.55s; }
@keyframes projectReveal { to { opacity: 1; transform: translateY(0); } }

/* Credentials */
.cred-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.credentials-section.active .cred-card { opacity: 1; transform: translateY(0); }
.credentials-section.active .cred-card:nth-child(1) { transition-delay: 0.05s; }
.credentials-section.active .cred-card:nth-child(2) { transition-delay: 0.12s; }
.credentials-section.active .cred-card:nth-child(3) { transition-delay: 0.19s; }
.credentials-section.active .cred-card:nth-child(4) { transition-delay: 0.26s; }
.credentials-section.active .cred-card:nth-child(5) { transition-delay: 0.33s; }
.credentials-section.active .cred-card:nth-child(6) { transition-delay: 0.40s; }

/* CTA Float */
.cta-icon-left {
    --base-trans: translate(-30%, 30%) rotate(35deg);
    animation: floatingIcon 5s ease-in-out infinite;
}
.cta-icon-right {
    --base-trans: translate(30%, -30%) rotate(25deg);
    animation: floatingIcon 5s ease-in-out infinite;
    animation-delay: -2.5s;
}


.cta-title span {
    color: var(--primary-orange);
}

.cta-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}


/* ================================
   SECTION ANIMATIONS
================================ */

/* Hero */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content 
.hero-content .title { animation-delay: 0.3s; }
.hero-content .description { animation-delay: 0.45s; }
.hero-content .button-group { animation-delay: 0.6s; }
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Headings */
.section-subtitle {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active .section-subtitle,
.track-record-section.active .section-subtitle,
.what-we-do-section.active .section-subtitle,
.capabilities-section.active .section-subtitle,
.security-section.active .section-subtitle,
.projects-impact-section.active .section-subtitle,
.credentials-section.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}
.reveal.active .section-title,
.track-record-section.active .section-title,
.what-we-do-section.active .section-title,
.capabilities-section.active .section-title,
.security-section.active .section-title,
.projects-impact-section.active .section-title,
.credentials-section.active .section-title {
    animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes titleReveal {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Track Record */
.stats-card .stat-item {
    opacity: 0;
    transform: translateY(30px);
}
.track-record-section.active .stat-item { animation: statReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.track-record-section.active .stat-item:nth-child(1) { animation-delay: 0.1s; }
.track-record-section.active .stat-item:nth-child(2) { animation-delay: 0.18s; }
.track-record-section.active .stat-item:nth-child(3) { animation-delay: 0.26s; }
.track-record-section.active .stat-item:nth-child(4) { animation-delay: 0.34s; }
.track-record-section.active .stat-item:nth-child(5) { animation-delay: 0.42s; }
.track-record-section.active .stat-item:nth-child(6) { animation-delay: 0.5s; }
@keyframes statReveal { to { opacity: 1; transform: translateY(0); } }

/* What We Do Process */
.process-step {
    opacity: 0;
    transform: translateY(40px);
}
.what-we-do-section.active .process-step { animation: processReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.what-we-do-section.active .process-step:nth-child(2) { animation-delay: 0.1s; }
.what-we-do-section.active .process-step:nth-child(3) { animation-delay: 0.25s; }
.what-we-do-section.active .process-step:nth-child(4) { animation-delay: 0.4s; }
.what-we-do-section.active .process-step:nth-child(5) { animation-delay: 0.55s; }
@keyframes processReveal { to { opacity: 1; transform: translateY(0); } }

/* Capabilities Diagram */
.diagram-center {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.capabilities-section.active .diagram-center { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.diagram-card {
    opacity: 0;
    transform: translate(var(--x-trans), var(--y-trans)) scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.capabilities-section.active .diagram-card { opacity: 1; transform: translate(var(--x-trans), var(--y-trans)) scale(1); }
.capabilities-section.active .pos-tl { transition-delay: 0.15s; }
.capabilities-section.active .pos-tr { transition-delay: 0.25s; }
.capabilities-section.active .pos-ml { transition-delay: 0.35s; }
.capabilities-section.active .pos-mr { transition-delay: 0.45s; }
.capabilities-section.active .pos-bl { transition-delay: 0.55s; }
.capabilities-section.active .pos-br { transition-delay: 0.65s; }
.diagram-lines line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.2s ease;
}
.capabilities-section.active .diagram-lines line { stroke-dashoffset: 0; }

/* Security */
.security-card {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.security-section.active .security-card { opacity: 1; transform: translateX(0); }
.security-section.active .security-card:nth-child(1) { transition-delay: 0.1s; }
.security-section.active .security-card:nth-child(2) { transition-delay: 0.18s; }
.security-section.active .security-card:nth-child(3) { transition-delay: 0.26s; }
.security-section.active .security-card:nth-child(4) { transition-delay: 0.34s; }
.security-section.active .security-card:nth-child(5) { transition-delay: 0.42s; }
.security-section.active .security-card:nth-child(6) { transition-delay: 0.50s; }

/* Tech Timeline */
.tech-item-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tech-item-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tech-item-left.reveal-visible,
.tech-item-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Products Hover */
.product-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.product-icon { transition: transform 0.35s ease, background-color 0.35s ease; }
.product-card:hover .product-icon { transform: translateY(-3px) scale(1.05); }

/* Projects & Impact */
.project-card {
    opacity: 0;
    transform: translateY(35px);
}
.projects-impact-section.active .project-card { animation: projectReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.projects-impact-section.active .project-card:nth-child(1) { animation-delay: 0.05s; }
.projects-impact-section.active .project-card:nth-child(2) { animation-delay: 0.15s; }
.projects-impact-section.active .project-card:nth-child(3) { animation-delay: 0.25s; }
.projects-impact-section.active .project-card:nth-child(4) { animation-delay: 0.35s; }
.projects-impact-section.active .project-card:nth-child(5) { animation-delay: 0.45s; }
.projects-impact-section.active .project-card:nth-child(6) { animation-delay: 0.55s; }
@keyframes projectReveal { to { opacity: 1; transform: translateY(0); } }

/* Credentials */
.cred-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.credentials-section.active .cred-card { opacity: 1; transform: translateY(0); }
.credentials-section.active .cred-card:nth-child(1) { transition-delay: 0.05s; }
.credentials-section.active .cred-card:nth-child(2) { transition-delay: 0.12s; }
.credentials-section.active .cred-card:nth-child(3) { transition-delay: 0.19s; }
.credentials-section.active .cred-card:nth-child(4) { transition-delay: 0.26s; }
.credentials-section.active .cred-card:nth-child(5) { transition-delay: 0.33s; }
.credentials-section.active .cred-card:nth-child(6) { transition-delay: 0.40s; }

/* CTA Float */
.cta-icon-left {
    --base-trans: translate(-30%, 30%) rotate(35deg);
    animation: floatingIcon 5s ease-in-out infinite;
}
.cta-icon-right {
    --base-trans: translate(30%, -30%) rotate(25deg);
    animation: floatingIcon 5s ease-in-out infinite;
    animation-delay: -2.5s;
}
@keyframes floatingIcon {
    0%, 100% { transform: var(--base-trans) translateY(0); }
    50% { transform: var(--base-trans) translateY(-12px); }
}

/* Industries Micro-interactions */
.industry-item {
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-item:not(.active):hover { background: rgba(255, 255, 255, 0.05); }
.industry-item-number, .industry-item-text { transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease; }
.industry-item:not(.active):hover .industry-item-number { color: var(--primary-orange); transform: translateX(4px); }
.industry-item:not(.active):hover .industry-item-text { transform: rotate(180deg) translateY(4px); color: var(--primary-orange); }

.active-industry-image { overflow: hidden; }
.active-industry-image img { transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease; }
.industry-item.active .active-industry-image img { animation: industryImageReveal 0.9s ease both; }
@keyframes industryImageReveal {
    from { opacity: 0; transform: scale(1.08); }
    to { opacity: 1; transform: scale(1); }
}

/* Fix diagram animations for mobile */
@media (max-width: 992px) {
    .capabilities-section.active .diagram-center,
    .capabilities-section.active .diagram-card {
        transform: none !important;
        opacity: 1 !important;
    }
    .diagram-center,
    .diagram-card {
        transform: none !important;
    }
}

/* Fix Technology Timeline for mobile and tablet */
@media (max-width: 992px) {
    .tech-timeline-line {
        left: 20px;
        transform: none;
    }
    
    .tech-item,
    .tech-item-left,
    .tech-item-right {
        width: 100%;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .tech-item-left .tech-tags,
    .tech-item-right .tech-tags {
        justify-content: flex-start;
    }

    .tech-item-left::after,
    .tech-item-right::after {
        left: 17px; /* Center 8px dot on 2px line positioned at 20px */
        right: auto;
    }
}
