.space50{
    padding: 50px 0;
    clear: both;
}
.aiinfo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}
.headingmain{
    margin-bottom: 15px;
}
.badge {
    background-color: #FFD822;
    color: #1b1b1c;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}
.tagline {
    font-size: 20px;
    color: #FFD822;
    margin-bottom: 0;
    font-weight: 500;
}
.description {
    width: 75%;
    font-size: 18px;
    margin: auto;
    text-align: center;
}
.bgcls{
    background-color: #f8f9fa;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(0,0,0,.125);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}
.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #FFD822;
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
}
.stat-label {
    color: #666;
}
.info-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.info-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFD822;
}
.info-item a, .info-section li a, .forcls a{
    color: #e7ae01;
}
.info-item strong {
    color: #1b1b1c;
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.info-section .headingmain{
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFD822;
    margin-bottom: 30px;
}
.highlight-box {
    background: linear-gradient(135deg, #FFC107 0%, #FFD822 100%);
    color: #1b1b1c;
    padding: 30px;
    border-radius: 12px;
}
.info-section li {
    margin-bottom: 15px;
}
.info-section li:last-child {
    margin-bottom: 0;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}
.card h3 {
    color: #1b1b1c;
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #FFD822;
}
.badgelist .badge{
    margin: 5px;
}
.info-section .headingmain img {
    height: 45px;
}
.seventeen .card-grid{
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.testimoniallist{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}
.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FFD822;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}
.testimonial-company {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}
.nineteen .highlight-box{
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); 
    color: #fff;
    margin-bottom: 30px;
}
.nineteen .highlight-box strong{
    color: #FFD822;
}
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 12px;
}
.cta-button {
    display: inline-block;
    background: #FFC107;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
    color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}
.forcls {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.tre {
    display: flex;
}
.tre img {
    width: 40%;
    margin-left: 50px;
}
@media (max-width: 1366px) {
    .headingmain{
        font-size: 30px;
    }
    .description {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .description {
        width: 100%;
    }
    .tre {
        display: block;
    }
    .tre img {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .forcls{
        display: inline-block;
    }
    .seventeen .card-grid, .testimoniallist {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .badge{
        text-align: left;
        white-space: inherit;
    }
}