.header-title {
    background: linear-gradient(268.18deg, #4CAAB3 31.71%, #186DA1 106.24%);
    -webkit-background-clip: text; /* Ensures the gradient applies to the text */
    -webkit-text-fill-color: transparent; /* Makes the text transparent to show the background gradient */
    font-size: 27px;
}

.header-description {
    color: rgba(10, 64, 69, 1);
    font-size: 20px;
    font-weight: lighter;
}

.header-btn {
    background: linear-gradient(263.15deg, #4CAAB3 -21.82%, #4A92BC 149.47%);
    padding: 12px 16px 12px 16px;
    border-radius: 16px;
    font-size: 16px;
    color: rgba(249, 254, 255, 1);
    font-weight: bold;
}

.store-btn {
    background: linear-gradient(262.82deg, #EBFCFC -1.8%, #E4F2F3 100.9%);
    border-radius: 16px;
    border: 1px solid rgba(76, 170, 179, 1);
    padding: 10px 25px 10px 25px;
    color: rgba(38, 132, 140, 1) !important;

}

.support-btn {
    background: rgba(255, 228, 224, 1);
    border-radius: 16px;
    border: 1px solid rgba(255, 177, 165, 1);
    padding: 10px 25px 10px 25px;
    color: rgba(10, 64, 69, 1) !important;
}

.support-section {
    direction: rtl;
}

.support-wrapper {
    border-radius: 24px;
}

.support-visual {
    max-height: 340px;
}

.support-card {
    background: linear-gradient(262.82deg, #f8ffff -1.8%, #eef9fa 100.9%);
    border: 1px solid rgba(76, 170, 179, 0.25);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 14px 35px rgba(24, 109, 161, 0.08);
}

.support-description {
    color: rgba(10, 64, 69, 1);
    font-size: 16px;
}

.support-hours {
    font-size: 15px;
    color: rgba(38, 132, 140, 1);
    font-weight: 600;
}

.support-divider {
    margin: 18px 0 14px;
    text-align: right;
    color: rgba(10, 64, 69, 0.85);
    font-size: 14px;
    position: relative;
    padding-right: 6px;
}

.support-divider::before,
.support-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 26%;
    border-top: 1px dashed rgba(76, 170, 179, 0.45);
}

.support-divider::before {
    right: auto;
    left: 0;
}

.support-divider::after {
    left: auto;
    right: 42%;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.support-channel-btn {
    padding: 12px 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    gap: 10px !important;
    justify-content: flex-start !important;
}

.support-channel-btn:hover {
    background: rgba(255, 214, 207, 1);
    border-color: rgba(255, 146, 128, 1);
    transform: translateY(-2px);
}

.support-channel-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(255, 177, 165, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-channel-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.support-channel-icon-bale {
    background: #ffffff;
    border: 1px solid rgba(255, 177, 165, 0.8);
    color: rgba(10, 64, 69, 1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.testomonial-section{
    background: rgba(255, 228, 224, 1);
    border-radius: 16px;

}

@media (max-width: 991.98px) {
    .support-card {
        padding: 22px 18px;
    }

    .support-channels {
        grid-template-columns: 1fr;
    }

    .support-visual {
        max-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .support-divider::before,
    .support-divider::after {
        width: 18%;
    }

    .support-channel-btn {
        font-size: 14px;
        padding: 11px 12px;
    }

    .support-channel-icon {
        width: 32px;
        height: 32px;
    }

    .support-divider::after {
        right: 48%;
    }
}


