/* Root Variables */
:root {
    --primary: #0056A6;
    --primary-dark: #003D7A;
    --secondary: #E31837;
    --secondary-light: #FF5A5F;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --container-width: 1200px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Grift', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #fff;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Strong emphasis text uses Poppins */
strong, b {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Header & Mega Menu Styles */
header {
    position: fixed !important;
    /*top: 42px;*/
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header.scrolled {
    top: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo img {
    height: 60px;
}

header.scrolled .header-container {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 95px !important;
    width: auto;
    transition: var(--transition);
}

/*.logo img {*/
/*    height: 120px !important;*/
/*    width: auto;*/
/*    transition: var(--transition);*/
/*    margin-bottom: -56px;*/
/*    margin-top: -17px;*/
/*    background: #fcfcfb;*/
/*    border-bottom: 1px solid #314294;*/
/*}*/


/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 15px;
    gap: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: block;
    padding: 10px 13px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-links > li > a:hover {
    color: var(--primary);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: -410px;
    top: 100%;
    min-width: 800px;
    max-width: 1200px;
    width: auto;
    background-color: white;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 35px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--secondary);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    width: 100%;
    min-width: 0;
}

.mega-menu-column h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.mega-menu-links {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 12px;
    width: 100%;
}

.mega-menu-links .has-submenu {
    width: 100%;
}

.mega-menu-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.mega-menu-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mega-menu-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 180px;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mega-menu-image:hover img {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links > li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-links > li > a {
    display: block;
    padding: 15px 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    text-decoration: none;
}

.mobile-dropdown-content {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.close-mobile-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light);
    padding: 20px 0;
    margin-top: 149px;
    transition: margin-top 0.3s ease;
}

body.scrolled .breadcrumbs {
    margin-top: 107px;
}

.breadcrumbs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-links li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 0.95rem;
}

.breadcrumb-links li:last-child {
    /* color: var(--primary); */
    font-weight: 600;
}

.breadcrumb-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-links a:hover {
    color: var(--primary);
}

.breadcrumb-links .separator {
    margin: 0 8px;
    color: var(--gray);
}

.breadcrumb-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--light);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: var(--gray);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Notification Banner */
.notification-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background-color: white;
    border-left: 5px solid var(--secondary);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
    visibility: hidden;
}

