/* tools.css — extracted from khethopages/tools.html */

/* ===== VARIABLES ===== */
        :root {
            --primary-blue: #2175b9;
            --light-blue: #60a5fa;
            --darker-blue: #1a5e9a;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-dark: #1e293b;
            --shadow-color: rgba(33, 117, 185, 0.1);
            --background: #f8f9fa;
            --card-bg: #ffffff;
            --border-radius: 12px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Dark mode variables */
        body.dark-mode {
            --white: #0f172a;
            --light-gray: #1e293b;
            --text-dark: #f1f5f9;
            --background: #0f172a;
            --card-bg: #1e293b;
        }

        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Glassmorphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .glass {
            background: rgba(15, 23, 42, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== NAVBAR ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 1px 20px rgba(0, 102, 204, 0.05);
        }

        body.dark-mode header {
            background: rgba(15, 23, 42, 0.75);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
        }

        body.dark-mode header.scrolled {
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-box {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(-45deg);
            transition: all 0.3s ease;
        }

        .logo-box:hover {
            transform: rotate(8deg) scale(1.08);
            box-shadow: 0 8px 30px rgba(0, 102, 204, 0.35);
        }

        .logo-box:hover::before {
            animation: shine 0.6s ease;
        }

        @keyframes shine {
            0% { transform: rotate(-45deg) translateX(-200%); }
            100% { transform: rotate(-45deg) translateX(200%); }
        }

        .logo-box img {
            max-width: 28px;
            height: auto;
            filter: brightness(0) invert(1);
            z-index: 2;
        }

        .brand {
            font-weight: 800;
            font-size: 1.4rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.6px;
        }

        .nav-items {
            display: flex;
            gap: 40px;
        }

        .nav-items a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .nav-items a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .nav-items a:hover, 
        .nav-items a.active {
            color: var(--primary-blue);
        }

        .nav-items a:hover::after,
        .nav-items a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        /* Dark Mode Toggle Button */
        .dark-mode-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border-light);
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-dark);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .dark-mode-toggle {
            background: var(--light-gray);
            border-color: var(--primary-blue);
            box-shadow: 0 2px 8px rgba(33, 117, 185, 0.2);
        }

        .dark-mode-toggle:hover {
            transform: scale(1.05);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(33, 117, 185, 0.15);
        }

        .dark-mode-toggle i {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .dark-mode-toggle .fa-sun {
            position: absolute;
            opacity: 0;
            transform: scale(0.5) rotate(90deg);
        }

        .dark-mode-toggle .fa-moon {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        body.dark-mode .dark-mode-toggle .fa-sun {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        body.dark-mode .dark-mode-toggle .fa-moon {
            opacity: 0;
            transform: scale(0.5) rotate(-90deg);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transition: all 0.3s ease;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            background: none;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(0, 102, 204, 0.1);
        }

        .hamburger i {
            font-size: 1.5rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            z-index: 2000;
            transition: all 0.3s ease;
            padding: 80px 40px 40px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .mobile-menu {
            background: rgba(15, 23, 42, 0.95);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        body.dark-mode .mobile-menu-close {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-dark);
        }

        .mobile-menu-close:hover {
            background: var(--primary-blue);
            color: white;
        }

        .mobile-menu-items {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .mobile-menu-items a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        body.dark-mode .mobile-menu-items a {
            color: var(--text-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-items a:hover {
            color: var(--primary-blue);
            padding-left: 16px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 50vh;
            min-height: 600px;
            overflow: hidden;
            position: relative;
        }

        .hero .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }

        .hero .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            justify-content: center;
            padding: 0 80px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            min-height: 100vh;
        }

        .hero .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            color: #fff;
            letter-spacing: 0.01em;
            line-height: 1.15;
            margin: 0;
        }

        .hero-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
            margin-bottom: 12px;
        }

        .beneficiary-btn {
            background: linear-gradient(135deg, #f97316, #facc15);
            color: white;
            font-weight: 700;
            padding: 18px 45px;
            font-size: 1.1rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .beneficiary-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .beneficiary-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .beneficiary-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.6);
        }

        .beneficiary-btn i {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* ===== PAGE SECTIONS ===== */

        /* --- Intro --- */
        .tools-intro {
            padding: 100px 0;
            background-color: var(--card-bg);
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .tools-intro h2 {
            font-size: 2.8rem;
            color: var(--text-dark);
            font-weight: 800;
            margin-bottom: 0;
            line-height: 1.2;
            position: relative;
        }

        .tools-intro h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 3px;
        }

        .tools-intro p {
            color: var(--text-dark);
            opacity: 0.72;
            line-height: 1.75;
            font-size: 1.05rem;
            margin-top: 28px;
            margin-bottom: 0;
        }

        .tools-intro p + p {
            margin-top: 14px;
            margin-bottom: 32px;
        }

        /* Profile card */
        .profile-card {
            background: var(--background);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(33, 117, 185, 0.15);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        body.dark-mode .profile-card {
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
            border-color: rgba(255, 255, 255, 0.07);
        }

        .profile-card-top {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .profile-card-icon {
            width: 58px;
            height: 58px;
            flex-shrink: 0;
            background: rgba(33, 117, 185, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary-blue);
            border: 2px solid rgba(33, 117, 185, 0.2);
        }

        .profile-card-top h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 8px;
        }

        .profile-card-top p {
            color: var(--text-dark);
            opacity: 0.62;
            font-size: 0.92rem;
            line-height: 1.6;
            margin: 0;
        }

        .profile-card-meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .profile-card-meta span {
            background: rgba(33, 117, 185, 0.08);
            color: var(--primary-blue);
            padding: 5px 13px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(33, 117, 185, 0.15);
        }

        .profile-card-meta i {
            margin-right: 5px;
        }

        .profile-download-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            align-self: flex-start;
        }

        .profile-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(33, 117, 185, 0.32);
        }

        /* --- Resource Library --- */
        .resources-section {
            padding: 100px 0;
            background-color: var(--background);
        }

        .resources-header {
            margin-bottom: 55px;
        }

        .resources-header h2 {
            font-size: 2.8rem;
            color: var(--text-dark);
            font-weight: 800;
            margin-bottom: 0;
            position: relative;
            display: inline-block;
        }

        .resources-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
            border-radius: 3px;
        }

        .resources-header p {
            color: var(--text-dark);
            opacity: 0.62;
            font-size: 1.05rem;
            margin-top: 26px;
            margin-bottom: 0;
        }

        .resource-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 32px 28px;
            border: 1px solid rgba(33, 117, 185, 0.12);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
        }

        body.dark-mode .resource-card {
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .resource-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 38px rgba(33, 117, 185, 0.14);
            border-color: var(--primary-blue);
        }

        .resource-icon {
            font-size: 2.2rem;
            margin-bottom: 18px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .resource-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .resource-card p {
            color: var(--text-dark);
            opacity: 0.62;
            font-size: 0.92rem;
            line-height: 1.65;
            flex: 1;
            margin-bottom: 20px;
        }

        .resource-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .resource-tag {
            background: rgba(33, 117, 185, 0.09);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.74rem;
            font-weight: 700;
            border: 1px solid rgba(33, 117, 185, 0.18);
        }

        .file-badge {
            color: var(--text-dark);
            opacity: 0.45;
            font-size: 0.78rem;
            font-weight: 500;
        }

        .download-btn {
            background: transparent;
            color: var(--primary-blue);
            border: 1.5px solid var(--primary-blue);
            padding: 11px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            justify-content: center;
        }

        .download-btn:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(33, 117, 185, 0.22);
        }



        /* --- Digital Toolkit --- */
        .toolkit-section {
            padding: 100px 0;
            background-color: var(--card-bg);
        }

        .blue-box {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--darker-blue) 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .blue-box h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 800;
            color: white;
            position: relative;
            z-index: 1;
        }

        .blue-box p {
            line-height: 1.75;
            margin-bottom: 40px;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.88);
            position: relative;
            z-index: 1;
        }

        .blue-box button {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 14px 28px;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            align-self: flex-start;
        }

        .blue-box button:hover {
            color: var(--primary-blue);
            background: white;
        }

        .toolkit-card {
            background: var(--background);
            border-radius: 15px;
            padding: 30px 26px;
            border: 1px solid rgba(33, 117, 185, 0.12);
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
        }

        body.dark-mode .toolkit-card {
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .toolkit-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-blue);
            box-shadow: 0 16px 38px rgba(33, 117, 185, 0.14);
        }

        .toolkit-card > i {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 18px;
            display: block;
        }

        .toolkit-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .toolkit-card p {
            color: var(--text-dark);
            opacity: 0.62;
            font-size: 0.9rem;
            line-height: 1.65;
            margin: 0;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #1a1a1a;
            color: #e0e0e0;
            padding: 80px 0 0;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        footer .brand {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.4rem;
        }

        footer h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-blue);
            padding-left: 10px;
        }

        .contact-info {
            color: #b0b0b0;
            line-height: 1.8;
        }

        .contact-info i {
            color: var(--primary-blue);
            width: 20px;
            margin-right: 10px;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            color: #999;
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-legal a {
            color: #999;
            text-decoration: none;
            margin-left: 25px;
            transition: all 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--primary-blue);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .social-links a {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.25s ease, border-color 0.25s ease,
                        color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .social-links a:hover {
            color: #fff;
            transform: translateY(-4px);
            border-color: transparent;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        }

        .social-links a[aria-label="LinkedIn"]:hover   { background: #0A66C2; }
        .social-links a[aria-label="Twitter"]:hover    { background: #1DA1F2; }
        .social-links a[aria-label="Facebook"]:hover   { background: #1877F2; }
        .social-links a[aria-label="Instagram"]:hover  {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        .social-links a[aria-label="YouTube"]:hover    { background: #FF0000; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .hero .hero-content h1 {
                font-size: 2.8rem;
            }

            .nav-items {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .tools-intro h2,
            .resources-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero .hero-content {
                padding: 0 30px;
                align-items: center;
                text-align: center;
            }

            .tools-intro,
            .resources-section,
            .toolkit-section {
                padding: 70px 0;
            }

            .profile-card-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .blue-box {
                height: auto;
                margin-bottom: 10px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .beneficiary-btn {
                width: 100%;
                justify-content: center;
            }

            .profile-card {
                padding: 28px 20px;
            }

            .resource-card {
                padding: 24px 18px;
            }
        }
