.technology-featured-section {
    background: #f8fafc;
    padding: 64px 0;
}
.technology-featured-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}
.technology-featured-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 48px;
    letter-spacing: -1px;
    text-align: center;
}

.technology-featured-row {
    display: flex;
    align-items: center;
    margin-bottom: 56px;
    gap: 36px;
    flex-direction: row;
}
.technology-featured-row.reverse {
    flex-direction: row-reverse;
}


.technology-featured-image-wrap {
    flex: 1 1 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 500px;
    /* min-height: 500px; */
    max-width: 500px;
    margin: 0 auto;
}
.technology-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; 
    height: 110%;
    border-radius: 20px;
    z-index: 0;
    background: radial-gradient(ellipse at center, #a5b4fc 0%, #818cf8 60%, transparent 90%);
    filter: blur(32px) brightness(1.5);
    pointer-events: none;
}
.technology-featured-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(76, 81, 255, 0.13), 0 1.5px 5px 0 rgba(30,41,59,0.07);
    background: #fff;
}

/* Description styles */
.technology-featured-desc {
    flex: 1 1 0px;
    padding: 16px 20px;
}
.technology-featured-desc h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #22223b;
    margin-bottom: 12px;
}
.technology-featured-desc p {
    font-size: 1rem;
    color: #5b5f7b;
    margin-bottom: 20px;
    line-height: 1.7;
}
.technology-featured-desc a {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    border-radius: 8px;
    background: #013f64;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99,102,241,.09);
    transition: background 0.18s, box-shadow 0.18s;
}
.technology-featured-desc a:hover {
    background: #043653;
    box-shadow: 0 4px 16px rgba(67,56,202,0.14);
}
.technology-featured-container .section__title{
    margin-top: 0;
}

@media (max-width: 800px) {
    .technology-featured-row,
    .technology-featured-row.reverse {
        flex-direction: column !important;
        gap: 18px;
        text-align: center;
    }
}

@media (max-width: 768px){
    .technology-featured-image-wrap{
        min-width: 100%;
        max-width:100%;
    }
    .technology-featured-image{
            max-height: 300px;
    }
    
}