 .algatac-showcase {
            padding: 60px 20px;
            text-align: center;
        }

        .algatac-logo {
            font-size: 32px;
            font-weight: bold;
            color: #004d40; /* Dark teal */
            margin-bottom: 10px;
        }

            .algatac-logo i {
                color: #fbc02d; /* Amber */
                margin-right: 8px;
            }

            .algatac-logo span {
                color: #fbc02d;
            }

        .algatac-header h2 {
            font-size: 24px;
            margin: 15px 0;
            color: #2c2c2c;
        }

        .algatac-header p {
            color: #555;
            font-size: 15px;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .algatac-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .algatac-card {
            perspective: 1000px;
        }

        .algatac-card-inner {
            position: relative;
            width: 100%;
            height: 240px;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .algatac-card:hover .algatac-card-inner {
            transform: rotateY(180deg);
        }

        .algatac-card-front,
        .algatac-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            font-size: 15px;
            color: white;
        }

        /* FRONT SIDE - Teal Gradient */
        .algatac-card-front {
            background: linear-gradient(135deg, #009688, #4db6ac);
        }

        /* BACK SIDE - Amber Gradient */
        .algatac-card-back {
            background: linear-gradient(135deg, #ffe082, #ffca28);
            transform: rotateY(180deg);
        }

        .algatac-card-front h3 {
            font-size: 18px;
            color: #004d40; /* Dark teal text */
            margin-bottom: 10px;
            background-color: #fbc02d; /* Bright amber background */
            padding: 5px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .algatac-card-back p {
            margin: 5px 0;
            color: #212121; /* Slightly darker text on yellow for better readability */
        }