 .network-overview {
     position: relative;
     overflow: hidden;
 }


 .network-overview::before {
     top: -120px;
     right: -80px;
 }

 .network-overview::after {
     bottom: -160px;
     left: -140px;
 }

 .network-overview .container,
 .network-overview .row,
 .network-overview .col-lg-6 {
     position: relative;
     z-index: 1;
 }

 .network-panel {
     background: #ffffff;
     border-radius: 32px;
     padding: 40px;
     box-shadow: 0 25px 40px rgba(15, 23, 42, 0.08);


 }

 .network-eyebrow {
     display: inline-flex;
     padding: 6px 18px;
     border-radius: 999px;
     background: rgba(64, 121, 255, 0.15);
     color: #2E519F;
     font-weight: 600;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     font-size: 0.85rem;
     margin-bottom: 12px;
 }

 .network-heading {
     display: inline-flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
     color: #0a3f92;
     margin-bottom: 18px;
     position: relative;
 }

 .network-title {
     font-size: 2.6rem;
     font-weight: 800;
     color: #0f1c3c;
     margin: 0;
 }

 .network-underline {
     width: 64px;
     height: 4px;
     background: #05c0c6;
     border-radius: 999px;
     display: inline-flex;
 }

 .network-lead {
     font-size: 1rem;
     color: #5b627c;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .network-points {
     list-style: none;
     padding: 0;
     margin: 0 0 26px;
 }

 .network-points li {
     display: flex;
     align-items: center;
     font-weight: 600;
     color: #182142;
     margin-bottom: 10px;
     font-size: 0.95rem;
 }

 .network-points li::before {
     content: "";
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: linear-gradient(135deg, #2EB4A5, #2E519F);
     display: inline-flex;
     margin-right: 12px;
     flex-shrink: 0;
     box-shadow: 0 0 0 5px rgba(101, 146, 255, 0.15);
 }

 .network-actions {
     display: flex;
     align-items: center;
     gap: 18px;
 }

 .network-cta {
     padding: 12px 30px;
     border-radius: 999px;
     box-shadow: 0 18px 40px rgba(64, 111, 255, 0.25);
 }

 .network-meta {
     font-size: 0.95rem;
     color: #54607d;
 }

 .network-map {
     position: relative;
     overflow: hidden;
     min-height: 340px;
 }


 .network-map img {
     width: 100%;
     max-width: 100%;
     display: block;

     object-fit: cover;
     /* kırparak doldurur */
     object-position: center;
     /* ortadan kırpar */

 }

 .network-connections-svg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
 }

 @keyframes network-node-blink {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0.3;
     }

     100% {
         opacity: 1;
     }
 }

 .network-node {
     position: absolute;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     cursor: pointer;
     transform: translate(-50%, -50%);
     z-index: 1;
     --blink-delay: 0s;
 }

 .network-node-dot {
     position: relative;
     display: block;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #05c0c6;
     animation: network-node-blink 1.5s ease-in-out infinite;
     animation-delay: var(--blink-delay);
 }

 .network-node-dot::after {
     content: "";
     position: absolute;
     inset: -4px;
     border-radius: 50%;
     border: 1px solid #05c0c6;
     animation: network-node-blink 1.5s ease-in-out infinite;
     animation-delay: var(--blink-delay);
 }

 .network-node::before {
     content: attr(data-label);
     position: absolute;
     top: -28px;
     left: 50%;
     transform: translateX(-50%);
     background: #05c0c6;
     color: #fff;
     font-size: 0.75rem;
     padding: 4px 8px;
     border-radius: 999px;
     white-space: nowrap;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.2s ease, transform 0.2s ease;
     box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
     z-index: 10;
 }

 .network-node:hover::before {
     opacity: 1;
     transform: translate(-50%, -4px);
 }

 .network-node:hover {
     z-index: 50;
 }

 .network-node:hover .network-node-dot,
 .network-node:hover .network-node-dot::after {
     animation-play-state: paused;
     opacity: 1;
 }

 /* Node pozisyonları */
 .node-america {
     top: 40%;
     left: 17%;
     --blink-delay: 0s;
 }

 .node-canada {
     top: 24%;
     left: 16%;
     --blink-delay: 0.2s;
 }

 .node-uk {
     top: 33%;
     left: 45%;
     --blink-delay: 0.4s;
 }

 .node-france {
     top: 38%;
     left: 46%;
     --blink-delay: 0.6s;
 }

 .node-belgium {
     top: 36.5%;
     left: 46.5%;
     --blink-delay: 0.8s;
 }

 /*hollanda */
 .node-netherlands {
     top: 35%;
     left: 47%;
     --blink-delay: 1s;
 }

 .node-germany {
     top: 35%;
     left: 48.5%;
     --blink-delay: 1.2s;
 }

 .node-turkiye {
     top: 43%;
     left: 56%;
     --blink-delay: 1.4s;
 }

 /*isviçre */
 .node-switzerland {
     top: 38%;
     left: 48%;
     --blink-delay: 1.6s;
 }

 /*isveç */
 .node-sweden {
     top: 25%;
     left: 50%;
     --blink-delay: 1.8s;
 }

 .node-china {
     top: 43%;
     left: 74.5%;
     --blink-delay: 2s;
 }

 .node-japan {
     top: 42%;
     left: 87%;
     --blink-delay: 2.2s;
 }

 .node-australia {
     top: 75%;
     left: 86%;
     --blink-delay: 2.4s;
 }

 .network-copy-col {
     flex-grow: 1;
 }

 .network-map-col {
     flex-grow: 1;
      width: 100%;
     max-width: 100%;
     display: block;
    object-fit: cover;   /* kırparak doldurur */
    object-position: center; /* ortadan kırpar */
 }

 @media (min-width: 992px) and (max-width: 1399.98px) {
     .network-copy-col {
         flex: 0 0 35%;
         max-width: 35%;
     }

     .network-map-col {
         flex: 0 0 65%;
         max-width: 65%;
     }

     .network-map {
         width: 100%;
     }
 }

 @media (max-width: 991.98px) {
     .network-panel {
         padding: 38px;
         box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);

     }

     .network-actions {
         flex-direction: column;
         align-items: flex-start;
     }

     .network-title {
         font-size: 2.2rem;
     }

     .network-copy-col,
     .network-map-col {
         flex: 0 0 100%;
         max-width: 100%;
     }

     .network-map {
         width: 100%;
         transform: translateX(0);
         min-height: auto;
         margin-top: 28px;
     }
 }

 @media (max-width: 575.98px) {
     .network-panel {
         padding: 28px;

     }

     .network-title {
         font-size: 1.9rem;
     }

     .network-cta {
         box-shadow: 0 10px 20px rgba(64, 111, 255, 0.25);
     }
 }

 .country-slider {
     width: 100%;
     overflow: hidden;
     padding: 20px 0;
     position: relative;
     margin-top: 12px;
 }

 .country-slider::before,
 .country-slider::after {
     content: "";
     position: absolute;
     top: 0;
     bottom: 0;
     width: 80px;
     pointer-events: none;
     z-index: 2;
 }

 .country-slider::before {
     left: 0;
     background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
 }

 .country-slider::after {
     right: 0;
     background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
 }

 .country-track {
     display: inline-flex;
     gap: 60px;
     white-space: nowrap;
     animation: slide-left 25s linear infinite;
     position: relative;
     will-change: transform;
 }

 .country-track span {
     color: #2E519F;
     font-size: 1.2rem;
     font-weight: 600;
     letter-spacing: 0.02em;
 }

 @keyframes slide-left {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }