/*======================================
    Semiconductor Hero White Section
======================================*/
.semi-hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    z-index: 1;
}

/* Background Grid */
.semi-hero-section .semi-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 140, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 140, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -2;
}

/* Circuit Glow */
.semi-hero-section .semi-hero-section::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    background: radial-gradient(circle,
            rgba(0, 140, 255, 0.10) 0%,
            rgba(0, 140, 255, 0.03) 35%,
            transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: -1;
}

/* Content */
.semi-hero-section .semi-hero-content {
    max-width: 1050px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.semi-hero-section .semi-hero-content h1 {
    /* font-size: 78px; */
    line-height: 1.1;
    font-weight: 800;
    color: #0a1733;
    margin-bottom: 35px;
}

.semi-hero-section .semi-hero-content h1 span {
    display: block;
    color: var(--theme);
    background: linear-gradient(90deg, #00a2ff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.semi-hero-section .semi-hero-content p {
    /* font-size: 22px; */
    line-height: 1.9;
    color: #5f6b85;
    max-width: 950px;
    margin: auto;
}

/* Buttons */
.semi-hero-section .semi-btn-group {
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Main Button */
.semi-hero-section .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 42px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, #00a2ff, #0077ff); */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all .4s ease;
    box-shadow: 0 15px 35px rgba(0, 140, 255, 0.25);
}

.semi-hero-section .theme-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 140, 255, 0.35);
    color: #fff;
}

/* Border Button */
.semi-hero-section .border-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 42px;
    border-radius: 14px;
    border: 2px solid rgba(0, 140, 255, 0.18);
    color: var(--theme);
    font-size: 18px;
    font-weight: 700;
    transition: all .4s ease;
    background: #fff;
}

.semi-hero-section .border-btn:hover {
    background: var(--theme);
    color: #fff;
    transform: translateY(-6px);
}

/* Animated Circles */
.semi-hero-section .semi-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    z-index: -1;
}

.semi-hero-section .semi-circle-1 {
    width: 420px;
    height: 420px;
    background: rgba(0, 162, 255, 0.12);
    top: -120px;
    left: -120px;
    animation: moveCircle 10s linear infinite alternate;
}

.semi-hero-section .semi-circle-2 {
    width: 320px;
    height: 320px;
    background: rgba(0, 119, 255, 0.10);
    bottom: -100px;
    right: -80px;
    animation: moveCircle2 12s linear infinite alternate;
}

/* Animated Line */
.semi-hero-section .semi-line {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px dashed rgba(0, 140, 255, 0.10);
    border-radius: 50%;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    animation: rotateCircle 25s linear infinite;
}

/* Animations */
@keyframes rotateCircle {
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 30px);
    }
}

@keyframes moveCircle2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -20px);
    }
}

/* Responsive */
@media (max-width: 991px) {

    .semi-hero-section {
        padding: 130px 0 110px;
    }

    .semi-hero-section .semi-hero-content h1 {
        font-size: 52px;
    }

    .semi-hero-section .semi-hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    .semi-hero-section .semi-hero-content h1 {
        font-size: 38px;
    }

    .semi-hero-section .semi-hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .semi-hero-section .semi-btn-group {
        flex-direction: column;
    }

    .semi-hero-section .theme-btn,
    .semi-hero-section .border-btn {
        width: 100%;
        justify-content: center;
    }
}

/*======================================
 Service Tabs Section
======================================*/
.service-tabs-section {
    padding: 10px 0;
    background: #f3f4f7;
    position: relative;
    overflow: hidden;
}

/* Wrapper */
.service-tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* Tab Item */
.service-tab-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 16px;
    background: transparent;
    color: #8d92a3;
    /* font-size: 22px; */
    font-weight: 600;
    transition: all .35s ease;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.service-tab-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--theme), #020b3a);
    opacity: 0;
    transition: all .35s ease;
    z-index: -1;
    border-radius: 16px;
}

