 
 
 
 :root {
            --primary-green: #1a3d0f;
            --accent-green: #4CAF50;
            --light-green: #81C784;
            --dark-green: #0d1f07;
            --darker-green: #061002;
            --lemon-green: #f0f8e8;
            --gold: #FFD700;
            --glass-white: rgba(255, 255, 255, 0.15);
            --gradient-primary: linear-gradient(135deg, #4CAF50, #81C784);
            --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);
            --shadow-light: 0 8px 32px rgba(76, 175, 80, 0.12);
            --shadow-medium: 0 12px 40px rgba(76, 175, 80, 0.18);
            --shadow-heavy: 0 20px 60px rgba(76, 175, 80, 0.25);
        }

        .hero-section {
            height: 100vh;
            margin-top: 70px !important;

        }

        /* Enhanced Navbar */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95) !important;
            background: rgb(255 255 255 / 67%) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(45, 80, 22, 0.1);
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-custom .container {
            max-width: 1300px;
        }

        .navbar-custom .navbar-brand img {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .navbar-custom .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-custom .nav-link {
            font-weight: 500;
            color: var(--primary-green) !important;
            padding: 0.8rem 1.2rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .navbar-custom .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
            transition: left 0.5s;
        }

        .navbar-custom .nav-link:hover::before {
            left: 100%;
        }

        .navbar-custom .nav-link:hover {
            background: rgba(76, 175, 80, 0.08);
            transform: translateY(-2px);
            color: var(--accent-green) !important;
        }

        .btn-custom {
            background: var(--gradient-primary);
            border: none;
            border-radius: 25px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.6s;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .btn-custom:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
        }

        .hero-section {
            height: 100vh;
        }

        /* Modern Card Styles */
        .service-card-custom {
            background: var(--gradient-card);
            border: 1px solid rgba(76, 175, 80, 0.1);
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card-custom:hover::before {
            transform: scaleX(1);
        }

        .service-card-custom:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(76, 175, 80, 0.3);
        }

        .service-card-custom .card-body {
            padding: 2.5rem 2rem;
        }

        .service-card-custom i {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }

        .service-card-custom:hover i {
            transform: scale(1.1) rotate(5deg);
        }

        .mission-bg {
            background: linear-gradient(135deg, var(--lemon-green) 0%, #fff 30%, var(--lemon-green) 70%, #fff 100%);
            position: relative;
        }

        .mission-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%234CAF50" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
            opacity: 0.5;
        }

        .mission-card-custom {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(76, 175, 80, 0.2);
            border-radius: 24px;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .mission-card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .mission-card-custom:hover::before {
            transform: scaleX(1);
        }

        .mission-card-custom:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: var(--shadow-heavy);
            background: rgba(255, 255, 255, 0.95);
        }

     .mission-number {
           letter-spacing: 2px;
    font-size: 2.8rem;
    font-weight: 800;
       background: #23ad23;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1px black; /* Add this line */
    transition: all 0.3s ease;
}


        .mission-card-custom:hover .mission-number {
            transform: scale(1.1);
        }

        .mission-emoji {
            font-size: 3rem;
            transition: transform 0.4s ease;
        }

        .mission-card-custom:hover .mission-emoji {
            transform: scale(1.2) rotate(10deg);
        }

        .text-primary-green {
            color: var(--primary-green) !important;
        }

        .bg-light-gray {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
        }

        /* Section header image styling */
        .section-header-img {
            width: 240px;
            height: auto;
            display: block;
            margin: 0 auto 0rem auto;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .floating-animation {
            animation: float 3s ease-in-out infinite;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: var(--shadow-medium);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Enhanced section styling */
        .section-title {
            position: relative;
            display: inline-block;
        }

        /* .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        } */

        /* Modern list styling */
        .modern-list li {
            background: rgba(76, 175, 80, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent-green);
            transition: all 0.3s ease;
        }

        .modern-list li:hover {
            background: rgba(76, 175, 80, 0.1);
            transform: translateX(10px);
        }
  



    

        /* Enhanced Falling Leaves Animation */
        .leaves-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .leaf {
            position: absolute;
            width: 25px;
            height: 25px;
            opacity: 0;
            color: var(--light-green);
            animation: fall linear infinite;
            transform-origin: center;
        }

        .leaf svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .leaf-1 {
            left: 15%;
            animation-duration: 12s;
            animation-delay: 0s;
            color: var(--accent-green);
        }

        .leaf-2 {
            left: 30%;
            animation-duration: 15s;
            animation-delay: 3s;
            color: var(--light-green);
        }

        .leaf-3 {
            left: 50%;
            animation-duration: 10s;
            animation-delay: 6s;
            color: var(--primary-green);
        }

        .leaf-4 {
            left: 70%;
            animation-duration: 13s;
            animation-delay: 2s;
            color: var(--accent-green);
        }

        .leaf-5 {
            left: 85%;
            animation-duration: 11s;
            animation-delay: 8s;
            color: var(--light-green);
        }

        .leaf-6 {
            left: 5%;
            animation-duration: 14s;
            animation-delay: 5s;
            color: var(--primary-green);
        }

        @keyframes fall {
            0% {
                transform: translateY(-100px) rotate(0deg) scale(0.8);
                opacity: 0;
            }

            10% {
                opacity: 0.8;
                transform: translateY(0px) rotate(36deg) scale(1);
            }

            50% {
                transform: translateY(50vh) rotate(180deg) scale(1.1);
                opacity: 0.6;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(100vh) rotate(360deg) scale(0.9);
                opacity: 0;
            }
        }

        /* Particle Background */
        .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--light-green);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 20s infinite linear;
        }

        .particle:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            left: 20%;
            animation-delay: 5s;
            animation-duration: 30s;
        }

        .particle:nth-child(3) {
            left: 30%;
            animation-delay: 10s;
            animation-duration: 35s;
        }

        .particle:nth-child(4) {
            left: 40%;
            animation-delay: 15s;
            animation-duration: 28s;
        }

        .particle:nth-child(5) {
            left: 60%;
            animation-delay: 8s;
            animation-duration: 32s;
        }

        .particle:nth-child(6) {
            left: 70%;
            animation-delay: 12s;
            animation-duration: 27s;
        }

        .particle:nth-child(7) {
            left: 80%;
            animation-delay: 18s;
            animation-duration: 33s;
        }

        .particle:nth-child(8) {
            left: 90%;
            animation-delay: 22s;
            animation-duration: 29s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0px);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }
        
        .btn{
            border-radius: 40px !important;
        }

        /* Enhanced Footer Styles */
        .footer {
            /*background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 50%, var(--primary-green) 100%);*/
                background: linear-gradient(135deg, #062654 0%, #072F69 50%, #265293 100%);
            color: white;
            position: relative;
            padding: 80px 0 30px;
            margin-top: 100px;
            overflow: hidden;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        }

        /* .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg,
                    var(--accent-green) 0%,
                    var(--light-green) 25%,
                    var(--gold) 50%,
                    var(--light-green) 75%,
                    var(--accent-green) 100%);
            animation: shimmer 3s ease-in-out infinite;
        } */

        @keyframes shimmer {

            0%,
            100% {
                opacity: 0.8;
            }

            50% {
                opacity: 1;
            }
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        /* Logo Section Enhanced */
        .logo-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .logo-container {
            margin-bottom: 25px;
        }

        .logo-img {
            height: 120px;
            width: auto;
            border-radius: 30px 0 30px 0;
            transition: all 0.4s ease;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
            animation: logoFloat 6s ease-in-out infinite;
        }

        .logo-img:hover {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 12px 30px rgba(76, 175, 80, 0.4));
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(2deg);
            }
        }

        .organization-name {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--light-green), var(--gold), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 4s ease-in-out infinite;
        }

        @keyframes textGlow {

            0%,
            100% {
                filter: brightness(1);
            }

            50% {
                filter: brightness(1.2);
            }
        }

        /* Title Decoration */
        .title-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            animation: slideIn 1s ease-out;
        }

        .title-decoration .line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
            animation: expandLine 2s ease-in-out infinite;
        }

        .title-decoration .dot {
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            margin: 0 15px;
            box-shadow: 0 0 20px var(--gold);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes expandLine {

            0%,
            100% {
                width: 80px;
                opacity: 0.7;
            }

            50% {
                width: 100px;
                opacity: 1;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 20px var(--gold);
            }

            50% {
                transform: scale(1.2);
                box-shadow: 0 0 30px var(--gold);
            }
        }

        @keyframes slideIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            font-style: italic;
            color: var(--light-green);
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        /* Footer Sections */
        .footer-section {
            margin-bottom: 40px;
        }

        .footer-section h5 {
            color: var(--light-green);
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 15px;
            animation: slideInLeft 1s ease-out;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--gold));
            border-radius: 2px;
            animation: widthExpand 2s ease-in-out infinite;
        }

        @keyframes widthExpand {

            0%,
            100% {
                width: 60px;
            }

            50% {
                width: 80px;
            }
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-30px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Footer Links Enhanced */
        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
            transform: translateX(0);
            transition: transform 0.3s ease;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 8px 0;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent-green), var(--light-green));
            transition: width 0.3s ease;
            z-index: -1;
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 15px;
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 15px;
            width: 20px;
            color: var(--light-green);
            transition: all 0.3s ease;
        }

        .footer-links a:hover i {
            color: white;
            transform: scale(1.2);
        }

        /* Contact Info Enhanced */
        .contact-info {
            background: rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px 0;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(10px);
        }

        .contact-item i {
            color: var(--light-green);
            font-size: 1.3rem;
            margin-right: 20px;
            margin-top: 5px;
            width: 30px;
            transition: all 0.3s ease;
        }

        .contact-item:hover i {
            color: var(--gold);
            transform: scale(1.2);
        }

        .contact-item div h6 {
            margin-bottom: 8px;
            color: var(--light-green);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-item div p {
            margin: 0;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-item div p a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item div p a:hover {
            color: var(--light-green);
        }

        /* Get Directions Button */
        .get-directions {
            display: inline-flex;
            align-items: center;
            margin-top: 10px;
            padding: 8px 15px;
            background: linear-gradient(45deg, var(--accent-green), var(--light-green));
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .get-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
            color: white;
        }

        .get-directions i {
            margin-right: 8px;
            font-size: 0.9rem;
        }

        /* Social Section Enhanced */
        .social-section {
            text-align: center;
        }

        .connect-text {
            margin-bottom: 25px;
            opacity: 0.9;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-green), var(--light-green));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.4s ease;
            font-size: 1.4rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
        }

        .social-link.facebook:hover {
            background: linear-gradient(135deg, #1877F2, #42A5F5);
        }

        .social-link.twitter:hover {
            background: linear-gradient(135deg, #000406, #212124);
        }

        .social-link.instagram:hover {
            background: linear-gradient(135deg, #E4405F, #F06292);
        }

        .social-link.linkedin:hover {
            background: linear-gradient(135deg, #0077B5, #42A5F5);
        }

        .social-link.youtube:hover {
            background: linear-gradient(135deg, #FF0000, #FF5722);
        }

        /* Social Tooltips */
        .social-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark-green);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }

        .social-tooltip::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid var(--dark-green);
        }

        .social-link:hover .social-tooltip {
            opacity: 1;
            bottom: -35px;
        }

        /* Footer Bottom Enhanced */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            opacity: 0.9;
        }

        .footer-bottom p {
            margin: 10px 0;
            font-size: 0.95rem;
        }

        .heartbeat {
            color: var(--accent-green);
            animation: heartbeat 2s ease-in-out infinite;
        }

        @keyframes heartbeat {

            0%,
            50%,
            100% {
                transform: scale(1);
            }

            25%,
            75% {
                transform: scale(1.2);
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 80px 0;
            text-align: center;
        }

        .demo-content h1 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 3rem;
            font-weight: 700;
        }

        .demo-content p {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Mobile Responsive Design */
        @media (max-width: 992px) {
            .footer {
                padding: 60px 0 30px;
            }

            .organization-name {
                font-size: 2.5rem;
            }

            .logo-img {
                height: 100px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                text-align: center;
                padding: 50px 0 20px;
            }

            .footer-section {
                text-align: center;
                margin-bottom: 40px;
            }

            .footer-section h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .organization-name {
                font-size: 2.2rem;
            }

            .logo-img {
                height: 80px;
            }

            .contact-info {
                padding: 25px;
                margin-top: 20px;
            }

            .contact-item {
                text-align: center;
                flex-direction: column;
                align-items: center;
            }

            .contact-item i {
                margin: 0 0 10px 0;
            }

            .footer-links {
                text-align: center;
            }

            .footer-links a:hover {
                padding-left: 8px;
                transform: translateX(0);
            }

            .social-links {
                justify-content: center;
                gap: 15px;
            }

            .social-link {
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            .title-decoration .line {
                width: 60px;
            }

            .demo-content h1 {
                font-size: 2.5rem;
            }

            .demo-content p {
                font-size: 1.1rem;
                padding: 0 20px;
            }
        }

        @media (max-width: 576px) {
            .footer {
                padding: 40px 0 20px;
            }

            .organization-name {
                font-size: 1.8rem;
            }

            .tagline {
                font-size: 1rem;
                padding: 0 20px;
            }

            .logo-img {
                height: 70px;
            }

            .footer-section h5 {
                font-size: 1.2rem;
            }

            .contact-info {
                padding: 20px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }

            .social-links {
                gap: 12px;
            }

            .get-directions {
                padding: 6px 12px;
                font-size: 0.85rem;
            }

            .title-decoration .line {
                width: 50px;
            }

            .title-decoration .dot {
                width: 10px;
                height: 10px;
                margin: 0 10px;
            }

            .demo-content {
                padding: 60px 0;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }

            .footer-bottom {
                text-align: center;
            }

            .footer-bottom .row>div {
                text-align: center !important;
                margin-bottom: 10px;
            }
        }

        /* Extra animations for better UX */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateY(50px);
            }

            50% {
                opacity: 1;
                transform: scale(1.05) translateY(-10px);
            }

            70% {
                transform: scale(0.9) translateY(0px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0px);
            }
        }

        .footer-section {
            animation: bounceIn 0.8s ease-out;
        }

        .footer-section:nth-child(1) {
            animation-delay: 0.1s;
        }

        .footer-section:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-section:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Hover effects for better interactivity */
        .footer-content:hover .leaf {
            animation-play-state: paused;
        }

        .footer:hover .particle {
            animation-duration: 15s;
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus states for accessibility */
        .footer-links a:focus,
        .social-link:focus,
        .get-directions:focus {
            outline: 2px solid var(--light-green);
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {

            .leaves-container,
            .particles-bg {
                display: none;
            }

            .footer {
                background: #333 !important;
                color: #000 !important;
            }
        }
  


        