/* Blood Page Specific Styles */
.blood-hero {
    background-color: #d1e7dd; /* Light teal background */
    padding: 30px 0;
    text-align: center;
    border-bottom: 5px solid #fff;
    font-family: 'Hind Siliguri', sans-serif;
}

.blood-hero-title {
    font-size: 26px;
    font-weight: 700;
    color: #dc3545; /* Red */
    margin-bottom: 5px;
}

.blood-hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #dc3545; /* Red */
    line-height: d1.4;
}

/* Announcement Bar - Reused logic but specific class */
.blood-announcement-bar {
    background-color: #1a5c53; /* Dark green */
    color: white;
    padding: 10px 0;
    font-family: 'Hind Siliguri', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blood-register-btn {
    background-color: #2fb344;
    color: #000;
    font-weight: bold;
    padding: 5px 20px;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: 20px;
    display: inline-block;
}
.blood-register-btn:hover {
    color: #000;
    background-color: #269237;
}

/* Blood Group Cards */
.blood-card-new {
    background: #fff;
    border: 2px solid #ccc; /* Light grey border */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blood-card-new:hover {
    transform: translateY(-5px);
}

.blood-drop-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}
/* Creating a pure CSS blood drop if image not available, or use SVG */
.blood-drop-svg {
    width: 80px;
    height: 120px;
    fill: none;
    stroke: #dc3545;
    stroke-width: 5;
}

.blood-group-name {
    font-size: 32px;
    font-weight: 700;
    color: #dc3545;
}

.blood-count {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: -5px;
}

/* Why Donate Section */
.why-donate-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.donate-header {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.feature-icon {
    font-size: 40px;
    color: #dc3545;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Blood Card with Icon Image */
.blood-card-with-icon {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blood-card-with-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
}

.blood-icon-wrapper {
    position: relative;
    display: inline-block;
    width: 160px;
    height: 160px;
}

.blood-drop-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.blood-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding-top: 8px;
}

.blood-type-text {
    font-size: 32px;
    font-weight: 700;
    color: #dc3545;
    text-shadow: none;
    margin-bottom: 0px;
    line-height: 1;
    font-family: 'Hind Siliguri', sans-serif;
}

.blood-count-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-shadow: none;
    line-height: 1;
    font-family: 'Hind Siliguri', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blood-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .blood-type-text {
        font-size: 22px;
    }
    
    .blood-count-text {
        font-size: 12px;
    }
    
    .blood-card-with-icon {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .blood-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .blood-type-text {
        font-size: 18px;
    }
    
    .blood-count-text {
        font-size: 10px;
    }
    
    .blood-card-with-icon {
        padding: 8px;
    }
}

