:root {
    --ntf-blue: #1f5fbf;
    --ntf-teal: #2f7f8f;
    --ntf-dark: #132238;
    --ntf-soft: #f5f7fb;
    --ntf-border: #e4eaf2;
    --ntf-gold: #1f5fbf;
    --ntf-accent: #fbfffe;
    --ntf-success: #fcfdfd;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ntf-dark);
    background: linear-gradient(180deg, #ffffff 0%, var(--ntf-soft) 100%);
}
.navbar-glass {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ntf-border);
    box-shadow: 0 8px 24px rgba(19,34,56,0.08);
}
.navbar-glass .nav-link {
    color: var(--ntf-dark);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-glass .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ntf-blue);
    transition: width 0.3s ease;
}
.navbar-glass .nav-link:hover {
    color: var(--ntf-blue);
}
.navbar-glass .nav-link:hover::after {
    width: 100%;
}
.brand-name {
    color: var(--ntf-dark);
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    font-weight: 700;
}
.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.brand-logo:hover {
    transform: scale(1.05);
}
.hero {
    background: linear-gradient(120deg, rgba(31,95,191,0.95), rgba(47,127,143,0.95)), url('/Reference images/WhatsApp Image 2026-07-06 at 19.59.48.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(19,34,56,0.18);
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31,95,191,0.08), transparent);
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(31,95,191,0.15);
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}
.card-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(31, 95, 191, 0.08);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 95, 191, 0.15);
}
.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card-hover:hover .gallery-image {
    transform: scale(1.05);
}
.home-carousel {
    position: relative;
}
.carousel-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.carousel-item.active .carousel-image {
    animation: zoomIn 0.8s ease forwards;
}
@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.02);
    }
}
.carousel-caption {
    background: rgba(19, 34, 56, 0.75);
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gallery-peek {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
}
.gallery-peek::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}
.gallery-peek-row {
    max-height: 280px;
    overflow: hidden;
    border-radius: 1.2rem;
}
.preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.donation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--ntf-blue);
    border-radius: 1rem;
    color: white;
}
.bg-gradient {
    background: linear-gradient(135deg, rgba(31,95,191,0.05) 0%, rgba(47,127,143,0.05) 100%);
}
.card-donation {
    border: 2px solid var(--ntf-border);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card-donation:hover {
    border-color: var(--ntf-blue);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(31, 95, 191, 0.15);
}
.bank-details {
    background: rgba(31, 95, 191, 0.12);
    padding: 1.25rem;
    border-radius: 0.85rem;
    border-left: 4px solid var(--ntf-blue);
}
.detail-item strong {
    color: var(--ntf-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.detail-item p {
    margin: 0.3rem 0 0 0;
    font-size: 1rem;
    color: var(--ntf-dark);
    font-weight: 500;
}
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--ntf-blue);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.donation-reasons {
    list-style: none;
    padding: 0;
}
.donation-reasons li {
    padding-left: 1.8rem;
    position: relative;
}
.donation-reasons li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ntf-success);
    font-weight: 900;
    font-size: 1.1rem;
}
.cta-section {
    background: linear-gradient(135deg, var(--ntf-blue) 0%, var(--ntf-teal) 100%);
    box-shadow: 0 16px 40px rgba(31, 95, 191, 0.2);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
.footer-modern {
    background: #ffffff;
    border-top: 2px solid var(--ntf-border);
    color: var(--ntf-dark);
}
.footer-modern a {
    color: var(--ntf-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-modern a:hover {
    color: var(--ntf-blue);
}
.table th,
.table td {
    vertical-align: middle;
}
.btn-outline-primary {
    border-color: var(--ntf-blue);
    color: var(--ntf-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: var(--ntf-blue);
    border-color: var(--ntf-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(31, 95, 191, 0.2);
}
.btn-light {
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