/* Active */
.service-tab-item.active {
    color: #fff;
    box-shadow: 0 10px 30px rgba(122, 44, 255, .25);
}

.service-tab-item.active::before {
    opacity: 1;
}

/* Hover */
.service-tab-item:hover {
    transform: translateY(-4px);
    color: #fff;
}

.service-tab-item:hover::before {
    opacity: 1;
}

/* Icon */
.service-tab-item i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {

    .service-tab-item {
        font-size: 18px;
        padding: 16px 24px;
    }
}

@media (max-width: 767px) {
    .service-tabs-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .service-tab-item {
        justify-content: center;
        width: 100%;
        font-size: 16px;
        padding: 15px 20px;
    }
}

/*======================================
 ASIC SERVICE SECTION
======================================*/
.asic-service-section {
    position: relative;
    padding: 90px 0;
    background:
        linear-gradient(180deg,
            #01040c 0%,
            #020814 45%,
            #010611 100%);
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND EFFECTS */
.asic-service-section::before {
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(22, 111, 211, .18) 0%,
            rgba(22, 111, 211, .04) 45%,
            transparent 75%);
    top: -260px;
    right: -180px;
    z-index: -2;
    animation: glowMove 8s ease-in-out infinite alternate;
}

.asic-service-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: -3;
}

/* =========================
   HEADER
========================= */

.asic-service-section .asic-header {
    max-width: 950px;
    margin-bottom: 70px;
}

.asic-service-section .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.asic-service-section .badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            var(--theme),
            #0d4fa3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(22, 111, 211, .35);
}

.asic-service-section .badge-content span {
    color: var(--theme);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.asic-service-section .asic-header h2 {
    /* font-size: 56px; */
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.asic-service-section .asic-header p {
    color: rgba(255, 255, 255, .72);
    /* font-size: 17px; */
    line-height: 1.9;
    max-width: 860px;
}

/* =========================
   WHAT WE DO
========================= */

.asic-service-section .what-we-do {
    margin-bottom: 50px;
}

.asic-service-section .what-we-do h3,
.asic-service-section .value-delivered h3 {
    /* font-size: 34px; */
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
}

.asic-service-section .what-we-do p,
.asic-service-section .value-delivered>p {
    color: rgba(255, 255, 255, .65);
    /* font-size: 16px; */
    line-height: 1.8;
    max-width: 700px;
}

/* =========================
   SERVICE CARD
========================= */

.asic-service-section .service-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            rgba(8, 14, 28, .98),
            rgba(3, 8, 22, .99));
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: all .45s ease;
    z-index: 1;
}

/* Animated Border */

.asic-service-section .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            var(--theme),
            rgba(255, 255, 255, .05),
            #00d9ff,
            var(--theme));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .35;
    transition: .5s;
}

/* Glow */

.asic-service-section .service-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle,
            rgba(0, 217, 255, .25) 0%,
            transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    transition: .5s;
}

.asic-service-section .service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .12);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45),
        0 0 30px rgba(0, 217, 255, .14);
}

.asic-service-section .service-card:hover::before {
    opacity: 1;
}

.asic-service-section .service-card:hover::after {
    transform: scale(1.3);
    opacity: .95;
}

/* =========================
   CARD TOP
========================= */

.asic-service-section .card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.asic-service-section .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--theme),
            #00d9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(0, 217, 255, .2);
    transition: .4s;
}

.asic-service-section .service-card:hover .card-icon {
    transform: rotate(-8deg) scale(1.08);
}

.asic-service-section .card-top h4 {
    color: #fff;
    /* font-size: 22px; */
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

/* =========================
   LIST STYLE
========================= */

.asic-service-section .service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.asic-service-section .service-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.8;
    font-size: 15px;
    transition: .3s;
}

/* DOT */

.asic-service-section .service-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--theme),
            #00d9ff);
    box-shadow: 0 0 14px rgba(0, 217, 255, .7);
}

