.vs-section {
    padding: 60px 20px;
    background-color: #f8f9fc;
}

.vs-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d465e;
    /* Deep blue to match your brand */
    position: relative;
    margin-bottom: 2rem;
}

.vs-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    /* Accent blue */
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.vs-subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.vs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.vs-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.vs-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.icon-dev {
    color: #007bff;
}

.icon-app {
    color: #17a2b8;
}

.icon-web {
    color: #28a745;
}

.icon-marketing {
    color: #ff5722;
}

.icon-hr {
    color: #6c757d;
}

.icon-data {
    color: #ffc107;
}

.icon-ml {
    color: #9c27b0;
}

.icon-uiux {
    color: #fd7e14;
}

.icon-cloud {
    color: #20c997;
}

.vs-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.vs-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.vs-benefits {
    background-color: #f0f4f8;
    padding: 50px 20px;
    border-radius: 12px;
}

.vs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.vs-benefit {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vs-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.vs-icon {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 12px;
}

.vs-benefit p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}


/* Why VS Section */
.vs-whyvs {
    background-color: #ffffff;
    padding: 60px 20px;
}

.vs-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vs-reason {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.vs-reason:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.vs-reason h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.vs-reason p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Color accents */
.vs-color-blue {
    border-top-color: #007bff;
}

.vs-color-green {
    border-top-color: #28a745;
}

.vs-color-orange {
    border-top-color: #fd7e14;
}

.vs-color-purple {
    border-top-color: #6f42c1;
}

.vs-color-teal {
    border-top-color: #20c997;
}

.vs-color-yellow {
    border-top-color: #ffc107;
}

/* Review card */
.review-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* Profile pic */
.profile-pic,
.profile-pic-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 60px;
    background: #0d3b66;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ratings */
.rating {
    color: #ffb400;
    font-size: 1rem;
    font-weight: 600;
}


.text-container {
    position: relative;
    max-width: 100%;
}

.text-container .text {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.text-container input[type="checkbox"] {
    display: none;
}

.text-container input[type="checkbox"]:checked~.text {
    max-height: 1000px;
}

.read-more-label {
    display: inline-block;
    margin-top: 5px;
    color: #007bff;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}

.text-container input[type="checkbox"]:checked~.read-more-label::after {
    content: " Read Less";
}

.text-container input[type="checkbox"]:not(:checked)~.read-more-label::after {
    content: " Read More";
}