﻿.trust-section {
    padding: 80px 20px;
    background: #fdfdfd;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: bold;
    position: relative;
}

    .section-title::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #27ae60;
        display: block;
        margin: 15px auto 0;
        border-radius: 2px;
    }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Base Card Style */
.trust-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

    .trust-card.animated {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trust-card:hover .card-image img {
    transform: scale(1.15) rotate(2deg);
}

.card-content {
    padding: 25px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: background 0.5s ease, transform 0.3s ease;
}

.trust-card:hover .card-content {
    transform: translateY(-5px);
}

/* ✅ Different Color Schemes */
.card-green .card-content {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-blue .card-content {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.card-orange .card-content {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.card-purple .card-content {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Entry Delay */
.fade-in-up.delay-0 {
    transition-delay: 0.1s;
}

.fade-in-up.delay-1 {
    transition-delay: 0.3s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.5s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.7s;
}
