        .Cards09 {
            padding: 80px 0;
            background: linear-gradient(135deg, #e0e0e0 0%, #bebdbe 100%);
            position: relative;
            overflow: hidden;
        }


        .Cards09 .highlight {
            background: linear-gradient(135deg, hsl(220 90% 56%), hsl(195 100% 65%));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }



        .Cards09 .cards-grid .col-md-4 {
            padding: 15px;
        }

        .Cards09::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .Cards09 .container {
            position: relative;
            z-index: 1;
        }

        .Cards09 .mainTitle {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .Cards09 .subTitle {
            font-size: 20px;
            font-weight: 400;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 60px;
            display: block;
            line-height: 1.6;
        }

        .Cards09 .cards-grid {
            margin: 0 -15px;
        }

        .Cards09 .card-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px 30px;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        .Cards09 .card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .Cards09 .card-item:hover::before {
            left: 100%;
        }

        .Cards09 .card-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .Cards09 .card-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 42px;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
        }

        .Cards09 .card-item:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
        }

        .Cards09 .card-icon i {
            color: inherit;
        }

        .Cards09 .card-title {
            font-size: 24px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .Cards09 .card-text {
            font-size: 16px;
            line-height: 1.7;
            color: #718096;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .Cards09 .card-link {
            display: inline-flex;
            align-items: center;
            color: #667eea;
            text-decoration: none !important;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            margin-top: auto;

        }

        .Cards09 .card-link:hover {
            color: #764ba2;
            transform: translateX(4px);

        }

        .Cards09 .card-link a {
            text-decoration: none !important;
        }

        .Cards09 .card-link::after {
            content: '→';
            margin-left: 6px;
            transition: margin-left 0.3s ease;
        }

        .Cards09 .card-link:hover::after {
            margin-left: 10px;
        }

        .Cards09 .card-body {
            width: 100%;
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .Cards09 .card-image {
            width: 100%;
            height: 180px;
            /* ✨ μπορείς να το αλλάξεις ανάλογα */
            overflow: hidden;
        }

        .Cards09 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        .Cards09 .card-image img {
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
        }


        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .Cards09 .card-item {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .Cards09 .card-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .Cards09 .card-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .Cards09 .card-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .Cards09 .card-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .Cards09 .card-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .Cards09 .card-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .Cards09 .mainTitle {
                font-size: 36px;
            }

            .Cards09 .subTitle {
                font-size: 18px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 767px) {
            .Cards09 {
                padding: 60px 0;
            }

            .Cards09 .mainTitle {
             		font-size: clamp(2.8rem, 6vw, 3.8rem)!important;
            }

            .Cards09 .subTitle {
                font-size: 16px;
            }

            .Cards09 .card-item {
                padding: 30px 20px;
            }

            .Cards09 .card-icon {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }

            .Cards09 .card-title {
                font-size: 20px;
            }
        }


        .Cards09 .card-sdheader {
            min-height: 180px;
            display: flex;            
            align-items: center;       
            justify-content: center;  
        }


