/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    padding: 120px 0;
    padding-bottom: 0;
    /* background: #0a0a0a; */
    overflow: hidden;
    perspective: 2000px;
}

/* Achievement SVG Wrapper */
.achivement-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* SVG Icons Styles */
.achievement-svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #6df780;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(109, 247, 128, 0.4));
    transition: all 0.4s ease;
}

/* Hover Effects */
.achivement-item:hover .achievement-svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 15px rgba(109, 247, 128, 0.8));
    transform: scale(1.1) rotate(5deg);
}

.achivement-item:hover .achivement-image-wrapper {
    /* transform: scale(1.1); */
}

/* Individual Icon Details */
.icon-path-main {
    opacity: 1;
    transition: all 0.4s ease;
}

.icon-path-metric {
    opacity: 0.7;
}

.achivement-item:hover .icon-path-main {
    stroke-width: 2;
}

/* Mobile responsive adjustments if needed */
@media screen and (max-width: 479px) {
    .achievement-svg {
        width: 50px;
        height: 50px;
    }
}

.why-choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    transform-style: preserve-3d;
}

/* Left Side - 3D Image Wrapper */
.why-choose-us-left {
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.image-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
    transform-style: preserve-3d;
    /* transition: transform 0.5s ease-out; */
}

.why-choose-bg-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
    transform: translateZ(0);
}

.floating-tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 247, 128, 0.3);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    animation: floatingCard 6s ease-in-out infinite;
}

.card-1 {
    width: 120px;
    height: 80px;
    top: 20%;
    right: -30px;
    transform: translateZ(40px);
}

.wifi-wave-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wifi-icon {
    width: 100%;
    height: 100%;
    max-width: 60px;
    filter: drop-shadow(0 0 5px rgba(109, 247, 128, 0.4));
}

.wifi-arc {
    opacity: 0.3;
}

.arc-1 {
    animation: wifiPulse 2s infinite;
}

.arc-2 {
    animation: wifiPulse 2s infinite 0.4s;
}

.arc-3 {
    animation: wifiPulse 2s infinite 0.8s;
}

@keyframes wifiPulse {
    0% {
        opacity: 0.1;
        stroke-width: 2px;
    }

    50% {
        opacity: 1;
        stroke-width: 2.5px;
    }

    100% {
        opacity: 0.1;
        stroke-width: 2px;
    }
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-15px);
    }
}

/* Right Side - Content */
.why-choose-us-content {
    position: relative;
    transform-style: preserve-3d;
}

.why-choose-item {
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(0) translateZ(0);
    overflow: hidden;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(109, 247, 128, 0.3);
    transform: translateX(10px) translateZ(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.item-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #6df780;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover .item-glow {
    opacity: 1;
}

.why-choose-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-item-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* SVG Animations */
.circuit-graphics-right {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 600px;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.circuit-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 5s linear infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 2s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

.circuit-pulse {
    transform-origin: 300px 300px;
    animation: pulseCircle 3s ease-out infinite;
}

@keyframes pulseCircle {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
        stroke-width: 2px;
    }

    100% {
        transform: scale(2);
        opacity: 0;
        stroke-width: 0px;
    }
}

.circuit-node {
    animation: glowNode 2s ease-in-out infinite alternate;
}

@keyframes glowNode {
    from {
        fill-opacity: 0.5;
        r: 3;
    }

    to {
        fill-opacity: 1;
        r: 5;
        box-shadow: 0 0 10px #6df780;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .circuit-graphics-right {
        right: 0;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-item {
        padding: 20px;
    }

    .why-choose-item-title {
        font-size: 20px;
    }
}