/* Vivek Section - Why Choose Us (Hidden) */

.vivek-section {
    display: none; /* Hidden section */
    width: 100%;
    background: linear-gradient(135deg, #0a0a1e 0%, #1a0a2e 50%, #2d1b3d 100%);
    padding: 60px 20px;
    min-height: 100vh;
}

.vivek-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.section-title .highlight {
    color: #a78bfa;
}

/* Top Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.info-card {
    /* No background or border */
}

.info-card-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-card-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Feature Cards Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b3d 100%);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.feature-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .info-cards,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .vivek-section {
        padding: 40px 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-image {
        height: 180px;
    }
}
