.elementor-6237 .elementor-element.elementor-element-be59c84{--display:flex;}/* Start custom CSS for html, class: .elementor-element-74db8b8 */<style>

/* ===== GLOBAL BACKGROUND LUXURY ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.9), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.7), transparent 45%),
                linear-gradient(135deg, #f9fafc, #eef2f7);
    background-attachment: fixed;
    color: #111;
    overflow-x: hidden;
}

/* subtle floating light */
body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(198,167,94,0.18), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* ===== CONTAINER ===== */
.container {
    width: 92%;
    max-width: 1200px;
    margin: px auto;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(120deg, #ffffff, #f8f9fc);
    padding: 10px 20px 80px;
    text-align: center;
    position: relative;
}

.header h1 {
    margin: 0;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #0d3b66, #1d3557);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header p {
    margin-top: 20px;
    font-size: 18px;
    color: #666;
}

/* gold accent line */
.header::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, #c6a75e, #f5e6c4, #c6a75e);
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    border-radius: 20px;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 26px;
    padding: 40px 45px;
    margin-bottom: 60px;
    display: flex;
    gap: 35px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.06),
        0 8px 20px rgba(0,0,0,0.04);
    position: relative;
    transition: all 0.5s ease;
}

/* floating glow halo */
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(7, 83, 248, 0.25), transparent, rgba(4, 17, 209, 0.25));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.08),
        0 15px 30px rgba(0,0,0,0.05);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* ===== IMAGE ===== */
.testimonial-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    padding: 5px;
    background: linear-gradient(135deg, #c6a75e, #f5e6c4);
    box-shadow: 0 15px 35px rgba(4, 120, 197, 0.35);
}

/* ===== CONTENT ===== */
.testimonial-content h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 600;
    color: #0d3b66;
}

.position {
    font-weight: 500;
    margin: 14px 0 20px;
    color: #777;
    font-size: 14px;
    letter-spacing: 0.6px;
}

.quote {
    font-style: italic;
    line-height: 1.9;
    font-size: 15px;
    color: #333;
    position: relative;
}

.quote::before {
    content: "“";
    font-size: 45px;
    position: absolute;
    left: -20px;
    top: -15px;
    color: #c6a75e;
    opacity: 0.5;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .header {
        padding: 70px 15px;
    }

    .header h1 {
        font-size: 28px;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .testimonial-image {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

    .container {
        margin: 60px auto;
    }
}

@media (max-width: 480px) {
    .testimonial-image {
        width: 120px;
        height: 120px;
    }
}

</style>/* End custom CSS */