  .highlight-section {
/*            background: linear-gradient(135deg, #6a11cb, #2575fc);*/
            padding: 50px 0;
            color: white;
        }

        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: scale(1.05);
        }

        .card img {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .card-title {
            font-weight: bold;
            color: #343a40;
            font-size: 16px;
        }

        .card-text {
            color: #6c757d;
        }

        .read-more {
            color: #007bff;
            font-weight: bold;
            text-decoration: none;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        .carousel-item {
            padding: 15px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
        }

        .highlight-section h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5rem;
            font-weight: bold;
        }


        /* Ensure carousel items are scrollable on small devices */
@media (max-width: 768px) {
    #cardSlider .carousel-inner .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #cardSlider .card {
        min-width: 80%; /* Adjust width for better visibility */
        margin-right: 15px;
    }
    .slick-arrow.slick-next {
    right: 55px;
        }
        .portfolio-carousel .slick-arrow.slick-prev {
            left: auto;
            right: 115px;
        }
}

/* For better card scaling */
.card img {
    object-fit: cover;
    height: 200px;
}