@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

        :root {
            --primary: #008b44;
            --primary-dark: #006b34;
            --accent: #D4AF37;
            --green: #008b44;
            --text-main: #2d3436;
            --text-sub: #636e72;
            --card-bg: #ffffff;
            --hosp-green: #008b44;
            --hosp-blue: #004a87;
            --hosp-dark: #0f172a;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.4);
            /* Slower, more elegant cubic-bezier for smoothness */
            --transition-smooth: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
                        --alshifa-green: #008b44;
            --alshifa-gold: #f1b434;
            --bg-light: #f8fafc;
            --secondary: #1e293b;
            --text-main: #334155;
            --text-light: #64748b;
            --bg-body: #f1f5f9;
            --asiec-blue: #0284c7;
            --afna-green: #16a34a;
            --primary-impact: #0f172a;
            --accent-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-rose: #f43f5e;
            --accent-emerald: #10b981;
            --text-muted: #475569;
            /* Darker background colors */
            --bg-base: #f1f5f9; 
            --brand-green: #008b44;
            --brand-blue: #004a80;
            --soft-green: #eaf6ef;
            --soft-blue: #eef4f9;
            --accent-gold: #c5a059;
        }


        .section-padding {
            padding: 80px 0;
        }

        /* Modern Header Section */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--hosp-green);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .section-header h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 42px;
            color: var(--hosp-dark);
            letter-spacing: -1px;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .header-accent {
            width: 80px;
            height: 6px;
            background: linear-gradient(90deg, var(--hosp-green), #2ecc71);
            margin: 0 auto;
            border-radius: 10px;
        }

        /* Main Grid Wrapper */
        .hospital-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Centering the Upcoming Grid */
        .upcoming-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Basis for the span */
            max-width: 1140px;
            margin: 0 auto 60px auto;
            gap: 30px;
        }

        /* Specific rule for the big Lahore card */
        .hosp-card-wide {
            grid-column: span 2;
        }

        /* Glassmorphism Card Design - Reduced Height to 400px */
        .hosp-card-v9 {
            position: relative;
            height: 400px; 
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .hosp-card-v9:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 74, 135, 0.12);
        }

        /* Image Layer */
        .hosp-img-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hosp-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            /* Extra long transition for the image zoom */
            transition: transform 1.5s cubic-bezier(0.2, 1, 0.2, 1);
        }

        .hosp-card-v9:hover .hosp-img {
            transform: scale(1.1);
        }

        /* Content Overlay - Glassmorphism */
        .hosp-glass-overlay {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 20px;
            z-index: 2;
            transition: var(--transition-smooth);
            max-height: 110px; /* Slimmer idle state */
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .hosp-card-v9:hover .hosp-glass-overlay {
            bottom: 20px;
            max-height: 340px; 
            background: rgba(255, 255, 255, 0.98);
        }

        /* Badge & Title */
        .hosp-tag {
            background: var(--hosp-green);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 8px;
            align-self: flex-start;
        }

        .hosp-title {
            color: var(--hosp-dark);
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            transition: color 0.3s;
        }

        /* Description - Animated height/opacity */
        .hosp-desc {
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition-smooth);
            margin-top: 15px;
        }

        .hosp-card-v9:hover .hosp-desc {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Technical Info Pills */
        .tech-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .hosp-card-v9:hover .tech-pills {
            opacity: 1;
        }

        .pill {
            background: #f1f5f9;
            color: var(--hosp-blue);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
        }

        /* Sections Dividers */
        .label-divider {
            text-align: center;
            margin: 60px 0 40px 0;
            position: relative;
        }

        .label-divider span {
            background: #f8fafc;
            padding: 0 30px;
            font-weight: 700;
            color: var(--hosp-green);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }

        .label-divider::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
            background: #e2e8f0;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .hosp-glass-overlay { max-height: 400px; opacity: 1; bottom: 15px; }
            .hosp-desc, .tech-pills { opacity: 1; visibility: visible; transform: none; }
            .hospital-grid, .upcoming-grid { grid-template-columns: 1fr; }
            .hosp-card-wide { grid-column: span 1; }
            .section-header h2 { font-size: 32px; }
        }



        /* President Message */


        .section-wrapper {
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Abstract background elements */
        .bg-blob {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .blob-1 { top: -300px; left: -200px; }
        .blob-2 { bottom: -300px; right: -200px; }

        .container-fluid {
            padding-left: 1%;
            padding-right: 1%;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 992px) {
            .flex-row {
                display: flex;
                align-items: flex-start;
            }
            /* President Column (Now on Right) */
            .content-col {
                padding-left: 50px;
                border-left: 1px solid #f1f5f9;
            }
            /* Mission/Vision Column (Now on Left) */
            .mv-col {
                padding-right: 50px;
            }
        }

        .accent-pill {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .display-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        /* --- PRESIDENT COLUMN STYLES --- */
        .description-text {
            font-size: 15px;
            line-height: 1.7;
            color: #475569;
        }
        
        .description-text p {
            margin-bottom: 20px;
        }

        .signature-area {
            margin-top: 30px;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

        .president-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: #0f172a;
            margin: 0;
        }

        .president-title {
            font-size: 13px;
            color: #10b981;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 3px;
        }

        /* --- STYLISH HOVER PICTURE WITH DOTTED BORDER --- */
        .image-wrapper {
            position: relative;
            padding: 5px;
            max-width: 400px; 
            margin-bottom: 25px;
        }

        .ui-frame {
            position: relative;
            z-index: 5;
            background: #ffffff;
            padding: 8px;
            border-radius: 30px;
            box-shadow: 0 15px 35px rgba(209, 217, 230, 0.5);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Dotted Border Animation */
        .ui-frame::before {
            content: '';
            position: absolute;
            inset: -12px;
            border: 2px dashed #10b981;
            border-radius: 40px;
            opacity: 0.15;
            z-index: -1;
            transition: all 0.6s ease;
        }

        .ui-frame img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 22px;
            transition: all 0.5s ease;
        }

        /* Hover States */
        .image-wrapper:hover .ui-frame {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
        }

        .image-wrapper:hover .ui-frame::before {
            inset: -18px;
            opacity: 0.4;
            transform: rotate(3deg);
        }

        /* --- MISSION/VISION CARD STYLES --- */
        .strategy-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 25px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .icon-box {
            width: 54px;
            height: 54px;
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .strategy-card:hover .icon-box {
            background: #10b981;
            color: #ffffff;
            transform: scale(1.1);
        }

        .card-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .card-text {
            font-size: 14.5px;
            line-height: 1.8;
            color: #64748b;
            margin: 0;
        }

        @media (max-width: 991px) {
            .section-wrapper { padding: 60px 0; }
            .content-col, .mv-col { width: 100%; padding: 0; border: none; }
            .mv-col { margin-bottom: 40px; } /* Mission vision comes first on mobile */
            .image-wrapper { margin: 0 auto 30px; }
            .display-title, .signature-area { text-align: center; }
            .signature-area { border-top: 1px solid #f1f5f9; }
        }

        
        /* Popup Widget for ways to donate - Fixed Container - Adaptive positioning */
        .widget-anchor {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            max-width: calc(100vw - 40px);
        }

        /* The Main Card - Compact Width */
        .as-card {
            width: 310px; 
            max-width: 100%;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            transform-origin: bottom right;
            margin-bottom: 15px;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8) translateY(20px);
        }

        .as-card.is-active {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
        }

        /* Compact Header */
        .as-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 15px;
            color: white;
            text-align: center;
        }

        .as-header h3 {
            margin: 0 0 10px 0;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        /* Small Helpline Spotlight */
        .as-helpline-box {
            background: rgba(255, 255, 255, 0.12);
            padding: 8px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
        }

        .as-helpline-box span {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.8;
            margin-bottom: 2px;
        }

        .as-helpline-box a {
            color: white;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .as-helpline-box .glyphicon {
            font-size: 12px;
            margin-right: 6px;
        }

        /* Compact Body */
        .as-body {
            padding: 8px;
            max-height: 55vh;
            overflow-y: auto;
        }

        .as-item {
            margin-bottom: 6px;
            border-radius: 12px;
            background: #fdfdfd;
            border: 1px solid #f1f1f1;
            transition: all 0.3s ease;
        }

        .as-item.is-open {
            background: #fff;
            border-color: rgba(0, 139, 68, 0.1);
        }

        .as-trigger {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            cursor: pointer;
            user-select: none;
        }

        .as-icon {
            width: 32px;
            height: 32px;
            background: #f4faf6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: var(--primary);
            font-size: 14px;
            transition: 0.3s;
        }

        .as-item.is-open .as-icon {
            background: var(--primary);
            color: white;
        }

        .as-label {
            flex: 1;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-main);
        }

        .as-chevron {
            font-size: 9px;
            color: #ccc;
            transition: 0.3s transform ease;
        }

        .as-item.is-open .as-chevron {
            transform: rotate(180deg);
        }

        /* Panels */
        .as-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }

        .as-item.is-open .as-panel {
            max-height: 400px;
            opacity: 1;
        }

        .as-inner {
            padding: 0 12px 12px 56px;
            font-size: 12px;
            color: var(--text-sub);
            line-height: 1.5;
        }

        .as-data-card {
            background: #fcfcfc;
            border: 1px solid #eee;
            padding: 8px;
            border-radius: 8px;
            margin-top: 6px;
            position: relative;
        }

        .as-copy-btn {
            position: absolute;
            right: 8px;
            top: 8px;
            color: var(--primary);
            font-weight: 700;
            font-size: 9px;
            text-transform: uppercase;
            cursor: pointer;
        }

       /* Fixed Container - Adaptive positioning */
        .widget-anchor {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            max-width: calc(100vw - 40px);
            /* Prevent the container from blocking clicks when inactive */
            pointer-events: none;
        }

        /* The Main Card - Compact Width */
        .as-card {
            width: 310px; 
            max-width: 100%;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            transform-origin: bottom right;
            margin-bottom: 15px;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8) translateY(20px);
            /* Re-enable pointer events for the card content */
            pointer-events: auto;
        }

        .as-card.is-active {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
        }

        /* Compact Header */
        .as-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 15px;
            color: white;
            text-align: center;
        }

        .as-header h3 {
            margin: 0 0 10px 0;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        /* Small Helpline Spotlight */
        .as-helpline-box {
            background: rgba(255, 255, 255, 0.12);
            padding: 8px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
        }

        .as-helpline-box span {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.8;
            margin-bottom: 2px;
        }

        .as-helpline-box a {
            color: white;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .as-helpline-box .glyphicon {
            font-size: 12px;
            margin-right: 6px;
        }

        /* Compact Body */
        .as-body {
            padding: 8px;
            max-height: 55vh;
            overflow-y: auto;
        }

        .as-item {
            margin-bottom: 6px;
            border-radius: 12px;
            background: #fdfdfd;
            border: 1px solid #f1f1f1;
            transition: all 0.3s ease;
        }

        .as-item.is-open {
            background: #fff;
            border-color: rgba(0, 139, 68, 0.1);
        }

        .as-trigger {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            cursor: pointer;
            user-select: none;
        }

        .as-icon {
            width: 32px;
            height: 32px;
            background: #f4faf6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: var(--primary);
            font-size: 14px;
            transition: 0.3s;
        }

        .as-item.is-open .as-icon {
            background: var(--primary);
            color: white;
        }

        .as-label {
            flex: 1;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-main);
        }

        .as-chevron {
            font-size: 9px;
            color: #ccc;
            transition: 0.3s transform ease;
        }

        .as-item.is-open .as-chevron {
            transform: rotate(180deg);
        }

        /* Panels */
        .as-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }

        .as-item.is-open .as-panel {
            max-height: 400px;
            opacity: 1;
        }

        .as-inner {
            padding: 0 12px 12px 56px;
            font-size: 12px;
            color: var(--text-sub);
            line-height: 1.5;
        }

        .as-data-card {
            background: #fcfcfc;
            border: 1px solid #eee;
            padding: 8px;
            border-radius: 8px;
            margin-top: 6px;
            position: relative;
        }

        .as-copy-btn {
            position: absolute;
            right: 8px;
            top: 8px;
            color: var(--primary);
            font-weight: 700;
            font-size: 9px;
            text-transform: uppercase;
            cursor: pointer;
        }

        /* FAB Wrapper for Rotating Text */
        .as-fab-wrapper {
            position: relative;
            width: 100px; 
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Re-enable pointer events for the button area */
            pointer-events: auto;
        }

        .as-fab-text {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotateText 12s linear infinite; 
            pointer-events: none;
            transition: 0.5s opacity;
        }

        .as-fab-wrapper.is-open .as-fab-text {
            opacity: 0;
            animation-play-state: paused;
        }

        @keyframes rotateText {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Main FAB */
        .as-fab {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 139, 68, 0.3);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid #fff;
            z-index: 2;
        }

        .as-fab:hover {
            transform: scale(1.05);
        }

        .as-fab.is-open {
            background: #2d3436;
            transform: rotate(90deg);
        }

        /* Footer */
        .as-footer {
            padding: 10px 15px 15px;
        }

        .btn-as-action {
            background: var(--primary);
            color: #fff;
            display: block;
            text-align: center;
            padding: 10px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none !important;
            font-size: 12px;
            transition: 0.3s;
            cursor: pointer;
        }

        @media (max-width: 350px) {
            .widget-anchor {
                right: 5px;
                bottom: 5px;
            }
            .as-card {
                width: calc(100vw - 20px);
            }
        }


        
        /* Ways to Donate - Animated Hero Section - Reduced Height */
        .hero-section {
            position: relative;
            background: linear-gradient(-45deg, #059669, #065f46, #1e293b, #047857);
            background-size: 400% 400%;
            animation: gradientBG 25s ease infinite; /* Slower Gradient Animation */
            color: white;
            padding: 80px 0; /* Reduced Height */
            text-align: center;
            margin-bottom: -40px;
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating Light Particles Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .hero-section p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.4;
            opacity: 0.9;
        }

        .donation-container {
            background: #fff;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
            margin-bottom: 60px;
        }

        /* Bold Soft Tabs */
        .nav-tabs {
            border-bottom: 2px solid #f1f5f9;
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .nav-tabs > li { float: none; }
        .nav-tabs > li > a {
            border: 2px solid #e2e8f0 !important;
            border-radius: 12px !important;
            color: var(--text-light);
            font-size: 18px;
            font-weight: 700;
            padding: 14px 30px;
            transition: all 0.3s ease;
            background: #fff;
            margin: 0;
        }
        .nav-tabs > li > a:hover {
            background: #f8fafc;
            border-color: var(--primary) !important;
            color: var(--primary);
        }
        .nav-tabs > li.active > a {
            background: var(--primary) !important;
            color: #fff !important;
            border-color: var(--primary) !important;
            box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
        }

        .tab-pane {
            animation: slideUp 0.4s ease-out;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Content Headings */
        .section-title {
            font-weight: 800;
            color: var(--secondary);
            margin: 50px 0 30px;
            font-size: 24px;
            display: flex;
            align-items: center;
        }
        .section-title::after {
            content: "";
            flex: 1;
            height: 2px;
            background: #f1f5f9;
            margin-left: 20px;
        }

        /* Large Bank Card */
        .bank-card {
            background: #fff;
            border: 2px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .bank-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .bank-icon {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .bank-name {
            font-weight: 800;
            font-size: 20px;
            color: var(--secondary);
            margin: 0;
        }

        .bank-branch {
            font-size: 14px;
            color: var(--text-light);
            margin: 8px 0 15px;
            min-height: 40px;
        }

        .acc-label {
            font-size: 11px;
            text-transform: uppercase;
            color: var(--text-light);
            font-weight: 800;
            letter-spacing: 1px;
            margin-top: 15px;
        }

        .acc-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--secondary);
        }

        /* Big Copy Button */
        .iban-btn {
            width: 100%;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            padding: 12px;
            border-radius: 10px;
            font-family: 'Monaco', 'Consolas', monospace;
            font-size: 13px;
            color: var(--primary);
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .iban-btn:hover {
            background: #f1f5f9;
            border-color: var(--primary);
        }

        .copy-tooltip {
            position: absolute;
            background: var(--secondary);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 100;
        }
        .copy-tooltip.show { opacity: 1; }

        .contact-card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            height: 100%;
        }

        .note-box {
            background-color: #f0fdf4;
            border-left: 5px solid #059669;
            padding: 25px;
            border-radius: 12px;
            color: #166534;
            font-size: 16px;
            margin-top: 40px;
        }

        .alert-info-custom {
            background-color: #eff6ff;
            border-radius: 12px;
            padding: 30px;
            color: #1e40af;
            border: 1px solid #bfdbfe;
        }

        /* USA Specific Styled Buttons */
        .btn-asiec {
            background-color: var(--asiec-blue);
            color: #fff;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 12px;
            border: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            text-decoration: none !important;
        }
        .btn-asiec:hover {
            background-color: #0369a1;
            color: #fff;
            transform: scale(1.02);
        }

        .btn-afna {
            background-color: var(--afna-green);
            color: #fff;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 12px;
            border: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            text-decoration: none !important;
        }
        .btn-afna:hover {
            background-color: #15803d;
            color: #fff;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .hero-section { padding: 80px 20px; }
            .hero-section h1 { font-size: 36px; }
            .donation-container { padding: 25px; border-radius: 0; }
        }

        .impact-section {
            padding: 80px 0; /* Reduced vertical padding */
            position: relative;
            overflow: hidden;
            /* Enhanced, deeper mesh gradient for better visibility */
            background-color: var(--bg-base);
            background-image: 
                radial-gradient(at 0% 0%, hsla(210, 100%, 93%, 1) 0, transparent 40%), 
                radial-gradient(at 100% 0%, hsla(260, 100%, 93%, 1) 0, transparent 40%),
                radial-gradient(at 50% 100%, hsla(210, 100%, 92%, 1) 0, transparent 50%),
                radial-gradient(at 100% 100%, hsla(190, 100%, 94%, 1) 0, transparent 40%);
        }

        /* Darker, more visible grid background overlay */
        .impact-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
            background-size: 40px 40px;
            opacity: 0.4;
            pointer-events: none;
            z-index: 0;
        }

        /* Corner Decorative Icons */
        .corner-decor {
            position: absolute;
            z-index: 0;
            opacity: 0.08;
            pointer-events: none;
            stroke: var(--primary);
            fill: none;
            stroke-width: 0.6;
        }

        .decor-tr { top: -20px; right: -40px; width: 400px; height: 400px; }

        /* Eye Blinking & Scanning Effect */
        .eye-lid {
            transform-origin: center;
            animation: eye-blink 5s infinite ease-in-out;
        }

        .eye-pupil {
            animation: pupil-scan 8s infinite ease-in-out;
        }

        @keyframes eye-blink {
            0%, 85%, 100% { transform: scaleY(1); }
            90%, 95% { transform: scaleY(0.05); }
        }

        @keyframes pupil-scan {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        .container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            margin-bottom: 30px; /* Reduced from 50px */
        }
        
        .section-header h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            color: var(--primary-impact);
            margin-bottom: 8px;
            font-size: 52px;
            letter-spacing: -0.04em;
        }
        
        .section-header p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: 18px;
        }

        .stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .stat-item {
            text-align: center;
            padding: 20px 15px; /* Reduced from 30px */
            transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
        }

        /* Large & Detailed Icon Container */
        .icon-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 10px; /* Reduced margin */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .icon-svg {
            width: 70px; 
            height: 70px;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .icon-bg-glow {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .stat-item:hover .icon-bg-glow {
            opacity: 0.3;
        }

        .stat-item:hover .icon-svg {
            transform: scale(1.1) translateY(-5px);
        }

        .path-draw {
            stroke-dasharray: 400;
            stroke-dashoffset: 400;
            transition: stroke-dashoffset 2.5s ease-in-out;
        }

        .is-visible .path-draw {
            stroke-dashoffset: 0;
        }

        /* Theme Styling */
        .blue-theme .icon-svg { stroke: var(--accent-blue); }
        .blue-theme .icon-bg-glow { background: var(--accent-blue); }
        .purple-theme .icon-svg { stroke: var(--accent-purple); }
        .purple-theme .icon-bg-glow { background: var(--accent-purple); }
        .pink-theme .icon-svg { stroke: var(--accent-rose); }
        .pink-theme .icon-bg-glow { background: var(--accent-rose); }
        .green-theme .icon-svg { stroke: var(--accent-emerald); }
        .green-theme .icon-bg-glow { background: var(--accent-emerald); }

        /* Typography */
        .counter-box h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin: 0;
            color: var(--primary-impact);
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 600;
            margin-top: 8px;
            display: block;
            letter-spacing: 0.01em;
            text-transform: uppercase;
        }

        /* Minimal Indicator */
        .stat-indicator {
            width: 30px;
            height: 4px;
            margin: 15px auto 0;
            border-radius: 10px;
            background: rgba(15, 23, 42, 0.1);
            overflow: hidden;
        }

        .indicator-fill {
            height: 100%;
            width: 0%;
            transition: width 1.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .blue-theme .indicator-fill { background: var(--accent-blue); }
        .purple-theme .indicator-fill { background: var(--accent-purple); }
        .pink-theme .indicator-fill { background: var(--accent-rose); }
        .green-theme .indicator-fill { background: var(--accent-emerald); }

        /* Responsive Grid: 4 in row on Desktop, 2 in row on Tablet/Mobile */
        @media (min-width: 992px) { 
            .stat-col { width: 25%; } 
        }
        @media (max-width: 991px) { 
            .stat-col { width: 50%; } 
            .section-header h3 { font-size: 32px; }
            .counter-box h2 { font-size: 30px; }
        }
        @media (max-width: 480px) {
            .stat-item { padding: 15px 10px; }
            .counter-box h2 { font-size: 26px; }
            .stat-label { font-size: 12px; }
        }


        /* Lahore Hospital Page */


        /* --- PROFESSIONAL ANIMATED HERO --- */
        .lhr-hero-pro {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: #fff;
            padding: 100px 0;
            overflow: hidden;
        }

        .lhr-hero-pro::before {
            content: "";
            position: absolute;
            top: -10%;
            right: -5%;
            width: 45%;
            height: 120%;
            background: var(--soft-green);
            transform: skewX(-10deg);
            border-radius: 100px;
            z-index: 0;
            animation: slideInRight 1.2s ease-out forwards;
        }

        .lhr-hero-img-wrap {
            position: absolute;
            right: 5%;
            width: 40%;
            max-width: 800px;
            z-index: 1;
            animation: fadeInRight 1.5s ease-out;
        }

        .lhr-hero-img-wrap img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 50px 100px rgba(0,74,128,0.15);
        }

        .lhr-hero-text-content {
            position: relative;
            z-index: 2;
        }

        .lhr-hero-pro h1 {
            font-size: clamp(36px, 4.5vw, 68px);
            font-weight: 800;
            color: var(--brand-blue);
            margin-bottom: 0;
            line-height: 1.1;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .lhr-hero-pro .lhr-location-tag {
            font-size: clamp(28px, 3.5vw, 52px);
            font-weight: 300;
            color: var(--brand-green);
            display: block;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        .lhr-hero-pro p {
            font-size: clamp(16px, 1.2vw, 20px);
            color: #636e72;
            max-width: 550px;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
        }

        .lhr-hero-btns {
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
        }

        /* --- ABOUT & OVERVIEW SECTION --- */
        .lhr-info-block {
            padding: 80px 0;
            background: #fff;
        }
        .lhr-content-card {
            background: #fff;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
            border: 1px solid #f0f0f0;
            margin-bottom: 30px;
        }
        .lhr-info-title {
            color: var(--brand-blue);
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .lhr-info-title i { margin-right: 15px; color: var(--brand-green); }
        .lhr-obj-list { list-style: none; padding: 0; }
        .lhr-obj-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #555;
        }
        .lhr-obj-list li::before {
            content: "•";
            color: var(--brand-green);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 20px;
            line-height: 1.2;
        }

        /* --- SLIDER & STATS SECTION --- */
        .lhr-grid-section {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .lhr-combined-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .lhr-slider-col {
            flex: 1 1 55%;
            min-width: 350px;
        }

        .lhr-numbers-col {
            flex: 1 1 35%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            min-width: 320px;
        }

        .lhr-mini-rev {
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }
        
        .lhr-mini-rev .carousel-inner, .lhr-mini-rev .item { height: 100%; }
        .lhr-mini-rev img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease;
        }
        
        .lhr-mini-rev .item.active img { transform: scale(1.1); }

        .lhr-mini-rev .carousel-indicators { bottom: 20px; margin-bottom: 0; }
        .lhr-mini-rev .carousel-indicators li { border-color: #fff; width: 10px; height: 10px; }
        .lhr-mini-rev .carousel-indicators .active { background-color: var(--brand-green); border-color: var(--brand-green); width: 25px; }
        .lhr-mini-rev .carousel-control { width: 10%; background-image: none !important; opacity: 0.5; }
        .lhr-mini-rev .carousel-control:hover { opacity: 1; }

        .lhr-stat-box {
            background: var(--soft-blue);
            padding: 30px 15px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 160px;
        }
        .lhr-stat-box:hover {
            background: #fff;
            border: 1px solid var(--brand-green);
            box-shadow: 0 15px 30px rgba(0,139,68,0.1);
            transform: translateY(-5px);
        }
        .lhr-stat-box .num {
            font-size: clamp(32px, 3vw, 48px);
            font-weight: 800;
            color: var(--brand-green);
            line-height: 1;
            margin-bottom: 10px;
        }
        .lhr-stat-box .label-text {
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-blue);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* --- CORE FEATURES --- */
        .lhr-features-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .lhr-feature-card {
            background: #fff;
            border: 1px solid #f1f1f1;
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin-bottom: 30px;
            height: calc(100% - 30px);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(30px);
        }
        .lhr-feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .lhr-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--brand-green);
        }
        .lhr-icon-circle {
            width: 60px; height: 60px;
            background: var(--soft-green);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--brand-green);
            font-size: 24px;
        }
        .lhr-feature-card h4 {
            font-weight: 700;
            color: var(--brand-blue);
            margin-bottom: 15px;
        }

        /* --- HOSPITAL STRUCTURE --- */
        .lhr-structure-section { padding: 80px 0; background: #fff; }
        .lhr-dept-pill {
            background: var(--soft-blue);
            padding: 12px 20px;
            border-radius: 12px;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--brand-blue);
            border-left: 4px solid var(--brand-green);
        }

        .lhr-btn-sponsor {
            background: var(--brand-blue);
            color: #fff !important;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none !important;
            display: inline-block;
            transition: all 0.3s;
        }
        .lhr-btn-sponsor:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,74,128,0.2); }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .lhr-hero-img-wrap { display: none; }
            .lhr-hero-pro::before { width: 100%; top: 0; left: 0; height: 8px; border-radius: 0; }
            .lhr-hero-pro { text-align: center; padding: 80px 0; }
            .lhr-hero-pro p { margin: 0 auto 30px; }
            .lhr-slider-col, .lhr-numbers-col { flex: 1 1 100%; }
        }

        @media (min-width: 1921px) {
            .container { width: 1600px; }
            .lhr-hero-pro { min-height: 60vh; }
        }

        @keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { transform: translateX(100%) skewX(-10deg); } to { transform: translateX(0) skewX(-10deg); } }