.technology-section {
    padding: 80px 0;
    position: relative;
}

/* =========================================
   CUSTOM SWIPER NAVIGATION
   ========================================= */
.technology-section .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.technology-section .custom-nav-wrapper {
    display: flex;
    gap: 15px;
}

.technology-section .swiper-btn-custom {
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.technology-section .swiper-btn-custom:hover {
    background-color: var(--color-1); /* Orange on hover */
    transform: scale(1.05);
}

.technology-section .swiper-btn-custom.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #555;
}

/* =========================================
   TECH CARD STYLING
   ========================================= */
.tech-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px; /* Fixed height for uniformity */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #f8f9fa;
}

.tech-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* White floating box */
.tech-card-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
}

.tech-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-01);
}

/* Orange Plus Button */
.btn-plus {
    width: 32px;
    height: 32px;
    min-width: 32px; /* Prevents squishing */
    background-color:var(--color-2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 15px;
    font-family: var(--font-01);
}

.btn-plus:hover {
    background-color: var(--color-1);
    color: #ffffff;
    transform: rotate(90deg); /* Spins on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .technology-section .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .tech-card {
        height: 320px;
    }
}