        .addddd {
            background-color: rgb(0, 0, 28);
            min-height: 100vh;
            padding: 40px 0;
            width: 100%;
            /* Added only this line */
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
            color: #fff;
            font-size: 2.5rem;
            text-shadow: 0 0 20px rgba(82, 109, 255, 0.3);
        }

        .cards-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .card {
            background: rgba(13, 13, 48, 0.7);
            border: 1px solid rgba(82, 109, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(82, 109, 255, 0.3);
            box-shadow: 0 15px 30px rgba(82, 109, 255, 0.2);
        }

        .card-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card:hover .card-image {
            transform: scale(1.1);
        }

        .card-content {
            padding: 25px;
            position: relative;
        }

        .card-title {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to left, #526dff, #8f94fb);
            border-radius: 2px;
        }

        .card-description {
            color: #b8b9cf;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .read-more {
            display: inline-block;
            background: linear-gradient(135deg, #526dff, #8f94fb);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(82, 109, 255, 0.3);
        }

        .read-more:hover {
            transform: translateX(-5px);
            box-shadow: 0 7px 20px rgba(82, 109, 255, 0.4);
            background: linear-gradient(135deg, #6b83ff, #a5a9fb);
        }

        .category-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(82, 109, 255, 0.2);
            border: 1px solid rgba(82, 109, 255, 0.3);
            padding: 8px 15px;
            border-radius: 15px;
            color: #fff;
            font-weight: 500;
            backdrop-filter: blur(5px);
            z-index: 2;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(82, 109, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        /* Rest of your original CSS stays exactly the same until the media queries */

        @media (max-width: 1220px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Rest of your existing card styles remain the same */
        @media (max-width: 768px) {

            .cards-container {
                padding: 15px;
                gap: 20px;
                grid-template-columns: 1fr;
                /* Single column on mobile */
            }

            .page-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .card-title {
                font-size: 1.3rem;
            }

        }
.linkseo{
            color: red;
        }
