/* ================================================
   ENHANCED ABOUT PAGE - EXTRAORDINARY DESIGN
   ================================================ */

/* Enhanced Hero Section */
.enhanced-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A303A 0%, #167287 50%, #0A303A 100%);
    min-height: 450px;
}

.enhanced-hero .breadcrumb-title {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.enhanced-hero .breadcrumb-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.enhanced-hero .breadcrumb-content {
    position: relative;
    z-index: 10;
}

.enhanced-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
    z-index: 1;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float-shapes 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(246, 143, 41, 0.2), rgba(233, 93, 58, 0.2));
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(22, 114, 135, 0.2), rgba(10, 48, 58, 0.2));
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(246, 143, 41, 0.2));
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 40%;
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(233, 93, 58, 0.2), rgba(246, 143, 41, 0.2));
}

@keyframes float-shapes {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* Hero Badge Small */
.hero-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 3s infinite;
    position: relative;
    z-index: 10;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 20px;
    animation: bounce-gentle 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(246, 143, 41, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(246, 143, 41, 0.6);
    }
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #F68F29, #E95D3A);
    color: #fff !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(246, 143, 41, 0.3);
    text-shadow: none;
}

/* Content Divider */
.content-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F68F29, #E95D3A);
    border-radius: 2px;
    margin: 20px 0;
    position: relative;
}

.content-divider::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #F68F29;
    border-radius: 50%;
}

/* Enhanced Section Styling */
.enhanced-section {
    position: relative;
    overflow: hidden;
}

.section-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(246, 143, 41, 0.05), rgba(233, 93, 58, 0.05));
    filter: blur(60px);
    z-index: 0;
}

.section-decoration.left {
    top: 10%;
    left: -150px;
}

.section-decoration.right {
    bottom: 10%;
    right: -150px;
}

/* TV Frame Enhancements */
.tv-frame {
    position: relative;
}

.tv-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(246, 143, 41, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    animation: tv-pulse 4s infinite;
    z-index: -1;
}

@keyframes tv-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Stat Boxes */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: linear-gradient(135deg, #fff, #FFF9F5);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 48, 58, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(246, 143, 41, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #F68F29;
    box-shadow: 0 15px 40px rgba(246, 143, 41, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #F68F29, #E95D3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #0A303A;
    font-weight: 600;
}

/* Enhanced List */
.enhanced-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.enhanced-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 48, 58, 0.05);
    transition: all 0.3s ease;
}

.enhanced-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(10, 48, 58, 0.1);
}

.list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #F68F29, #E95D3A);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #FFF9F5, #FFE9D6);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #F68F29;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(246, 143, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
}

.highlight-box p {
    margin: 0;
    color: #0A303A;
    font-style: italic;
}

/* Enhanced Button */
.enhanced-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #F68F29, #E95D3A);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(246, 143, 41, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.enhanced-btn:hover::before {
    left: 100%;
}

.enhanced-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(246, 143, 41, 0.5);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.enhanced-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Impact Highlight */
.impact-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #E9F7F8, #FFF9F5);
    padding: 24px;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(22, 114, 135, 0.1);
}

.impact-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: rotate-pulse 3s infinite;
}

@keyframes rotate-pulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.impact-stat {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 48, 58, 0.05);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 48, 58, 0.15);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: #0A303A;
}

/* Investor Section */
.investor-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.investor-wrapper {
    background: #fff;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 48, 58, 0.1);
}

.investor-head {
    background: linear-gradient(135deg, #F68F29 0%, #E95D3A 50%, #F68F29 100%);
    padding: 50px 0px 80px 0px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.investor-head::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

.investor-head::after {
    /* Hidden: remove decorative bottom wave and thin line seen under the hero.
       Kept in place for easy re-enable if needed. */
    display: none;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.investor-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.investor-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.investor-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    padding: 60px 20px 80px 20px;
}

.investor-block {
    padding: 40px 30px;
    border-right: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
}

.investor-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 143, 41, 0.03), rgba(233, 93, 58, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0;
}

.investor-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F68F29, #E95D3A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.investor-block:hover::before {
    opacity: 1;
}

.investor-block:hover::after {
    opacity: 1;
}

.investor-block:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(246, 143, 41, 0.15);
    z-index: 1;
}

.investor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF9F5, #FFE9D6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(246, 143, 41, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.investor-block:hover .investor-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(246, 143, 41, 0.35);
    background: linear-gradient(135deg, #FFE9D6, #FFF9F5);
}

.investor-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

.investor-block:hover .investor-icon svg {
    transform: scale(1.1);
}

.investor-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0A303A;
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.investor-block:hover h4 {
    color: #F68F29;
}

.investor-block p {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.investor-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.investor-block ul li {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.investor-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F68F29;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.investor-block:hover ul li::before {
    transform: scale(1.2);
}

.investor-block ul li:hover {
    color: #0A303A;
    padding-left: 32px;
}

/* Newsletter Section - Keep Original Design */

/* Rounded Feature Card Enhancements */
.rounded-feature-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #FFF9F5 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.foundation-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.foundation-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-foundation 20s infinite ease-in-out;
}

.foundation-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(246, 143, 41, 0.1), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.foundation-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(22, 114, 135, 0.1), transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.foundation-shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 93, 58, 0.1), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-foundation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.rounded-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(10, 48, 58, 0.12);
    overflow: hidden;
    border: 2px solid rgba(246, 143, 41, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.rounded-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(10, 48, 58, 0.18);
}

.rounded-card-inner {
    padding: 0;
}

