
        :root {
            --primary: #2e7d32;
            --secondary: #558b2f;
            --accent: #76ff03;
            --light: #f1f8e9;
            --dark: #1b5e20;
            --text: #212121;
            --text-light: #757575;
            --white: #ffffff;
            --transition: all 0.4s ease;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            --radius: 16px;
            --radius-full: 100px;
              
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
             --font-main: 'Poppins', sans-serif; /* Professional Font */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }

        /* 1. Custom Text Selection Color */
::selection {
    background-color: var(--accent);
    color: var(--dark);
}

/* 2. Custom Scrollbar (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
    border: 2px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --------------------------- Pre loader CSS ------------------------------ */

    /* Preloader */
    #preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
    }

    .loader-circle {
      width: 80px;
      height: 80px;
      border: 6px solid var(--light);
      border-top: 6px solid var(--accent);
      border-radius: 50%;
      margin-bottom: 20px;
    }

    .lottie-container {
      width: 180px;
      height: 180px;
      margin-bottom: 20px;
    }

    .preloader-text {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: 2px;
      text-align: center;
    }

    .preloader-sub {
      font-size: 1rem;
      color: var(--text-light);
      margin-top: 6px;
    }

/* 3. Custom Cursor */
html, body, a, button, input, textarea, select {
    cursor: none !important; /* hide default cursor */

}
  /* Base custom cursor */
  .custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.15s ease-out;
    display: none; /* hidden on mobile */
  }

  /* Hover effect for links/buttons */
  .custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.3);
    filter: drop-shadow(0 0 5px #00aaff);
  }

  /* Click effect (expanding ripple) */
  .cursor-click {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00aaff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: clickRipple 0.4s ease-out forwards;
  }

  @keyframes clickRipple {
    from {
      opacity: 1;
      transform: translate(-50%, -50%) scale(0.2);
    }
    to {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2);
    }
  }

/* 4. Smooth Scroll (extra enhancement) */
html {
    scroll-behavior: smooth;
}

/* 5. Optional: Input Focus Outline */
input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--accent);
    transition: var(--transition);
}




        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            margin-bottom: 10px;
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
        }

        .btn-primary:hover {
            background: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
        }

        .btn-secondary {
            background: var(--dark);
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }
.sub-heading{
    
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
}