.asic-service-section .service-card:hover ul li {
    color: rgba(255, 255, 255, .96);
}

/* =========================
   VALUE DELIVERED
========================= */

.asic-service-section .value-delivered {
    margin-top: 90px;
}

.asic-service-section .value-card {
    position: relative;
    display: flex;
    gap: 18px;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            rgba(8, 14, 28, .98),
            rgba(3, 8, 22, .99));
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: all .45s ease;
    z-index: 1;
}

/* Animated Border */

.asic-service-section .value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            var(--theme),
            rgba(255, 255, 255, .05),
            #00d9ff,
            var(--theme));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .35;
    transition: .5s;
}

/* Glow */

.asic-service-section .value-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
            rgba(0, 217, 255, .18) 0%,
            transparent 70%);
    top: -80px;
    right: -80px;
    transition: .5s;
    z-index: -1;
}

.asic-service-section .value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .12);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45),
        0 0 30px rgba(0, 217, 255, .14);
}

.asic-service-section .value-card:hover::before {
    opacity: 1;
}

.asic-service-section .value-card:hover::after {
    transform: scale(1.25);
}

.asic-service-section .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--theme),
            #00d9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(0, 217, 255, .18);
    transition: .4s;
}

.asic-service-section .value-card:hover .value-icon {
    transform: rotate(-8deg) scale(1.08);
}

.asic-service-section .value-content h5 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.asic-service-section .value-content p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* =========================
   ANIMATION
========================= */

@keyframes glowMove {

    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(60px);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .asic-service-section .asic-header h2 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {

    .asic-service-section {
        padding: 80px 0;
    }

    .asic-service-section .asic-header h2 {
        font-size: 40px;
    }

    .asic-service-section .service-card,
    .asic-service-section .value-card {
        padding: 26px;
    }
}

@media (max-width: 767px) {

    .asic-service-section {
        padding: 70px 0;
    }

    .asic-service-section .asic-header h2 {
        font-size: 30px;
    }

    .asic-service-section .asic-header p {
        font-size: 15px;
    }

    .asic-service-section .what-we-do h3,
    .asic-service-section .value-delivered h3 {
        font-size: 28px;
    }

    .asic-service-section .card-top h4,
    .asic-service-section .value-content h5 {
        font-size: 19px;
    }

    .asic-service-section .service-card,
    .asic-service-section .value-card {
        padding: 24px 20px;
    }

    .asic-service-section .value-card {
        flex-direction: column;
    }

    .asic-service-section .card-icon,
    .asic-service-section .value-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 18px;
    }
}

/*======================================
    FPGA WHITE MODERN SECTION
======================================*/
.fpga-service-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f5f8ff 45%,
            #ffffff 100%);
}

/* Animated Glow */
.fpga-service-section::before {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    top: -300px;
    right: -200px;

    background:
        radial-gradient(circle,
            rgba(0, 140, 255, .16) 0%,
            rgba(0, 140, 255, .05) 35%,
            transparent 70%);

    animation: floatingGlow 10s ease-in-out infinite alternate;
}

/* Animated Grid */
.fpga-service-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 140, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 140, 255, .04) 1px, transparent 1px);

    background-size: 70px 70px;

    animation: gridMove 20s linear infinite;
}

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

/* HEADER */
.fpga-service-section .fpga-header {
    max-width: 950px;
    margin-bottom: 70px;
}

.fpga-service-section .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;

    animation: badgeFloat 4s ease-in-out infinite;
}

.fpga-service-section .badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;

    background:
        linear-gradient(135deg, #00a2ff, #0066ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 140, 255, .25);
}

.fpga-service-section .badge-icon::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;

    background:
        conic-gradient(transparent,
            rgba(255, 255, 255, .8),
            transparent);

    animation: rotateGlow 4s linear infinite;
}

.fpga-service-section .badge-icon i {
    position: relative;
    z-index: 2;
}

.fpga-service-section .badge-content span {
    color: #0077ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.fpga-service-section .fpga-header h2 {
    /* font-size: 56px; */
    line-height: 1.15;
    font-weight: 800;
    color: #08142b;
    margin-bottom: 28px;
}

.fpga-service-section .fpga-header p {
    color: #5d6780;
    /* font-size: 18px; */
    line-height: 1.9;
}

/* WHAT WE DO */
.fpga-service-section .what-we-do {
    margin-bottom: 50px;
}

.fpga-service-section .what-we-do h3 {
    color: #08142b;
    /* font-size: 32px; */
    margin-bottom: 12px;
}

.fpga-service-section .what-we-do p {
    color: #68748d;
}

/* FPGA CARD */
.fpga-service-section .fpga-card {
    position: relative;
    height: 100%;
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(0, 140, 255, .10);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all .45s ease;
}

/* Hover */
.fpga-service-section .fpga-card:hover {
    transform:
        translateY(-12px) rotateX(3deg) rotateY(-3deg);

    border-color: rgba(0, 140, 255, .35);

    box-shadow:
        0 25px 60px rgba(0, 140, 255, .14);
}

/* Glow */
.fpga-service-section .fpga-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(0, 140, 255, .08),
            transparent 60%);

    opacity: 0;
    transition: .4s;
}

.fpga-service-section .fpga-card:hover::before {
    opacity: 1;
}

/* Border Animation */
.fpga-service-section .fpga-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;

    background:
        linear-gradient(130deg,
            transparent,
            rgba(0, 140, 255, .8),
            transparent);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: .4s;
}

.fpga-service-section .fpga-card:hover::after {
    opacity: 1;
}

/* CARD TOP */
.fpga-service-section .card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.fpga-service-section .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;

    background:
        linear-gradient(135deg, #00a2ff, #0066ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;

    position: relative;
    overflow: hidden;

    transition: .4s;
}

.fpga-service-section .card-icon::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;

    background:
        conic-gradient(transparent,
            hsla(0, 100%, 99%, 0.902),
            transparent);

    animation: rotateGlow 6s linear infinite;
}

.fpga-service-section .card-icon i {
    position: relative;
    z-index: 2;
}

.fpga-service-section .fpga-card:hover .card-icon {
    transform: rotate(10deg) scale(1.08);
}

.fpga-service-section .card-top h4 {
    color: #08142b;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* LIST */
.fpga-service-section .fpga-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fpga-service-section .fpga-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;

    color: #5d6780;

    font-size: 15px;
    line-height: 1.8;

    transition: .3s;
}

.fpga-service-section .fpga-card ul li:hover {
    color: #08142b;
    transform: translateX(8px);
}

.fpga-service-section .fpga-card ul li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 11px;

    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: #00a2ff;

    box-shadow:
        0 0 10px #00a2ff;

    animation: dotPulse 2s infinite;
}

/* VALUE DELIVERED */
.fpga-service-section .value-delivered {
    margin-top: 90px;
}

.fpga-service-section .value-delivered h3 {
    color: #08142b;
    /* font-size: 42px; */
    font-weight: 800;
    margin-bottom: 14px;
}

.fpga-service-section .value-delivered>p {
    color: #68748d;
    /* font-size: 18px; */
}

/* VALUE CARD */
.fpga-service-section .value-card {
    position: relative;

    display: flex;
    gap: 22px;

    padding: 30px;
    height: 100%;

    border-radius: 22px;

    background: rgba(255, 255, 255, .75);

    border: 1px solid rgba(0, 140, 255, .10);

    backdrop-filter: blur(16px);

    overflow: hidden;

    transition: .45s;
}

.fpga-service-section .value-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0, 140, 255, .35);

    box-shadow:
        0 20px 50px rgba(0, 140, 255, .14);
}

.fpga-service-section .value-card::after {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .8),
            transparent);

    transform: skewX(-25deg);
}

.fpga-service-section .value-card:hover::after {
    animation: lightSweep 1s ease;
}

