.techno-about {
    background: #f8f9fa;
}

/* Title */
.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d3b66;
}

.about-tagline {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* Text */
.about-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.about-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0d3b66;
    margin-bottom: 8px;
}

.about-small-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
}

/* IMAGE SECTION */
.about-image-wrapper {
    min-height: 400px;
}
/* Enable smooth transition */
.image-card {
    position: absolute;
    width: 600px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default Positions */
.image-card-1 {
    top: 0;
    right: 40px;
    z-index: 2;
}

.image-card-2 {
    top: 120px;
    right: 0;
    z-index: 1;
}

/* Swapped State */
.image-card-1.swapped {
    top: 120px;
    right: 0;
    z-index: 1;
}

.image-card-2.swapped {
    top: 0;
    right: 40px;
    z-index: 2;
}
/* Hover effect */
.image-card:hover {
    transform: scale(1.05);
}

/* Floating Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-image-wrapper {
        position: relative;
        height: 500px;
        margin-top: 40px;
    }

    .image-card {
        position: relative;
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
        right: auto;
        top: auto;
    }

    .image-card-2 {
        margin-top: -30px;
    }
}
