/* Color Palette */
:root {
    --bs-primary: #5e61e6; /* Closest to the original original button color */
    --bs-primary-rgb: 94, 97, 230;
}

.hero-area {
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../img/leak-img-01.jpg'); /* The original slide background */
    background-size: cover;
    background-position: center;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--bs-primary);
    margin-top: 15px;
}

/* Service Card Hover Effect */
.service-card {
    transition: transform 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Blob effect for images like the original design */
.teal-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e0f2f1;
    top: 20px;
    left: 20px;
    border-radius: 8px;
    z-index: 0;
}

.z-1 { z-index: 1; }

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Custom Purple for Buttons and Links */
.btn-outline-purple {
    color: #6366f1;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background-color: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* The Support Card */
.media-chat-card {
    background-color: #fcfaff; /* Very light purple/white tint from image */
    border-left: 5px solid #6366f1; /* The bold vertical blue/purple line */
    position: relative;
    min-height: 200px;
}

.contact-label {
    color: #6366f1;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.support-link {
    color: #6366f1;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.support-link:hover {
    text-decoration: underline !important;
}

/* Image sequence mapping for your icon folder */
/* img/leak-img-icon-05.svg should be the chat bubbles icon */