.fpga-service-section .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #00a2ff, #0066ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;

    transition: .4s;
}

.fpga-service-section .value-card:hover .value-icon {
    transform: scale(1.12) rotate(8deg);
}

.fpga-service-section .value-content h5 {
    color: #08142b;
    /* font-size: 26px; */
    margin-bottom: 12px;
}

.fpga-service-section .value-content p {
    color: #68748d;
    /* font-size: 16px; */
    line-height: 1.8;
    margin: 0;
}

/* ANIMATIONS */
@keyframes floatingGlow {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(60px) scale(1.1);
    }
}

@keyframes gridMove {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(80px);
    }
}

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

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .6;
    }
}

@keyframes lightSweep {
    100% {
        left: 150%;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .fpga-service-section .fpga-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .fpga-service-section .fpga-service-section {
        padding: 90px 0;
    }

    .fpga-service-section .fpga-header h2 {
        font-size: 32px;
    }

    .fpga-service-section .fpga-header p {
        font-size: 15px;
    }

    .fpga-service-section .fpga-card {
        padding: 26px;
    }

    .fpga-service-section .card-top h4 {
        font-size: 18px;
    }

    .fpga-service-section .value-delivered h3 {
        font-size: 32px;
    }

    .fpga-service-section .value-card {
        flex-direction: column;
        padding: 26px;
    }

    .fpga-service-section .value-content h5 {
        font-size: 20px;
    }
}

/* =========================================================
 ANALOG & MIXED SIGNAL SECTION
========================================================= */
:root {
    --theme-primary: #1548A8;
    --theme-secondary: #0d6efd;
    --theme-dark: #020b3a;
    --theme-light: #4ea1ff;
    --theme-glow: #3b82ff;
}

.analog-service-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(21, 72, 168, .12),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(13, 110, 253, .10),
            transparent 35%),

        linear-gradient(180deg,
            #02040b 0%,
            #06111f 45%,
            #01030a 100%);
}

/* BACKGROUND EFFECT */
.analog-service-section::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    top: -400px;
    left: -300px;

    background:
        conic-gradient(from 180deg,
            rgba(78, 161, 255, .12),
            rgba(21, 72, 168, .10),
            transparent,
            rgba(78, 161, 255, .12));

    border-radius: 50%;
    filter: blur(80px);

    animation: auroraMove 18s linear infinite;
}

.analog-service-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(78, 161, 255, .03) 121px,
            transparent 122px);

    animation: neonLines 10s linear infinite;
}

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

/* HEADER */
.analog-service-section .analog-header {
    max-width: 950px;
    margin-bottom: 70px;
}

/* BADGE */
.analog-service-section .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.analog-service-section .badge-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 15px;

    background:
        linear-gradient(135deg,
            var(--theme-primary),
            var(--theme-dark));

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 35px rgba(21, 72, 168, .25),
        inset 0 2px 8px rgba(255, 255, 255, .25);

    animation: floatingIcon 4s ease-in-out infinite;
}

.analog-service-section .badge-icon::after {
    content: "";
    position: absolute;

    top: -120%;
    left: -40%;

    width: 70%;
    height: 300%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transform: rotate(25deg);

    animation: shineMove 4s linear infinite;
}

.analog-service-section .badge-icon i {
    position: relative;
    z-index: 2;

    color: #fff;
    font-size: 24px;

    animation: iconPulse 2s ease-in-out infinite;
}

.analog-service-section .badge-content span {
    position: relative;
    display: inline-block;

    color: #4ea1ff;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;

    animation: textGlow 2.5s ease-in-out infinite;
}

/* TITLE */
.analog-service-section .analog-header h2 {
    line-height: 1.12;
    font-weight: 800;

    margin-bottom: 28px;

    background:
        linear-gradient(90deg,
            #ffffff,
            #4ea1ff,
            #1548A8,
            #ffffff);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: textFlow 6s linear infinite;
}

.analog-service-section .analog-header p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
}

