        @import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap");

        :root {
            --primary-color: #2E8B57;
            --primary-dark: #1e6b46;
            --secondary-color: #FF6B35;
            --accent-color: #4ECDC4;
            --dark-color: #292b2c;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
            --bg: #f4f6fa;
            --text: #222;
            --muted: #555;
            --white: #fff;
            --radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            line-height: 1.7;
            font-family: "Roboto", sans-serif;
            -webkit-font-smoothing: antialiased;
            font-size: 16px;
            color: var(--gray-color);
            font-weight: 400;
            background-color: #fff;
        }

        h1,
        .h1,
        h2,
        .h2,
        h3,
        .h3,
        h4,
        .h4,
        h5,
        .h5,
        h6,
        .h6 {
            font-family: "Exo", sans-serif;
            font-weight: 700;
            color: var(--dark-color);
            line-height: 1.3;
        }

        h1,
        .h1 {
            font-size: 3.5rem;
        }

        h2,
        .h2 {
            font-size: 2.75rem;
        }

        h3,
        .h3 {
            font-size: 1.75rem;
        }

        h4,
        .h4 {
            font-size: 1.5rem;
        }

        h5,
        .h5 {
            font-size: 1.25rem;
        }

        h6,
        .h6 {
            font-size: 1rem;
        }

        p {
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary-color);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: .5px;
            padding: 0.875rem 2rem;
            font-family: "Exo", sans-serif;
            text-transform: uppercase;
            border-radius: 50px;
            border: 2px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-main {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
        }

        .btn-main:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
        }

        .btn-main-2 {
            background: var(--secondary-color);
            color: #fff;
            border-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-main-2:hover {
            background: #e55a2b;
            border-color: #e55a2b;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

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

        .btn-outline:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-white {
            background: #fff;
            color: var(--dark-color);
            border-color: #fff;
        }

        .btn-white:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1rem;
        }

        .btn-sm {
            padding: 0.6rem 1.5rem;
            font-size: 0.8rem;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-sm {
            padding: 70px 0;
        }

        .section-title {
            margin-bottom: 70px;
            text-align: center;
        }

        .section-title h2 {
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
            margin: 0 auto;
        }

        .bg-gray {
            background: #f8f9fa;
        }

        .bg-primary {
            background: var(--primary-color) !important;
        }

        .bg-dark {
            background: var(--dark-color) !important;
        }

        .text-primary {
            color: var(--primary-color) !important;
        }

        .text-secondary {
            color: var(--secondary-color) !important;
        }

        .text-white {
            color: #fff !important;
        }

        .text-dark {
            color: var(--dark-color) !important;
        }

        /* Header Styles */
        .header-top-bar {
            background: var(--primary-color);
            color: #fff;
            font-size: 0.875rem;
            padding: 8px 0;
        }

        .header-top-bar a {
            color: #fff;
        }

        .header-top-bar a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            max-height: 50px;
            transition: var(--transition);
        }

        .navbar.scrolled .navbar-brand img {
            max-height: 40px;
        }

        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            color: var(--dark-color);
            font-family: "Exo", sans-serif;
            text-transform: capitalize;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link:hover:after,
        .nav-link.active:after {
            width: calc(100% - 2rem);
        }

        .dropdown-menu {
            border: none;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            animation: fadeIn 0.3s ease;
        }

        .dropdown-item {
            padding: 0.7rem 1.5rem;
            font-weight: 500;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover,
        .dropdown-item:focus {
            background: rgba(46, 139, 87, 0.05);
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Right Sidebar Navigation for Mobile */
        .offcanvas {
            background-color: #fff;
            transition: transform 0.3s ease-in-out;
        }

        .offcanvas-end {
            width: 300px;
            border-left: 1px solid rgba(0, 0, 0, 0.1);
        }

        .offcanvas-header {
            padding: 1.5rem 1.5rem 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .offcanvas-body {
            padding: 1.5rem;
        }

        .mobile-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav .nav-item {
            margin-bottom: 0.5rem;
        }

        .mobile-nav .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--dark-color);
            font-weight: 600;
            border-radius: 8px;
            transition: var(--transition);
        }

        .mobile-nav .nav-link:hover,
        .mobile-nav .nav-link.active {
            background-color: rgba(46, 139, 87, 0.1);
            color: var(--primary-color);
        }

        .mobile-nav .nav-link:after {
            display: none;
        }

        .mobile-nav .btn {
            width: 100%;
            justify-content: center;
            margin-top: 1rem;
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
            font-size: 1.25rem;
            background: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(46, 139, 87, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%), url('../images/galary/5.JPG') no-repeat center center;
            background-size: cover;
            color: #fff;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.1"></path></svg>');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
        }

        .hero-content {
            position: relative;
            z-index: 4;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* About Section */
        .about-img {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            opacity: 0.1;
            z-index: 1;
        }

        .about-content {
            padding-left: 2rem;
        }

        /* Enhanced Services Section */
        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border-top: 4px solid var(--primary-color);
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            color: #fff;
        }

        .service-card:hover:before {
            height: 100%;
        }

        .service-card:hover .service-icon,
        .service-card:hover h4,
        .service-card:hover p {
            color: #fff;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: #fff;
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .service-card h4 {
            margin-bottom: 1rem;
            transition: var(--transition);
        }

        .service-card p {
            transition: var(--transition);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .service-card:hover .service-link {
            color: #fff;
        }

        .service-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Impact Section */
        .impact-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .impact-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.05"></path></svg>');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
        }

        .counter-item {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
            z-index: 2;
        }

        .counter-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            display: block;
            margin-bottom: 0.5rem;
        }

        .counter-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Blog Section */
        .blog-section {
            background: #f8f9fa;
        }

        .blog-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .blog-img {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .blog-meta span {
            margin-right: 1rem;
            display: flex;
            align-items: center;
        }

        .blog-meta i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }

        /* Mobile */
        @media (max-width: 576px) {
            .blog-meta {
                flex-direction: row;
                align-items: flex-start;
                gap: 0.5rem;
                margin-bottom: 0.8rem;
            }

            .blog-meta span {
                margin-right: 0;
                font-size: 0.8rem;
            }

            .blog-meta i {
                margin-right: 0.3rem;
                font-size: 0.8rem;
                min-width: 14px;
            }
        }

        /* Very Small Mobile */
        @media (max-width: 400px) {
            .blog-meta {
                gap: 0.3rem;
            }

            .blog-meta span {
                font-size: 0.75rem;
            }
        }

        .blog-title {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .blog-title a {
            color: var(--dark-color);
            transition: var(--transition);
        }

        .blog-title a:hover {
            color: var(--primary-color);
        }

        .blog-excerpt {
            margin-bottom: 1.5rem;
            color: var(--gray-color);
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
        }

        .blog-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .blog-link:hover i {
            transform: translateX(5px);
        }

        /* Team Section */
        .team-section {
            background: #fff;
        }

        .team-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            margin-bottom: 30px;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .team-img {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-card:hover .team-img img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .team-card:hover .team-overlay {
            transform: translateY(0);
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .team-social a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .team-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .team-content {
            padding: 1.5rem;
        }

        .team-name {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .team-position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .team-desc {
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        /* Donation Section */
        .donation-card {
            background: #fff;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            height: 100%;
        }

        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .donation-option {
            padding: 1rem 0.5rem;
            text-align: center;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .donation-option:hover,
        .donation-option.active {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: #fff;
        }

        .custom-amount {
            position: relative;
        }

        .custom-amount:before {
            content: '$';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-color);
        }

        .custom-amount input {
            padding-left: 30px;
        }

        .progress {
            height: 10px;
            margin-bottom: 1rem;
            border-radius: 5px;
        }

        .progress-bar {
            border-radius: 5px;
        }

        /* Enhanced Bank Accounts Section - Updated Design */
        .bank-accounts-section {
            background: var(--bg);
            padding: 100px 0;
        }

        .bank-accounts-section .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .bank-accounts-section .section-title p {
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.05rem;
        }

        .card-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            max-width: 1200px;
            margin: 0 auto;
        }

        .bank-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .bank-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .bank-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(46, 139, 87, 0.15);
        }

        /* ✅ Center the logo inside the card */
        .bank-logo {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0 auto 18px auto;
            /* <-- centers the logo horizontally */
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        /* Ensure the logo image fits nicely inside the box */
        .bank-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
            background: #fff;
            padding: 6px;
        }

        .bank-card h3 {
            margin: 0 0 6px;
            font-size: 1.3rem;
            color: var(--primary-color);
            text-align: center;
            /* optional: center the bank name */
        }

        .account-details {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .account-details strong {
            color: var(--text);
        }

        .donate-btn {
            display: inline-block;
            padding: 10px 18px;
            background: var(--primary-color);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .donate-btn:hover {
            background: var(--primary-dark);
            color: white;
        }

        /* Center bottom donate button and set color */
        .bank-card .donate-btn:last-child {
            display: block;
            width: fit-content;
            margin: 15px auto 0;
            background-color: #E55A2B;
        }

        .bank-card .donate-btn:last-child:hover {
            background-color: #c94d24;
        }

        /* Gallery Section */
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: #fff;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Enhanced CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.1"></path></svg>');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-btns {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer  */
        .footer {
            background: #fff;
            color: var(--text, #333);
            padding: 80px 0 0;
        }

        .footer h4 {
            color: var(--primary-color, #E55A2B);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            font-weight: 700;
        }

        .footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color, #2E8B57);
            border-radius: 2px;
        }

        .footer p {
            color: #555;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-color, #E55A2B);
            transform: translateX(5px);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #555;
        }

        .footer-contact i {
            margin-right: 1rem;
            color: var(--secondary-color, #2E8B57);
            font-size: 1.2rem;
            margin-top: 0.25rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.05);
            color: var(--primary-color, #E55A2B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary-color, #E55A2B);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
            color: #555;
            font-size: 0.95rem;
        }

        .footer-bottom i {
            color: var(--primary-color, #E55A2B);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 992px) {

            
            h1,
            .h1 {
                font-size: 2.75rem;
            }

            h2,
            .h2 {
                font-size: 2.25rem;
            }

            .hero h1 {
                font-size: 2.75rem;
            }

            .about-content {
                padding-left: 0;
                margin-top: 2rem;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }

            /* Hide regular navbar menu on mobile */
            .navbar-collapse {
                display: none;
            }
        }

        @media (min-width: 992px) {

            /* Hide mobile navbar toggle on desktop */
            .navbar-toggler {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-top-bar {
                display: none;
            }

            .section {
                padding: 70px 0;
            }

            h1,
            .h1 {
                font-size: 2.25rem;
            }

            h2,
            .h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero-btns {
                justify-content: center;
            }

            .donation-options {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

            .bank-card {
                text-align: center;
            }

            .bank-logo {
                margin: 0 auto 15px;
            }
        }

        @media (max-width: 576px) {
            .header-top-bar {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .counter-number {
                font-size: 2.5rem;
            }

            .service-card,
            .bank-card {
                padding: 2rem 1.5rem;
            }

            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-content p {
                font-size: 1rem;
            }
        }


        /* read blog style */
        .blog-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 30px 0 30px;
            text-align: center;
        }

        .blog-header h1 {
            color: #fff;
            font-family: "Exo", sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
        }

        .blog-single {
            padding: 80px 0;
            max-width: 900px;
            margin: auto;
        }

        .blog-single img {
            border-radius: 15px;
            margin-bottom: 25px;
            width: 100%;
        }

        .blog-meta {
            color: #888;
            margin-bottom: 20px;
        }

        .blog-meta i {
            color: #2E8B57;
            margin-right: 5px;
        }

        .back-home-btn {
            display: inline-block;
            background: #2E8B57;
            color: #fff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            transition: 0.3s;
        }

        .back-home-btn:hover {
            background: #1e6b46;
            color: #fff;
        }


        /* Circular Progress Cards */
        .impact-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .impact-card {
            background: #fff;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .circular-progress {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 1rem;
        }

        .circular-progress svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .circular-progress circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
        }

        .circular-progress .bg {
            stroke: #f0f0f0;
        }

        .circular-progress .progress {
            stroke: var(--primary-color);
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            transition: stroke-dashoffset 1.5s ease;
        }

        .education .progress {
            stroke: #28a745;
        }

        .healthcare .progress {
            stroke: #17a2b8;
        }

        .hunger .progress {
            stroke: #ffc107;
        }

        .admin .progress {
            stroke: #6c757d;
        }

        .progress-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .impact-card h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .impact-card p {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin: 0;
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }

            .impact-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .donation-options {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            }
        }


        /* Mission & Values Section */
        .mission-values-section {
            background: #f8f9fa;
        }

        .mission-card {
            background: #fff;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary-color);
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: var(--transition);
        }

        .mission-card:hover .mission-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        .mission-card h3 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .mission-card p {
            color: var(--gray-color);
            margin-bottom: 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-item {
            background: #fff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--secondary-color);
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .value-item h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .value-item h4 i {
            margin-right: 0.75rem;
            font-size: 1.5rem;
        }

        .programs-section {
            background: #fff;
        }

        .program-card {
            background: #fff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid #f0f0f0;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .program-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .program-card h4 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }


        /* Center last two cards */
        .center-last-cards {
            display: flex;
            justify-content: center;
        }


        /* Info Cards */
        .contact-info {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
            text-align: center;
            height: 100%;
            transition: all .3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-info i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .contact-info h5 {
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        /* Contact Form */
        .contact-form {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
        }

        .form-control {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: none;
        }

        .btn-main {
            background: var(--primary-color);
            border: none;
            color: #fff;
            border-radius: 8px;
            padding: 12px 25px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-main:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Map */
        .map-wrapper {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        /* Causes Section */
        .causes-section {
            background: #f8f9fa;
        }

        .cause-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }

        .cause-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .cause-img {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .cause-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .cause-card:hover .cause-img img {
            transform: scale(1.1);
        }

        .cause-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .cause-content {
            padding: 1.5rem;
        }

        .cause-title {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .cause-title a {
            color: var(--dark-color);
            transition: var(--transition);
        }

        .cause-title a:hover {
            color: var(--primary-color);
        }

        .cause-excerpt {
            margin-bottom: 1.5rem;
            color: var(--gray-color);
        }

        .cause-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }

        .cause-raised {
            font-weight: 600;
            color: var(--primary-color);
        }

        .cause-goal {
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .progress {
            height: 8px;
            margin-bottom: 1rem;
            border-radius: 4px;
            background: #f0f0f0;
        }

        .progress-bar {
            border-radius: 4px;
            background: var(--primary-color);
        }

        .cause-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
        }

        .cause-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .cause-link:hover i {
            transform: translateX(5px);
        }

        /* Urgent Causes */
        .urgent-causes {
            background: #fff;
        }

        .urgent-cause-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
        }

        .urgent-cause-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .urgent-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }