
#shader{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
}

.blog-container {
    position:relative;
    z-index:2;
}

/* About Us Page Styles */
.support-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
}

/* Title */
.support-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

/* Payments Section */
.payments-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* ✅ allow wrapping */
}

.buy-tea-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8b4513, #b75a1a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 6px 14px rgba(139, 69, 19, 0.25);
}

.buy-tea-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 8px 18px rgba(139, 69, 19, 0.3);
}

.buy-tea-btn:focus-visible {
    outline: 3px solid #4a9b8e;
    outline-offset: 2px;
}

.buy-tea-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Individual Profile */
.payment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 200px; /* ✅ responsive sizing */
    max-width: 250px;
}

/* Profile Image */
.profile-image {
    width: 120px;
    height: 120px; /* ✅ fixed square */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Name */
.profile-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

/* Title */
.profile-title {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
    text-align: center;
}

/* Social Icons */
.profile-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.profile-social-icon:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
}

.profile-social-icon i {
    font-size: 16px;
}

/* Description */
.support-description {
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}

/* ===================== */
/* Tablet (≤ 768px) */
/* ===================== */
@media (max-width: 768px) {
    .support-card {
        padding: 30px 20px;
    }

    .support-title {
        font-size: 26px;
        text-align: center; /* better for tablet */
    }

    .payments-section {
        gap: 20px;
    }

    .payment-section {
        flex: 1 1 45%; /* 2 columns */
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 18px;
    }

    .support-description {
        font-size: 15px;
    }
}

/* ===================== */
/* Mobile (≤ 480px) */
/* ===================== */
@media (max-width: 480px) {
    .support-card {
        padding: 20px 15px;
    }

    .support-title {
        font-size: 22px;
        text-align: center;
    }

    .payments-section {
        flex-direction: column; /* ✅ stack vertically */
        gap: 25px;
    }

    .payment-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .profile-image {
        width: 90px;
        height: 90px;
    }

    .profile-name {
        font-size: 16px;
    }

    .profile-social-icon {
        width: 35px;
        height: 35px;
    }

    .profile-social-icon i {
        font-size: 14px;
    }

    .support-description {
        font-size: 14px;
    }
}