/* WHAT WE DO */
.analog-service-section .what-we-do {
    margin-bottom: 50px;
}

.analog-service-section .what-we-do h3 {
    color: #fff;
    margin-bottom: 12px;
}

.analog-service-section .what-we-do p {
    color: rgba(255, 255, 255, .65);
}

/* CARD */
.analog-service-section .analog-card {
    position: relative;
    height: 100%;
    padding: 34px;
    border-radius: 24px;

    background:
        linear-gradient(180deg,
            rgba(10, 16, 32, .88),
            rgba(5, 10, 22, .95));

    backdrop-filter: blur(14px);

    border: 1px solid rgba(78, 161, 255, .12);

    overflow: hidden;

    transition: all .45s ease;

    transform-style: preserve-3d;
}

.analog-service-section .analog-card:hover {
    /* transform:perspective(1000px) rotateX(6deg) rotateY(-6deg) translateY(-16px) scale(1.02); */
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(21, 72, 168, .25),
        inset 0 0 20px rgba(255, 255, 255, .03);
}

/* BORDER */
.analog-service-section .analog-card::before {
    content: "";
    position: absolute;
    inset: -2px;

    border-radius: 24px;

    background:
        linear-gradient(130deg,
            transparent,
            rgba(78, 161, 255, .8),
            rgba(21, 72, 168, .8),
            transparent);

    background-size: 300% 300%;

    animation: borderFlow 6s linear infinite;

    opacity: 0;
    transition: .4s;

    z-index: 0;
}

.analog-service-section .analog-card:hover::before {
    opacity: 1;
}

.analog-service-section .analog-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 22px;

    background:
        linear-gradient(180deg,
            rgba(10, 16, 32, .96),
            rgba(5, 10, 22, .98));

    z-index: 1;
}

.analog-service-section .analog-card>* {
    position: relative;
    z-index: 2;
}

/* CARD TOP */
.analog-service-section .card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.analog-service-section .card-icon {
    width: 50px;
    height: 50px;
    max-width: 50px;
    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #1548A8,
            #0d6efd);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;

    position: relative;
    overflow: hidden;

    transition: all .5s ease;
}

.analog-service-section .card-icon::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .6),
            transparent 70%);

    animation: pulseIcon 2.5s infinite;
}

.analog-service-section .card-icon i {
    position: relative;
    z-index: 2;
}

.analog-service-section .analog-card:hover .card-icon {
    transform:
        translateY(-6px) rotate(12deg) scale(1.1);

    box-shadow:
        0 15px 35px rgba(21, 72, 168, .35);
}

/* TITLE */
.analog-service-section .card-top h4 {
    position: relative;

    color: #fff;
    font-weight: 700;
    margin: 0;

    transition: .4s;
}

.analog-service-section .card-top h4::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background:
        linear-gradient(90deg,
            #4ea1ff,
            #1548A8);

    transition: .4s ease;
}

.analog-service-section .analog-card:hover h4 {
    color: #4ea1ff;
    letter-spacing: .3px;
}

.analog-service-section .analog-card:hover h4::after {
    width: 100%;
}

/* LIST */
.analog-service-section .analog-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.analog-service-section .analog-card ul li {
    position: relative;

    padding-left: 20px;
    margin-bottom: 14px;

    color: rgba(255, 255, 255, .68);

    font-size: 15px;
    line-height: 1.8;

    transition: all .35s ease;
}

.analog-service-section .analog-card ul li:hover {
    transform: translateX(10px);

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(78, 161, 255, .4);
}

.analog-service-section .analog-card ul li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 11px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4ea1ff;

    box-shadow:
        0 0 12px #4ea1ff;

    animation: dotWave 1.8s infinite;
}

/* VALUE */
.analog-service-section .value-delivered {
    margin-top: 90px;
}

.analog-service-section .value-delivered h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.analog-service-section .value-delivered>p {
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
}

