
        :root {
            --primary-green: #0fae64;
            --primary-gold: #c49b3c;
            --accent-blue: #00692f;
            --text-dark: #1a1a1a;
            --text-light: #6b7280;
            --bg-light: #f8f9fa;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background-color: #fefefe;
        }

        /* Enhanced Banner Section */
       .banner_section {
    background: url('/images/banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    overflow: hidden;
}

/* Overlay layer */
.banner_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Adjust opacity for desired dullness */
    z-index: 1;
}

/* Ensure banner text appears above overlay */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}


        .banner_taital {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 1px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .lorem_text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background-color: var(--primary-gold);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-custom:hover {
            background-color: #b38935;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-custom {
            background-color: transparent;
            border: 2px solid white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        /* Enhanced Mission Section with Z-Pattern */
        .mission-section {
            padding: 100px 0;
            background: white;
        }

        .mission-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            color: var(--primary-green);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .mission-item {
            display: flex;
            gap: 25px;
            padding: 30px;
            border-radius: 16px;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .mission-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .mission-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .mission-text-content h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .mission-text-content p {
            color: var(--text-light);
            line-height: 1.7;
        }

        .mission-stats {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item h3 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Enhanced Partners Section with Interactive Cards */
        .partners-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
            clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
        }

        .partners-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .partners-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 16px;
        }

        .partners-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .partner-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateY(40px);
        }

        .partner-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .partner-image-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .partner-image {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .partner-card:hover .partner-image {
            transform: scale(1.05);
        }

        .category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }

        .badge-technology {
            background: rgba(59, 130, 246, 0.9);
            color: white;
        }

        .badge-welfare {
            background: rgba(16, 185, 129, 0.9);
            color: white;
        }

        .badge-security {
            background: rgba(239, 68, 68, 0.9);
            color: white;
        }

        .partner-content {
            padding: 25px;
        }

        .partner-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .partner-role {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: inline-block;
        }

        .partner-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .partner-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--bg-light);
            border-radius: 10px;
            border-left: 4px solid var(--primary-green);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            color: var(--primary-green);
            font-size: 0.9rem;
        }

        .partner-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-light);
            border-radius: 10px;
            color: var(--text-dark);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }

        .view-details-btn {
            padding: 10px 24px;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-details-btn:hover {
            background: var(--accent-blue);
            transform: scale(1.05);
        }

        /* Call to Action Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
            color: white;
            text-align: center;
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        }

        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .mission-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .banner_taital {
                font-size: 2.5rem;
            }

            .lorem_text {
                font-size: 1.1rem;
            }

            .banner_section {
                min-height: 70vh;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .partners-title {
                font-size: 2.2rem;
            }

            .partners-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .mission-item {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .floating-helpline-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 10px 20px;
            /* background: linear-gradient(135deg, #1a5f3fff, #2c5f7aff); */
            transition: background 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
            color: rgba(239, 68, 68, 0.9);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .floating-helpline-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .floating-helpline-btn i {
            font-size: 1.2rem;
        }