.heading{
    color: var(--accent);
}
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            padding: 12px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            /* background: var(--primary); */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .logo-icon i {
            color: var(--white);
            font-size: 24px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin: 0 15px;
            position: relative;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }
        .actived{
color: var(--accent);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.5) 0%, rgba(46, 204, 112, 0.3) 100%), url('../images/banner_img/empathy\ banner\ image\ .jpg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
            text-align: center;
        }


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, rgba(86, 171, 47, 0.2) 0%, rgba(33, 150, 83, 0.3) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 650px;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-title span {
            color: var(--accent);
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(118, 255, 3, 0.3);
            z-index: -1;
        }

        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(129, 199, 132, 0.15);
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: -150px;
            right: -100px;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            top: 200px;
            right: 100px;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            bottom: 100px;
            right: 300px;
        }

        /* About Section */
        .section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, var(--primary), transparent);
            opacity: 0.3;
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            padding: 20px;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(118, 255, 3, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: var(--primary);
            font-size: 20px;
        }

        /* Programs Section */
        .programs {
            background: linear-gradient(135deg, var(--light) 0%, #e8f5e9 100%);
            position: relative;
            overflow: hidden;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .program-image {
            height: 200px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .program-card:hover .program-image img {
            transform: scale(1.05);
        }

        .program-content {
            padding: 25px;
        }

        .program-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .program-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Impact Section */
        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: -15px;
        }

        .impact-stat {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .impact-stat:hover {
            transform: translateY(-10px);
        }

        .impact-icon {
            width: 80px;
            height: 80px;
            background: rgba(118, 255, 3, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .impact-icon i {
            font-size: 36px;
            color: var(--primary);
        }

        .impact-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231b5e20' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta-text {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .cta-btn {
            background: var(--white);
            color: var(--primary);
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover {
            background: var(--accent);
            color: var(--dark);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
  .footer-logo{
    display: flex;
  }
  .footer-logo img{
    width: 145px;
    margin-top: -50px;
  }
  
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 75px;
                right: -100%;
                flex-direction: column;
                background: var(--white);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 40px 20px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .hero {
                padding-top: 100px;
                height: auto;
            }

            .hero-content {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }

            .hero-shapes {
                display: none;
            }

            .section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .impact-stats {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2.2rem;
            }
        }

        /* Donation Form */
        .donation-form-section {
            /* padding: 10px 0; */
            background-color: transparent;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .form-header {
            background: var(--light) !important;
            color: rgb(255, 255, 255);
            text-align: center;
            padding: 30px;
        }

        .form-header h2 {
            color: rgb(9, 255, 1) !important;
            margin-bottom: 10px;
        }

        .form-body {
            /* padding: 40px; */
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .form-group {
            flex: 1 0 300px;
            padding: 0 15px;
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #29ff08;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
    

        /* ------------------------------------- Donation section ---------------------------------- */


        
/* Combined Scoped CSS to avoid conflict with other styles */
.combined-donation-section :is(*, *::before, *::after) {
    box-sizing: border-box;
    transition: var(--transition);
}

.combined-donation-section {
    background: transparent;
    padding: 15px 20px;
    color: var(--text);
}

.combined-donation-section .container-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.combined-donation-section .left-section {
    flex: 1;
    min-width: 300px;
}

.combined-donation-section .right-section {
    flex: 2;
    min-width: 300px;
}

.combined-donation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    /* margin-bottom: 40px; */
    padding-top: 10px;
    position: relative;
}

.combined-donation-section .category-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.combined-donation-section .category-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.combined-donation-section .category-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.combined-donation-section h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.combined-donation-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.combined-donation-section .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.combined-donation-section .btn:hover {
    background-color: var(--primary);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Donation Form Styles */
.combined-donation-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.combined-donation-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.combined-donation-section .section-title p {
    color: var(--text-light);
    font-size: 1rem;
}

.combined-donation-section .form-donation {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 98%;
    margin: 0 auto;
}

.combined-donation-section .form-header h2 {
    color: var(--primary); 
    margin-bottom: 5px;
}

.combined-donation-section .form-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.combined-donation-section .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.combined-donation-section .form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.combined-donation-section .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.combined-donation-section .form-control,
.combined-donation-section .form-control:focus,
.combined-donation-section .form-control:active {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    background-color: #fff;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.combined-donation-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.combined-donation-section textarea.form-control {
    resize: vertical;
}

.combined-donation-section .form-check {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.combined-donation-section .form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.combined-donation-section .form-footer {
    margin-top: 30px;
    text-align: center;
}

.combined-donation-section .btn-form {
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    width: 100%;
    max-width: 300px;
}
.section-title.categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.section-title .category-btn {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title  .category-btn:hover {
  background: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .section-title .categories-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .section-title .category-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.combined-donation-section .btn-form:hover {
    background-color: var(--dark);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .combined-donation-section .container-section {
        flex-direction: column;
    }
    
    .combined-donation-section .form-donation {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .combined-donation-section .form-row {
        flex-direction: column;
    }

    .combined-donation-section .form-group {
        min-width: 100%;
    }
}


/* --------------------------DOnation  CSS----------------------------------------- */
   /* Donations Section - Flexbox Only */
        .donations {
            padding: 25px 0;
            background-color: var(--light);
        }

        .donations .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .donations .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .donations .section-title h2 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 10px;
                        text-align: center;

        }

        .donations .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .donations .posts-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .donations .post-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            flex: 1 1 300px;
            max-width: 400px;
            display: flex;
            flex-direction: column;
        }

        .donations .post-card:hover {
            transform: translateY(-5px);
        }

        .donations .post-image {
            height: 200px;
            overflow: hidden;
        }

        .donations .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .donations .post-card:hover .post-image img {
            transform: scale(1.05);
        }

        .donations .post-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .donations .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .donations .post-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .donations .user-avatar {
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .donations .post-user h4 {
            color: var(--text);
            margin: 0;
            font-size: 1rem;
        }

        .donations .post-user small {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        .donations .post-stats {
            display: flex;
            gap: 15px;
        }

        .donations .stat {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .donations .stat i {
            color: var(--accent);
        }

        .donations .post-content h3 {
            color: var(--dark);
            margin: 0 0 10px 0;
            font-size: 1.3rem;
        }

        .donations .post-content p {
            color: var(--text-light);
            margin: 0 0 20px 0;
            line-height: 1.5;
            flex: 1;
        }

        .donations .progress-bar {
            height: 8px;
            background-color: #e0e0e0;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
            overflow: hidden;
        }

        .donations .progress {
            height: 100%;
            background-color: var(--accent);
            border-radius: var(--radius-full);
            transition: var(--transition);
        }

        .donations .progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .donations .progress-info span:first-child {
            color: var(--primary);
            font-weight: bold;
        }

        .donations .progress-info span:last-child {
            color: var(--text-light);
        }

        .donations .btn-primary {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }

        .donations .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
        }
@media (max-width: 768px) {
    .donations .container {
        width: 100%;
        padding: 0;
        margin: 0 auto; /* Center the container */
    }

    .donations .section-title h2 {
        font-size: 2rem;
    }

    .donations .posts-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-left: 10px;
        margin-right: 10px;
        overflow-x: auto;
        padding-left: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .donations .post-card {
        flex: 0 0 auto;
        min-width: 100%;
        margin-left: 5px;
        width: 80%;
        scroll-snap-align: start;
    }


}


/* ------------------ blog Section CSS ------------------------------------- */

.blog-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

/* Scrollable wrapper */
.stories-scroll-wrapper {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 2rem;
    margin-left: 175px;
    margin-right: 175px;
      /* position: relative;  */
}


.story-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.3);
}

.story-img {
    width: 100%;
    height: 200px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.story-author {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.story-text {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Form */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 42, 0.818);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 201, 255, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow);
    font-family: 'Exo 2', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(77, 91, 249, 0.5);
}

/* Alternate story layout */
@media (min-width: 768px) {
    .story-card {
        display: flex;
        flex-direction: row; /* default: image left */
        align-items: stretch;
    }

    .story-card:nth-child(even) {
        flex-direction: row-reverse; /* image right for even cards */
    }

    .story-img {
        width: 419px;
        height: auto;
        flex-shrink: 0;
    }
    .stories-scroll-wrapper{
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (min-width: 992px) {
    .form-title {
        font-size: 1.8rem;
    }

    .submit-btn {
        font-size: 1.1rem;
    }

    
}
@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }
}


    /* -------------------------------------------------------Scoped Donation & Help Section Styles----------------------------- */
/* Base Styles */
.custom-donate-section,
.custom-help-sections {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f9fc;
    padding: 40px 20px;
    color: #333;
    box-sizing: border-box;
}

.custom-donate-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.custom-donate-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.custom-donate-content p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    padding: 0 10px;
}

/* Donate Options */
.custom-donate-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.custom-donate-option {
    padding: 10px 20px;
    background-color: #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    min-width: 140px;
}

.custom-donate-option.active,
.custom-donate-option:hover {
    background-color: #007bff;
    color: #fff;
}

/* Donate Form */
.custom-donate-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.custom-form-group {
    margin-bottom: 20px;
}

.custom-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-form-group input,
.custom-form-group select,
.custom-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Button */
.custom-donate-btn,
.custom-btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-donate-btn:hover {
    background-color: #0056b3;
}

.custom-btn {
    background-color: #28a745;
}

.custom-btn:hover {
    background-color: #218838;
}

/* Help Sections */
.custom-help-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.custom-main-help,
.custom-aside-help {
    flex: 1 1 48%;
    box-sizing: border-box;
}

.custom-help-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}

.custom-help-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.custom-help-section form input,
.custom-help-section form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
}

/* Lists */
.custom-request-list,
.custom-post-list {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}

.custom-request-list li,
.custom-post-list li {
    padding: 10px;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Responsive for tablets and mobile */
@media (max-width: 992px) {
    .custom-main-help,
    .custom-aside-help {
        flex: 1 1 100%;
    }

    .custom-donate-options {
        flex-wrap: wrap;
    }

    .custom-donate-option {
        flex: 1 1 45%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .custom-donate-content h2 {
        font-size: 1.6em;
    }

    .custom-donate-options {
        flex-direction: column;
        gap: 10px;
    }

    .custom-donate-option {
        width: 100%;
    }

    .custom-donate-form {
        padding: 20px;
    }

    .custom-help-sections {
        flex-direction: column;
        gap: 20px;
    }

    .custom-help-section {
        padding: 20px;
    }
}

/*------------------------------------------------------- Team Section Styles ---------------------------------------------*/
.team-members-section {
    padding: 2rem 2rem;
    background-color: var(--light);
    scroll-margin-top: 80px;
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
}

.team-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.team-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.team-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Members Grid */
.team-members-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Team Member Card */
.team-member-profile {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-member-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.profile-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-profile:hover .profile-image-wrapper img {
    transform: scale(1.05);
}

.profile-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-position {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.profile-social-links {
    display: flex;
    gap: 1rem;
}

.profile-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.profile-social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Animation */
.animated-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-members-section {
        padding: 3rem 1rem;
    }

    .team-section-title {
        font-size: 2rem;
    }

    .team-members-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Scroll Animation Trigger */
@media (min-width: 769px) {
    .team-members-container {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding-bottom: 1rem;
        grid-auto-columns: calc(33.333% - 1.5rem);
        grid-template-columns: unset;
        display: grid;
        grid-auto-flow: column;
        gap: 2rem;
    }

    .team-member-profile {
        scroll-snap-align: start;
        min-width: 280px;
    }

    .team-members-container::-webkit-scrollbar {
        height: 8px;
        background: transparent;
    }

    .team-members-container::-webkit-scrollbar-thumb {
        background: rgba(46, 125, 50, 0.3); /* var(--primary) with transparency */
        border-radius: 4px;
    }
}


/* ----------------------------------Whatsapp CSS------------------------------- */




 .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: transparent;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      z-index: 999;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }

    .whatsapp-chat {
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 300px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      z-index: 999;
      display: none;
      overflow: hidden;
    }

    .chat-header {
      background: #25D366;
      color: white;
      padding: 10px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-header h3 {
      margin: 0;
      font-size: 16px;
    }

    .close-chat {
      cursor: pointer;
      font-size: 18px;
    }

    .chat-body {
      padding: 15px;
      height: 300px;
      overflow-y: auto;
    }

    .whatsappmessage {
      margin-bottom: 15px;
      padding: 8px 12px;
      border-radius: 8px;
      max-width: 80%;
      word-wrap: break-word;
    }

    .received {
      background: #f1f1f1;
      margin-right: auto;
    }

    .sent {
      background: #DCF8C6;
      margin-left: auto;
    }

    .chat-footer {
      padding: 10px;
      border-top: 1px solid #eee;
      display: flex;
    }

    .chat-footer input {
      flex: 1;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 20px;
      outline: none;
    }

    .chat-footer button {
      background: #25D366;
      color: white;
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      margin-left: 10px;
      cursor: pointer;
    } 

    .section-subtitle{
        text-align: center;
    }


    /* ---------------------------QR COde CSS ------------------------------ */

#qrImage{       
width: 25%;
    }

    /* ---------------------THis is the Help and Support CSS ---------------------------------- */
   
        .help-support {
            padding: 5rem 1.5rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .help-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
        }

        /* Left image */
        .help-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }
        
        .help-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/help_support.jpg') center/cover no-repeat;
            opacity: 0.85;
            transition: var(--transition);
        }
        
        .help-image:hover::before {
            transform: scale(1.05);
            opacity: 0.9;
        }
        
        .help-image-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 80%;
        }
        
        .help-image-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .help-image-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Right form */
        .help-form-section {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .help-form-section h2 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .help-form-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .help-form-section p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .help-form-section input,
        .help-form-section textarea {
            width: 100%;
            padding: 1rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius);
            font-size: 1rem;
            margin-left: 10px;
            transition: var(--transition);
            background: var(--light);
            color: var(--dark);
        }
        
        .help-form-section input:focus,
        .help-form-section textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
            background: var(--white);
        }
        
        .help-form-section textarea {
            resize: none;
            min-height: 140px;
        }
        
        .form-group i {
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            transition: var(--transition);
        }
        
        .form-group.textarea-group i {
            top: 1.2rem;
            transform: none;
        }
        
        .help-form-section input:focus + i,
        .help-form-section textarea:focus + i {
            color: var(--primary);
        }

        /* Success message */
        .help-success {
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: var(--radius);
            background: #dcfce7;
            color: #166534;
            display: none;
            align-items: center;
            gap: 0.75rem;
            animation: fadeIn 0.5s ease;
        }
        
        .help-success i {
            font-size: 1.2rem;
        }

        /* Button */
        .help-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
        }
        
        .help-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
        }
        
        .help-btn:active {
            transform: translateY(0);
        }
        
        .whatsapp-redirect {
            margin-top: 1.5rem;
            padding: 1rem;
            background: #f0f9ff;
            border-radius: var(--radius);
            text-align: center;
            color: #0c4a6e;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .whatsapp-redirect i {
            color: #25d366;
            margin-right: 0.5rem;
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .help-container {
                flex-direction: column;
                max-width: 600px;
            }
            
            .help-image {
                min-height: 300px;
                width: 100%;
            }
            
            .help-form-section {
                padding: 2.5rem 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .help-support {
                padding: 2rem 1rem;
            }
            
            .help-form-section {
                padding: 2rem 1.5rem;
            }
            
            .help-form-section h2 {
                font-size: 1.8rem;
            }
            
            .help-image-content h3 {
                font-size: 1.6rem;
            }
            
            .help-image-content p {
                font-size: 1rem;
            }
                 
    .stories-scroll-wrapper {
  
    margin-left: 0; 
     margin-right: 0;
    /* position: relative; */
}


        }

        
.help-image-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    /* background: var(--white); */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.help-image-content:hover {
    box-shadow: var(--shadow-lg);
}

.help-image-content .heading {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.help-image-content .sub-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

/* -----------------===========================-------------------------- */

@media(max-width:786px){
    #qrImage {
    width: 80%;
}

.logo-text {
    font-size: 20px;
    
}

.custom-cursor{
    display: none;
}
}