.analog-service-section .value-card {
    position: relative;

    display: flex;
    gap: 22px;

    padding: 30px;
    height: 100%;

    border-radius: 22px;

    background:
        linear-gradient(180deg,
            rgba(10, 16, 32, .90),
            rgba(5, 10, 22, .96));

    border: 1px solid rgba(78, 161, 255, .12);

    overflow: hidden;

    transition: .45s;
}

.analog-service-section .value-card:hover {
    transform:
        translateY(-12px) scale(1.02);

    box-shadow:
        0 20px 50px rgba(21, 72, 168, .25);
}

.analog-service-section .value-card::before {
    content: "";
    position: absolute;

    width: 200%;
    height: 200%;

    top: -50%;
    left: -50%;

    background:
        radial-gradient(circle,
            rgba(78, 161, 255, .10),
            transparent 60%);

    animation: rotateGlow 12s linear infinite;
}

.analog-service-section .value-card>* {
    position: relative;
    z-index: 2;
}

.analog-service-section .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #1548A8,
            #0d6efd);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;

    transition: .4s;
}

.analog-service-section .value-card:hover .value-icon {
    transform:
        rotate(15deg) scale(1.15);

    box-shadow:
        0 15px 30px rgba(21, 72, 168, .3);
}

.analog-service-section .value-content h5 {
    color: #fff;
    margin-bottom: 12px;
    transition: .4s;
}

.analog-service-section .value-card:hover h5 {
    color: #4ea1ff;
}

.analog-service-section .value-content p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin: 0;
}

/* ANIMATIONS */
@keyframes auroraMove {
    0% {
        transform: rotate(0deg) translateX(0px);
    }

    100% {
        transform: rotate(360deg) translateX(40px);
    }
}

@keyframes neonLines {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 0;
    }
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes dotWave {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: .4;
    }
}

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

@keyframes textFlow {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 250%;
    }
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shineMove {
    0% {
        top: -120%;
        left: -40%;
    }

    100% {
        top: 120%;
        left: 120%;
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes textGlow {

    0%,
    100% {
        opacity: 1;

        text-shadow:
            0 0 10px rgba(78, 161, 255, .3);
    }

    50% {
        opacity: .75;

        text-shadow:
            0 0 20px rgba(78, 161, 255, .7);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .analog-service-section .analog-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .analog-service-section {
        padding: 90px 0;
    }

    .analog-service-section .analog-header h2 {
        font-size: 32px;
    }

    .analog-service-section .analog-header p {
        font-size: 15px;
    }

    .analog-service-section .analog-card {
        padding: 26px;
    }

    .analog-service-section .card-top h4 {
        font-size: 18px;
    }

    .analog-service-section .value-delivered h3 {
        font-size: 32px;
    }

    .analog-service-section .value-card {
        flex-direction: column;
        padding: 26px;
    }

    .analog-service-section .value-content h5 {
        font-size: 20px;
    }
}

.manage-it-section .manage-it-wrapper .nav {
    gap: 30px !important;
}

.manage-it-section .manage-it-wrapper .nav .nav-item a {
    font-size: 14px !important;
}

@media (max-width: 375px) {
    .manage-it-section .single-tab-items {
        line-height: 17px !important;
    }

    .manage-it-section .single-tab-items .nav {
        width: 290px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: scroll !important;
        gap: 15px !important;
        padding-bottom: 0px !important;
    }

    .manage-it-section .single-tab-items .nav .nav-link {
        font-size: 12px;
        padding: 11px 18px;
    }
}

@media (max-width:576px) {
    .manage-it-section .single-tab-items {
        line-height: 17px !important;
    }

    .manage-it-section .single-tab-items .nav {
         flex-wrap: nowrap !important;
        gap: 15px !important;
    }

    .manage-it-section .single-tab-items .nav .nav-link {
        font-size: 12px;
        padding: 11px 18px;
    }

    .manage-it-section .manage-it-wrapper .nav .nav-item a {
        font-size: 14px !important;
    }
}