.tt-section {
    background: #ffffff;
}

/* Title gradient (kept premium but readable) */
.gradient-dark {
    background: linear-gradient(90deg, #0284c7, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph readability */
.tt-para {
    color: #4b5563;
    /* gray-600 */
    line-height: 1.8;
}

/* Highlight box */
.tt-highlight {
    padding: 18px 24px;
    border-left: 4px solid #0284c7;
    background: #f0f9ff;
    border-radius: 14px;
    font-weight: 500;
    color: #1f2937;
}

/* Image card (more visible on white bg) */
.image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.18),
        0 8px 25px rgba(79, 70, 229, 0.12);
    transform: perspective(1200px) rotateY(-6deg);
    background: white;
}

/* Floating cards (previously washed out) */
.floating-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 600;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: none;
}

.card1 {
    top: 60%;
    right: 35%;
}

.card2 {
    top: 66%;
    right: 25%;
}

.card3 {
    top: 60%;
    right: 18%;
}

/* Quote box — FIXED contrast */
.quote-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    text-align: center;
    font-size: 1.2rem;
    color: #111827;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Subtle gradient glow (lighter) */
.tt-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0ea5e915, transparent 70%);
    filter: blur(60px);
}

@media (max-height: 820px) {
    .card1 {
        right: 28%;
    }

    .card2 {
        right: 15%;
    }

    .card3 {
        right: 7%
    }
}

@media (max-width:768px) {

    .card1,
    .card2,
    .card3 {
        display: none;
    }
}