        /* Base Styles */
        :root {
            --primary-color: #204173;
            --secondary-color: #00aae5;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-text: #f8f8f8;
            --background-light: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        
        p {
            margin-bottom: 20px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .logo img {
            max-width: 100px;
            height: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a.active {
            color: var(--accent-color);
        }
        
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
            margin-top: 70px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('../Imgs/abt.jpeg');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }
        
        .wipe-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.8), rgba(0, 170, 229, 0.8));
            z-index: -1;
            clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
            animation: wipe 4s infinite alternate;
        }
        
        @keyframes wipe {
            0% {
                clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
            }
            50% {
                clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
            }
            100% {
                clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
            }
        }
        
        .floating-cat {
            position: absolute;
            top: 20%;
            left: -100px;
            font-size: 60px;
            animation: catMove 15s infinite linear;
            z-index: -1;
            opacity: 0.7;
        }
        
        @keyframes catMove {
            0% {
                left: -100px;
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                left: calc(100% + 100px);
                transform: rotate(360deg);
            }
        }
        
        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
            }
            100% {
                transform: translateY(-100px) translateX(20px);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Support Intro Section */
        .support-intro {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .support-intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .support-intro h2 {
            color: var(--primary-color);
        }
        
        .support-intro p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        /* Image Slider Section */
        .image-slider-section {
            padding: 60px 0;
            background: var(--white);
        }
        
        .slider-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: shadowPulse 4s infinite alternate;
        }
        
        @keyframes shadowPulse {
            0% {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
            100% {
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            }
        }
        
        .slider-wipe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.3), rgba(0, 170, 229, 0.3));
            z-index: 2;
            clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
            animation: wipe 4s infinite alternate;
        }
        
        .slider-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .slider-image.active {
            opacity: 1;
        }
        
        /* Ways to Support Section */
        .ways-to-support {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .support-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .support-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .support-card:nth-child(1) {
            transition-delay: 0.2s;
        }
        
        .support-card:nth-child(2) {
            transition-delay: 0.4s;
        }
        
        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .support-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .support-card:hover .support-icon {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 170, 229, 0.5);
        }
        
        .support-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        .support-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .support-card ul {
            list-style-type: none;
            margin-left: 20px;
        }
        
        .support-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .support-card li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        /* Donation Methods Section */
        .donation-methods {
            padding: 80px 0;
            background: var(--white);
        }
        
        .donation-tabs {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .tab-headers {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .tab-header {
            padding: 15px 30px;
            background: none;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        
        .tab-header.active {
            color: var(--secondary-color);
            border-bottom: 3px solid var(--secondary-color);
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .method-card {
            background: var(--background-light);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .method-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .method-details {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .method-detail {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .method-detail:last-child {
            border-bottom: none;
        }
        
        .detail-label {
            font-weight: 600;
            min-width: 150px;
            color: var(--primary-color);
        }
        
        /* How to Apply Section */
        .how-to-apply {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .apply-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .apply-content h2 {
            color: var(--primary-color);
        }
        
        .apply-content p {
            margin-bottom: 25px;
        }
        
        .apply-content ul {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        
        .apply-content li {
            margin-bottom: 15px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .apply-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Location Section */
        .location-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .location-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .location-content h2 {
            color: var(--primary-color);
        }
        
        .location-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }
        
        .location-card {
            background: var(--background-light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .location-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .country-list {
            list-style-type: none;
            text-align: center;
        }
        
        .country-list li {
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        /* Footer */
        .footer {
            background: #000000;
            color: var(--light-text);
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light-text);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .developer-link {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .developer-link:hover {
            text-decoration: underline;
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: green;
            color: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 50%;
            font-size: 30px;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            z-index: 1000;
            border: none;
        }

        .whatsapp-btn i {
            color: white;
        }

        .whatsapp-btn:hover {
            background-color: #1ebe5d;
        }

        /* Ring animation around the button */
        @keyframes ring-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-btn {
            animation: ring-pulse 2s infinite;
        }

        /* Modal styles */
        .whatsapp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            justify-content: center;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
        }

        .whatsapp-modal-content {
            background-color: white;
            border-radius: 20px;
            width: 90%;
            max-width: 380px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modal-appear 0.3s ease-out;
        }

        @keyframes modal-appear {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Top layer - Green gradient */
        .modal-top-layer {
            background: linear-gradient(135deg, #25D366, #128C7E);
            padding: 30px 25px 25px 25px;
            text-align: center;
            position: relative;
        }

        /* Close button */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            font-size: 18px;
            cursor: pointer;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .close-modal:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        /* WhatsApp icon in modal with animation */
        .modal-whatsapp-icon {
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            animation: icon-pulse 2s infinite;
        }

        @keyframes icon-pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
        }

        .modal-title {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .modal-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
        }

        /* Bottom layer - White */
        .modal-bottom-layer {
            padding: 25px;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 25px;
        }

        .phone-number {
            font-size: 18px;
            font-weight: 600;
            color: #25D366;
            margin: 0 0 5px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .response-time {
            font-size: 14px;
            color: #666;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-modal {
            flex: 1;
            padding: 14px 14px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-secondary {
            background-color: #f0f0f0;
            color: #333;
            border: 1px solid #e0e0e0;
        }

        .btn-secondary:hover {
            background-color: #e5e5e5;
        }

        .btn-primary {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1ebe5d, #0d7a68);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .support-grid, .location-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                height: 60vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .slider-image {
                height: 300px;
            }
            
            .tab-headers {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-header {
                width: 100%;
                text-align: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-modal-content {
                max-width: 350px;
            }
            
            .modal-top-layer {
                padding: 25px 20px 20px 20px;
            }
            
            .modal-bottom-layer {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .support-card, .method-card, .location-card {
                padding: 25px 20px;
            }
            
            .whatsapp-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
                bottom: 10px;
                right: 10px;
            }
            
            .whatsapp-modal-content {
                max-width: 320px;
            }
            
            .modal-title {
                font-size: 18px;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .btn-modal {
                padding: 12px 16px;
            }
        }
    
