   /* CSS Custom Properties for Design System */
        :root {
            --primary-green: #4ade80;
            --primary-red: #ef4444;
            --accent-pink: #f472b6;
            --neutral-white: #ffffff;
            --neutral-gray-50: #f9fafb;
            --neutral-gray-100: #f3f4f6;
            --neutral-gray-200: #e5e7eb;
            --neutral-gray-600: #4b5563;
            --neutral-gray-800: #1f2937;
            --neutral-gray-900: #111827;
            
            --font-primary: 'Inter', sans-serif;
            --font-display: 'Playfair Display', serif;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            
            --border-radius: 0.5rem;
            --border-radius-lg: 1rem;
            --border-radius-xl: 1.5rem;
            
            --transition-fast: 0.15s ease-out;
            --transition-normal: 0.3s ease-out;
            --transition-slow: 0.5s ease-out;
			
			
			 
            /* Neutrals */
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            
            /* Typography */
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-display: 'Playfair Display', Georgia, serif;
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            
            /* Border Radius */
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--neutral-gray-800);
            background-color: var(--neutral-white);
            overflow-x: hidden;
        }
		
		
		
		.footer-bottom {
            border-top: 1px solid var(--neutral-gray-800);
            padding-top: 2rem;
            color: var(--neutral-gray-500);
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-legal {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-legal a {
            color: var(--neutral-gray-500);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

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

        /* Adjustments for the new footer structure */
        .footer .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem; /* Add horizontal padding */
        }

        .footer .footer-text {
            max-width: 500px; /* Limit width for better readability */
            margin: 0 auto 2rem auto; /* Center the text */
        }

        .footer .social-links {
            margin-bottom: 2rem;
        }

        .footer .footer-bottom {
            padding-top: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--neutral-gray-900);
            color: var(--neutral-white);
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            margin-bottom: 2rem;
        }

        .footer-logo img {
            width: 60px;
            height: 60px;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
        }

        .footer-text {
            color: var(--neutral-gray-400);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--neutral-gray-800);
            color: var(--neutral-white);
            border-radius: 50%;
            text-decoration: none;
            transition: all var(--transition-normal);
        }

        .social-link:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid var(--neutral-gray-800);
            padding-top: 2rem;
            color: var(--neutral-gray-500);
        }

        /* Added floating action buttons styles */
        .floating-buttons {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            text-decoration: none;
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: none;
            font-size: 1.5rem;
        }

        .floating-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 25px 30px -5px rgb(0 0 0 / 0.2), 0 10px 12px -6px rgb(0 0 0 / 0.15);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
        }

        .scroll-top-btn {
            background: linear-gradient(135deg, var(--primary-green) 0%, #22c55e 100%);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 20px 25px -5px rgb(37 211 102 / 0.3), 0 8px 10px -6px rgb(37 211 102 / 0.3);
            }
            50% {
                box-shadow: 0 25px 30px -5px rgb(37 211 102 / 0.5), 0 10px 12px -6px rgb(37 211 102 / 0.5);
            }
        }

        /* Responsive adjustments for floating buttons */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 1.5rem;
                right: 1.5rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .btn-group {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .section {
                padding: 3rem 1rem;
            }

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

            .contact-form {
                padding: 2rem 1rem;
                margin: 0 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stories-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

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

            .cta-section {
                padding: 3rem 1rem;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
            }

            .slider-arrow.prev {
                left: 1rem;
            }

            .slider-arrow.next {
                right: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 0 1rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

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

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

            .hero-title {
                font-size: clamp(2rem, 8vw, 4rem);
            }
        }

        /* Accessibility Enhancements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus Styles */
        *:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            :root {
                --neutral-gray-600: #000000;
                --neutral-gray-800: #000000;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Enhanced Footer Styles */
        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--neutral-white);
            margin-bottom: 0.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--neutral-gray-400);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--neutral-gray-400);
        }

        .contact-item i {
            color: var(--primary-green);
            font-size: 1.1rem;
        }

     
        /* Added styles for the new hero slide layout with images */
        .hero-slide-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-image {
            flex: 1;
            /* increased max-width from 500px to 650px for larger images */
            width: 40%;
            /* Added transform for subtle hover effect */
            transition: transform 0.3s ease;
        }

        .hero-image img {
            width: 100%;
            max-height: 400px;
            border-radius: 12px;
            /* Enhanced shadow effects for better visual depth */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 
                        0 5px 15px rgba(0, 0, 0, 0.15);
            /* Added subtle border for definition */
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Added hover effect for hero images */
        .hero-image:hover {
            transform: translateY(-5px);
        }

        .hero-image:hover img {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                        0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Updated responsive styles for mobile */
        @media (max-width: 768px) {
            .hero-slide-container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            
            .hero-image {
                order: 2;
                max-width: 100%;
            }
            
            .hero-content {
                order: 1;
                max-width: 100%;
            }
        }

        /* Added styling for feature card images */
        .feature-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
            margin-bottom: 1.5rem;
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .card-image {
            transform: scale(1.05);
        }
        
        .feature-card {
            position: relative;
            overflow: hidden;
        }
		
		/* Container */
