  
  
  .projectUsp{padding:0px 0px 80px 0px;}
  .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        
        }

        .card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B03031, #020B4A);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .projectUsp ul li{padding: 10px;border: 1px dashed #020B4A;}

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(176, 48, 49, 0.3);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .logo-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background:#fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #fff;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(176, 48, 49, 0.3);
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        .logo-container img{width:100%;height:100%;}

        .card:hover .logo-container {
            transform: rotate(360deg);
        }

        .card h2 {
            color: #020B4A;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .usp {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-top: 10px;
        }

        .highlight {
            color: #B03031;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }

            .card {
                padding: 30px 20px;
            }

            .card h2 {
                font-size: 20px;
            }
        }