
.insights-section {
    background: linear-gradient(180deg, #111, #1f1f1f);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    color: #ddd;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ff7b00;
}

.section-title .underline {
    width: 120px;
    height: 4px;
    background: #ff7b00;
    margin: 10px auto 20px;
    border-radius: 5px;
}

.section-title p {
    color: #ccc;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

/* Insights Grid */
.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Individual Card */
.insight-card {
    display: flex;
    flex-direction: row;
    background: linear-gradient(180deg, #002b36, #004d4d);

    border: 2px solid #ff7b00;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 123, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(255, 123, 0, 0.5);
}

.insight-card.reverse {
    flex-direction: row-reverse;
}

/* Image */
.card-img {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-img img:hover {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff7b00;
    color: #111;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* Text Content */
.card-content {
    flex: 2;
    padding: 30px;
}

.card-content h2 {
    color: #ff7b00;
    font-size: 28px;
    margin-bottom: 20px;
}

.card-content p {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .insight-card,
    .insight-card.reverse {
        flex-direction: column;
        text-align: center;
    }

    .card-img img {
        height: 250px;
    }
}



/* Center the whole insights content inside */
.insights-section .container-center {
    max-width: 1200px;
    margin: 0 auto;
}



    .highlight {
        animation: flash 1.5s ease-out;
    }

    @keyframes flash {
        0% { background: #fff7b0; }
        100% { background: transparent; }
    }
