     /* ==========================================
   Addition-css.css SPONSOR A CHILD HOMEPAGE SECTION
   ========================================== */

.sponsor-child-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.sponsor-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sponsor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.sponsor-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(72, 187, 120, 0.05) 0%, transparent 50%);
}

.sponsor-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left Content */
.sponsor-text-content {
    color: white;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sponsor-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.sponsor-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Features Grid */
.sponsor-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Mini Stats */
.sponsor-stats-mini {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-mini-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Buttons */
.sponsor-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-sponsor {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 1.3rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
    text-decoration: none;
}

.btn-sponsor:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.4);
}

.btn-sponsor svg {
    transition: transform 0.3s ease;
}

.btn-sponsor:hover svg {
    transform: translateX(5px);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    padding: 1.3rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Right Content - Image Grid */
.sponsor-image-content {
    position: relative;
}

.sponsor-image-wrapper {
    position: relative;
    height: 600px;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.card-1 {
    width: 280px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    width: 260px;
    height: 350px;
    top: 50px;
    right: 0;
    z-index: 2;
    animation: cardFloat2 6s ease-in-out infinite 1s;
}

.card-3 {
    width: 240px;
    height: 320px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: cardFloat3 6s ease-in-out infinite 2s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-card-overlay {
    opacity: 1;
}

.child-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.3rem 0;
}

.child-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: 20px;
    z-index: 5;
}

.badge-2 {
    bottom: 20px;
    right: 100px;
    z-index: 5;
    animation-delay: 1s;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon-large {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sponsor-content {
        gap: 3rem;
    }
    
    .sponsor-title {
        font-size: 3rem;
    }
    
    .sponsor-image-wrapper {
        height: 500px;
    }
    
    .card-1 {
        width: 240px;
        height: 320px;
    }
    
    .card-2 {
        width: 220px;
        height: 290px;
    }
    
    .card-3 {
        width: 200px;
        height: 270px;
    }
}

@media (max-width: 992px) {
    .sponsor-child-section {
        padding: 5rem 0;
    }
    
    .sponsor-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .sponsor-text-content {
        text-align: center;
    }
    
    .sponsor-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sponsor-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sponsor-stats-mini {
        justify-content: center;
    }
    
    .sponsor-cta {
        justify-content: center;
    }
    
    .sponsor-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sponsor-title {
        font-size: 2.5rem;
    }
    
    .sponsor-description {
        font-size: 1.1rem;
    }
    
    .sponsor-features {
        grid-template-columns: 1fr;
    }
    
    .sponsor-stats-mini {
        gap: 2rem;
    }
    
    .stat-mini-number {
        font-size: 2rem;
    }
    
    .sponsor-image-wrapper {
        height: 450px;
    }
    
    .card-1 {
        width: 200px;
        height: 280px;
    }
    
    .card-2 {
        width: 180px;
        height: 250px;
    }
    
    .card-3 {
        width: 160px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .sponsor-child-section {
        padding: 4rem 0;
    }
    
    .sponsor-title {
        font-size: 2rem;
    }
    
    .sponsor-description {
        font-size: 1rem;
    }
    
    .sponsor-stats-mini {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .sponsor-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-sponsor,
    .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }
    
    .sponsor-image-wrapper {
        height: 350px;
    }
    
    .card-1 {
        width: 160px;
        height: 220px;
    }
    
    .card-2 {
        width: 140px;
        height: 200px;
    }
    
    .card-3 {
        width: 120px;
        height: 180px;
    }
    
    .floating-badge {
        padding: 0.8rem 1.2rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

/* Sponsor DB Cards */
.sponsor-db-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.sponsor-db-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.sponsor-db-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sponsor-db-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sponsor-db-card:hover .sponsor-db-card__img-wrap img {
    transform: scale(1.07);
}

.sponsor-db-card__urgent {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    animation: pulse 2s ease-in-out infinite;
}

.sponsor-db-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.sponsor-db-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.sponsor-db-card__body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.sponsor-db-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.sponsor-db-card__body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.sponsor-db-card__btn {
    display: inline-block;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(72,187,120,0.3);
}

.sponsor-db-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(72,187,120,0.45);
}