.py-60 {
    padding: 60px 0 60px 0;
}

.t-pt-60 {
    padding-top: 60px;
}

.footer-widget__info__text .text-black-b {
    color: #000 !important;
}

/*  */
/* --- Card Item Blueprint Styling --- */
.corporate-card {
    position: relative;
    height: 430px;
    background-color: #111111;
    /* Default dark background before hover */
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    overflow: hidden;
    padding: 35px 25px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: background-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Background Pattern Setup */
.corporate-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Subtle visibility before hover */
    transform: scale(1.02);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    z-index: 1;
}

/* Gradient Overlay Layer */
.corporate-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default dark overlay gradient */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 1;
    transition: background 0.4s ease;
    /* Transitions the gradient mix cleanly */
    z-index: 2;
}

/* Content Wrapper */
.corporate-card .card-content {
    position: absolute;
    bottom: 35px;
    left: 25px;
    right: 25px;
    z-index: 3;
}

/* Absolute Corner Alignment */
.corporate-card .card-number {
    position: absolute;
    top: 35px;
    right: 25px;
    z-index: 4;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 0.8;
    transition: color 0.4s ease;
}

/* Brand Accent Vector Icon */
.corporate-card .card-icon {
    width: 46px;
    height: 46px;
    color: #DA2927;
    margin-bottom: 18px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.corporate-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.corporate-card .card-title {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 700;
    transition: color 0.4s ease;
}

/* --- Content Reveal Logic --- */
.corporate-card .card-hidden-details p {
    font-size: 0.9rem;
    color: #b3b3b3;
    line-height: 1.5;
    margin: 10px 0 0 0;
    transition: color 0.4s ease;
}

/* Premium Icon List */
.corporate-card .card-list {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease, margin 0.4s ease;
}

.corporate-card .card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #a6a6a6;
    margin-bottom: 8px;
    line-height: 1.4;
}

.corporate-card .card-list .list-icon {
    width: 16px;
    height: 16px;
    color: #DA2927;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- HOVER VARIATIONS & THEME INTEGRATION --- */

/* RED VARIATION HOVER */
.corporate-card.hover-red:hover {
    background-color: #E23B33;
    border-color: #E23B33;
}

.corporate-card.hover-red:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(226, 59, 51, 0.85) 100%);
}

/* YELLOW VARIATION HOVER */
.corporate-card.hover-yellow:hover {
    background-color: #F2B42B;
    /* Sets solid backing frame color */
    border-color: #F2B42B;
}

.corporate-card.hover-yellow:hover .card-overlay {
    /* Swaps overlay with your exact color code gradient mix style */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(255, 180, 12, 0.85) 100%);
}

/* GLOBAL HOVER ACTIONS FOR PATTERN INVERSION */
.corporate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.corporate-card:hover .card-bg {
    opacity: 0.25;
    transform: scale(1);
    filter: brightness(0) invert(1);
    /* Forces grid lines to become glowing white */
}

.corporate-card:hover .card-number {
    color: rgba(255, 255, 255, 0.2);
}

.corporate-card:hover .card-icon {
    color: #ffffff;
    transform: scale(0.92);
}

.corporate-card:hover .card-title,
.corporate-card:hover .card-hidden-details p,
.corporate-card:hover .card-list li {
    color: #ffffff;
}

.corporate-card:hover .card-list .list-icon {
    color: #ffffff;
}

.corporate-card:hover .card-list {
    opacity: 1;
    max-height: 200px;
    margin-top: 14px;
    transform: translateY(0);
}

/*  */
@media (max-width: 767px) {
    .donate-one__image {
        position: unset !important;
        ;
        left: unset !important;
        bottom: unset !important;
        z-index: 1;
    }

    .py-60 {
        padding: 30px 0 30px 0;
    }

    .main-slider-one__carousel.owl-carousel .owl-nav {
        bottom: 40px !important;
    }

    .support-one {
        margin: 30px 0;
    }
}