.notification-banner.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notification-header h5 {
    color: var(--secondary);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-header h5 i {
    font-size: 1.2rem;
}

.close-notification {
    cursor: pointer;
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.close-notification:hover {
    color: var(--secondary);
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    background-color: #1CBF63;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        min-width: 600px;
        max-width: 800px;
        grid-template-columns: repeat(2, 1fr);
    }

    #workMegaMenu {
        min-width: 700px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        padding-left: 20px;
        padding-right: 16px;
        font-size: 35px;
    }

    .main-nav .nav-links {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        display: block;
    }

    .breadcrumbs-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .breadcrumb-contact {
        width: 100%;
        justify-content: space-between;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .notification-banner {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .notification-banner {
        width: calc(100% - 40px);
        right: 20px;
        left: auto;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
.cta-section {
    background: linear-gradient(rgba(0, 86, 166, 0.9), rgba(0, 61, 122, 0.95)), url(https://borderlessworldfoundation.org/images/background/image-1.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Pledge Section - Enhanced */
.pledge-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4ff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.pledge-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pledge-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pledge-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pledge-icon {
    text-align: center;
    margin-bottom: 40px;
}

.pledge-icon i {
    font-size: 5rem;
    color: var(--primary);
    animation: heartbeat 2s ease-in-out infinite;
}

.pledge-content {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pledge-quote {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.pledge-quote h2 {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 800;
    margin: 30px 0 15px;
    line-height: 1.2;
}

.pledge-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    font-weight: 500;
}

.blessing-message {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 5px solid #ffc107;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 50px;
    position: relative;
}

.blessing-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2rem;
    color: #ffc107;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--dark);
    line-height: 1.9;
    margin: 0;
    padding-top: 20px;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding: 0 5px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 86, 166, 0.15);
    z-index: -1;
    border-radius: 3px;
}

.pledge-statement {
    margin-bottom: 60px;
}

.statement-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.statement-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.statement-header h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.statement-content {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--light-gray);
}

.opening-line {
    font-size: 2rem;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
}

.pledge-promises {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.promise-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.promise-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 86, 166, 0.3);
}

.promise-text h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.promise-text p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.closing-pledge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.closing-pledge i {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.closing-pledge p {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

.support-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 3px solid var(--light-gray);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-header h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.header-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-icon {
    text-align: center;
}

.support-icon i {
    font-size: 4rem;
    color: var(--secondary);
}

.support-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: center;
}

.emphasis {
    color: var(--secondary);
    font-weight: 700;
    font-style: italic;
}

.organization-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid var(--primary);
}

.info-badge {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-badge i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-text strong {
    font-size: 1.2rem;
    color: var(--primary);
}

.badge-text span {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.registration-type {
    font-style: italic;
    color: var(--secondary);
    font-weight: 600;
}

.support-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rounded-image {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.support-image:hover .rounded-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.image-overlay i {
    font-size: 2rem;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-actions .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.support-actions .btn i {
    font-size: 1.3rem;
}

.support-actions .btn-primary {
    box-shadow: 0 10px 30px rgba(0, 86, 166, 0.3);
}

.support-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 86, 166, 0.4);
}

.support-actions .btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.support-actions .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.4);
}

.support-actions .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.support-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .pledge-content {
        padding: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .pledge-quote h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .pledge-section {
        padding: 60px 0;
    }
    
    .pledge-content {
        padding: 30px 20px;
    }
    
    .pledge-quote h2 {
        font-size: 1.9rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .support-actions {
        flex-direction: column;
    }
    
    .support-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .promise-item {
        flex-direction: column;
        text-align: center;
    }
    
    .promise-item:hover {
        transform: translateY(-5px);
    }
}

/* ============================================================================ */
/* BWF Banner - Professional Design */
/* ============================================================================ */

.bwf-banner {
    background: linear-gradient(135deg, #1a365d 0%, #003d7a 50%, #004487 100%);
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative background elements */
.bwf-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 147, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 147, 213, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Overlay pattern */
.bwf-banner::after {
  /*  content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: 2;
}

.bwf-banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* Breadcrumbs Navigation */
.bwf-banner-breadcrumbs {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 4;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-list a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.breadcrumb-list .separator {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 4px;
}

.breadcrumb-list i {
    font-size: 0.85rem;
}

.bwf-banner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    padding: 0;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    animation: fadeInDown 0.8s ease-out forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.bwf-banner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bwf-banner-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.bwf-banner-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bwf-banner-meta-item .meta-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bwf-banner-meta-item .meta-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.bwf-banner-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.bwf-banner-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bwf-banner-cta .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #1a365d;
}

.bwf-banner-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
}

.bwf-banner-cta .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.bwf-banner-cta .btn-outline:hover {
    background-color: white;
    color: #1a365d;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .bwf-banner {
        padding: 80px 0;
        min-height: 350px;
    }

    .bwf-banner-breadcrumbs {
        bottom: 20px;
        right: 30px;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
        gap: 6px;
    }

    .bwf-banner h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .bwf-banner p {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }

    .bwf-banner-meta {
        gap: 30px;
        margin-top: 35px;
    }

    .bwf-banner-meta-item .meta-number {
        font-size: 2rem;
    }

    .bwf-banner-cta {
        margin-top: 40px;
        gap: 15px;
    }

    .bwf-banner-cta .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .bwf-banner {
        padding: 100px 0;
        min-height: 300px;
    }

    .bwf-banner-breadcrumbs {
        bottom: 15px;
        right: 20px;
    }

    .breadcrumb-list {
        font-size: 0.75rem;
        gap: 4px;
        flex-wrap: wrap;
        max-width: 150px;
        justify-content: flex-end;
    }

    .breadcrumb-list li {
        white-space: nowrap;
    }

    .bwf-banner h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .bwf-banner p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .bwf-banner-meta {
        gap: 20px;
        margin-top: 30px;
        flex-direction: column;
    }

    .bwf-banner-meta-item .meta-number {
        font-size: 1.8rem;
    }

    .bwf-banner-meta-item .meta-label {
        font-size: 0.85rem;
    }

    .bwf-banner-cta {
        margin-top: 35px;
        flex-direction: column;
    }

    .bwf-banner-cta .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .bwf-banner {
        padding: 60px 0;
        min-height: 280px;
    }

    .bwf-banner-breadcrumbs {
        bottom: 12px;
        right: 15px;
    }

    .breadcrumb-list {
        font-size: 0.7rem;
        gap: 3px;
        max-width: 120px;
    }

    .breadcrumb-list a {
        gap: 3px;
    }

    .breadcrumb-list i {
        font-size: 0.7rem;
    }

    .bwf-banner h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .bwf-banner p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .bwf-banner-meta {
        gap: 15px;
        margin-top: 25px;
    }

    .bwf-banner-meta-item .meta-number {
        font-size: 1.5rem;
    }

    .bwf-banner-meta-item .meta-label {
        font-size: 0.8rem;
    }

    .bwf-banner-cta {
        margin-top: 25px;
    }

    .bwf-banner-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Global Styles - FIXED FOR MOBILE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%; /* Prevent elements from exceeding viewport */
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative;
}


.bwf-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px 60px;
    margin-top: 0;
}



/*this is to make justify for all the content og website */
.content-grid {
    text-align: justify;
}
.content-text {
    text-align: justify;
}
.founder-info {
    text-align: justify;
}
