 
        /* General Section Styling */
        .testimonial-section {
            padding: 60px 20px;
            background-color: #f4f4f4; /* Softer background for a polished look */
            font-family: 'Roboto', sans-serif;
        }
   
   .cta-button:hover {
   background-color:#DCB63E!important;
   color:white!important;
}

        
        /* Grid Styling */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px; /* Increased gap for better spacing */
        }
        
        /* Card Styling */
        .testimonial-card {
            background: #ffffff;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* Softer shadow */
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        /* Add subtle hover effect on cards */
        .testimonial-card:hover {
            transform: translateY(-10px); /* Lift effect */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
            transition:10sec;
        }
        
        /* Folded Corner */
        .testimonial-card .folded-corner {
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 50px;
            background-color: #022b41; /* More corporate blue */
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            z-index: 1;
        }
        
        /* Quote Icon */
        .testimonial-card .quote-icon {
            font-size: 40px;
            color: #022b41; /* Matches the folded corner color */
            margin-bottom: 15px;
        }
        
        /* Content Styling */
        .testimonial-content {
            font-style: italic;
            font-size: 16px;
            line-height: 1.6;
            color: #555; /* Subtle gray for better readability */
            margin-bottom: 15px;
        }
        
        /* Author and Project */
        .testimonial-author {
            font-weight: 600;
            font-size: 15px;
            color: #333;
        }
        
        .testimonial-project {
            color: #022b41;
            font-size: 14px;
        }
        
        /* Container Styling */
        .container1 {
            max-width: 1200px;
            margin: 0 auto;
        }
        
      

    