.rounded-card-head {
    background: linear-gradient(135deg, #F68F29 0%, #E95D3A 50%, #F68F29 100%);
    padding: 60px 40px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rounded-card-head::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-bg 15s linear infinite;
}

.rounded-card-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.foundation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: float-badge 3s infinite ease-in-out;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.foundation-badge .badge-icon {
    font-size: 20px;
    animation: rotate-icon 4s infinite ease-in-out;
}

@keyframes rotate-icon {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

.rounded-card-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.nonprofit-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 16px;
    border-radius: 20px;
    margin-left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    vertical-align: middle;
}

.rounded-card-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 30px;
    max-width: 700px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* Foundation Stats Mini */
.foundation-stats-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-mini-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-mini-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rounded-card-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 60px 0;
    background: #fff;
}

.feature-mini {
    padding: 40px 35px;
    border-right: 1px solid rgba(10, 48, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-mini:last-child {
    border-right: none;
}

.feature-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 143, 41, 0.05), rgba(233, 93, 58, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F68F29, #E95D3A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-mini:hover::before {
    opacity: 1;
}

.feature-mini:hover::after {
    opacity: 1;
}

.feature-mini:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(10, 48, 58, 0.12);
    z-index: 2;
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.feature-mini .card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFF9F5, #FFE9D6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(246, 143, 41, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #F68F29;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.feature-mini:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(246, 143, 41, 0.4);
    background: linear-gradient(135deg, #FFE9D6, #FFF9F5);
}

.feature-mini .card-icon svg {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.feature-mini:hover .card-icon svg {
    transform: scale(1.1);
}

.feature-mini .card-text {
    position: relative;
    z-index: 1;
}

.feature-mini .card-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0A303A;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.feature-mini:hover .card-text h4 {
    color: #F68F29;
}

.feature-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F68F29, #E95D3A);
    margin: 0 auto 20px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-mini:hover .feature-divider {
    width: 70px;
}

.feature-mini .card-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-mini .card-text ul li {
    font-size: 15px;
    color: #5A6C7D;
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-mini .card-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #F68F29;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.feature-mini .card-text ul li:hover {
    color: #0A303A;
    padding-left: 32px;
}

.feature-mini .card-text ul li:hover::before {
    transform: scale(1.3);
}

/* Foundation CTA Section */
.foundation-cta-section {
    background: linear-gradient(135deg, #F5EFE7, #FFF9F5);
    padding: 50px 40px;
    border-top: 2px solid rgba(246, 143, 41, 0.1);
    position: relative;
    overflow: hidden;
}

.foundation-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(246, 143, 41, 0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 60px;
    animation: pulse-heart 2s infinite;
}

@keyframes pulse-heart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-text {
    text-align: center;
}

.cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0A303A;
    margin: 0 0 10px 0;
}

.cta-text p {
    font-size: 18px;
    color: #5A6C7D;
    margin: 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-foundation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-foundation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-foundation:hover::before {
    left: 100%;
}

.btn-donate {
    background: linear-gradient(135deg, #E95D3A, #F68F29);
    color: #fff !important;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 93, 58, 0.4);
}

.btn-volunteer {
    background: linear-gradient(135deg, #167287, #0A303A);
    color: #fff !important;
}

.btn-volunteer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 114, 135, 0.4);
}

.btn-partner {
    background: #fff;
    color: #F68F29 !important;
    border: 2px solid #F68F29;
    box-shadow: 0 5px 20px rgba(246, 143, 41, 0.2);
}

.btn-partner:hover {
    background: #F68F29;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(246, 143, 41, 0.4);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-foundation:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .investor-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .investor-block:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .stat-boxes {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .investor-body {
        grid-template-columns: 1fr;
    }

    .investor-block {
        border-right: none;
    }

    .rounded-card-body {
        grid-template-columns: 1fr;
    }

    .feature-mini {
        border-right: none;
        border-bottom: 1px solid rgba(10, 48, 58, 0.08);
    }

    .feature-mini:last-child {
        border-bottom: none;
    }

    .enhanced-hero {
        min-height: 350px;
    }

    .impact-highlight {
        flex-direction: column;
        text-align: center;
    }

    .foundation-stats-mini {
        flex-direction: column;
        gap: 15px;
    }

    .stat-mini {
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-foundation {
        justify-content: center;
    }

    .rounded-card-head {
        padding: 40px 20px;
    }

    .foundation-cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .investor-title {
        font-size: 24px;
    }

    .investor-sub {
        font-size: 16px;
    }

    .rounded-card-title {
        font-size: 28px;
    }

    .nonprofit-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .rounded-card-subtitle {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-mini-number {
        font-size: 24px;
    }

    .stat-mini-label {
        font-size: 11px;
    }

    .enhanced-list li {
        padding: 12px;
    }

    .enhanced-hero .breadcrumb-title {
        font-size: 36px;
    }

    .enhanced-hero .breadcrumb-subtitle {
        font-size: 16px;
    }

    .section-label {
        font-size: 12px;
        padding: 5px 12px;
    }

    .feature-mini .card-icon {
        width: 80px;
        height: 80px;
    }

    .feature-mini .card-icon svg {
        width: 36px;
        height: 36px;
    }

    .cta-text h3 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .btn-foundation {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* History Section Enhancements */
.history-section {
    padding: 80px 0;
    background: #fff;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Graduates Section Enhancements */
.graduates-section {
    position: relative;
}

.graduates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.graduates-image-wrapper {
    position: relative;
    height: 600px;
}

.graduates-image-parallax {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 48, 58, 0.15);
    transition: transform 0.3s ease;
}

.graduates-image-parallax:hover {
    transform: scale(1.02);
}

.graduates-image-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .graduates-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .graduates-image-wrapper {
        height: 400px;
    }
}
