html,
body {
    overflow-x: hidden;
}

.hero-text,
.hero-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    width: calc(100% - 1rem);
    box-sizing: border-box;
}

:root {
    --primary: #e81463;
    --secondary: #009fe3;
    --accent: #00b8c2;
    --accent-light: #80e5eb;
    --dark: #333333;
    --light: #f9f9f9;
    --gradient-1: linear-gradient(135deg, #ff4d8b, #e81463);
    --gradient-2: linear-gradient(135deg, #66d9ff, #009fe3);
    --gradient-3: linear-gradient(135deg, #80e5eb, #00b8c2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar styling */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--light);
}

body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #c61255;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(232, 20, 99, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

/* Header with parallax effect */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../route.gif') center/cover fixed;
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Animation for floating clouds */
.cloud {
    position: absolute;
    opacity: 0.8;
    animation: float 15s infinite linear;
}

.cloud:nth-child(1) {
    width: 100px;
    top: 20%;
    left: -100px;
    animation-duration: 25s;
}

.cloud:nth-child(2) {
    width: 150px;
    top: 40%;
    left: -150px;
    animation-duration: 35s;
    animation-delay: 5s;
}

.cloud:nth-child(3) {
    width: 120px;
    top: 70%;
    left: -120px;
    animation-duration: 30s;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(calc(100vw + 200px)) translateY(20px);
        opacity: 0;
    }
}

/* Animated background pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

@media (max-width: 480px) {
    .logo {
        width: 85%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s;
    background: linear-gradient(to right, #fff, var(--accent-light), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1.8s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Animated button with ripple effect */
.cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(232, 20, 99, 0.4);
    animation-duration: 1s;
    animation-fill-mode: both;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover:before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(232, 20, 99, 0.6);
}

.cta-button.animate-in {
    animation: fadeInUp 0.5s ease-out;
}

.animate__delay-0-5s {
    animation-delay: 0.5s;
}

.animate__delay-0-75s {
    animation-delay: 0.75s;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.hero-intro h1,
.hero-text h1 {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__animated {
    opacity: 0;
}

.animate__fadeInUp {
    opacity: 1;
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.scroll-icon {
    color: white;
    font-size: 2rem;
}

.impact-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

/* Wavy background */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f9f9f9' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,176C384,171,480,181,576,197.3C672,213,768,235,864,229.3C960,224,1056,192,1152,170.7C1248,149,1344,139,1392,133.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background-color: var(--light);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.impact-card:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    top: -50%;
    left: -50%;
    z-index: -1;
    transition: all 0.6s ease;
    transform: translateY(100%) rotate(45deg);
    opacity: 0;
}

.impact-card:hover:before {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.03);
    color: white;
    box-shadow: 0 20px 40px rgba(232, 20, 99, 0.3);
}

.impact-card:hover .impact-icon,
.impact-card:hover .impact-title {
    color: white;
}

.impact-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    display: inline-block;
}

.impact-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

/* Animated counter section */
.counter-section {
    padding: 4rem 0;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

@media (max-width: 768px) {
    .counter-container {
        padding: 0 10px;
        justify-content: center;
    }

    .counter-item {
        flex: 0 1 auto;
        margin: 1rem;
        max-width: calc(100% - 2rem);
        width: 100%;
    }
}

.counter-item {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.counter-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.counter-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Animated blobs background */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: blob-float 15s infinite alternate;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    background-color: var(--primary);
    top: 30%;
    left: 30%;
    animation-delay: 2s;
}

.blob-4 {
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    top: -50px;
    right: 30%;
    animation-delay: 2s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

/* About section with creative design */
.about-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(232, 20, 99, 0.1) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(0, 159, 227, 0.1) 2%, transparent 0%);
    background-size: 100px 100px;
    opacity: 0.5;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: rotate(-2deg);
}

.about-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.about-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image:hover:before {
    top: 10px;
    left: -10px;
}

/* Custom section title with creative design */
.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 5px;
    animation: width-expand 1.5s infinite alternate;
}

@keyframes width-expand {
    0% {
        width: 50px;
    }

    100% {
        width: 150px;
    }
}

/* Donation section with QR code */
.donation-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.donation-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-3);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
    top: -300px;
    right: -300px;
    z-index: 0;
}

/* QR Code Container */
.qr-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    margin: 3rem 0;
}

.qr-code {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.qr-code img {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-code img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.qr-info {
    flex: 2;
    min-width: 300px;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.donation-chip {
    background-color: rgba(232, 20, 99, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.donation-chip:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 20, 99, 0.2);
}

/* Manual Payment Section */
.manual-payment {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 5px solid var(--secondary);
}

.payment-details {
    margin-top: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-row {
    display: flex;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.8rem;
}

.payment-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-label {
    flex: 1;
    min-width: 120px;
    font-weight: bold;
}

.payment-value {
    flex: 2;
    word-break: break-all;
}

/* Tax Confirmation Notice */
.tax-notice {
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    position: relative;
}

.tax-notice i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 1rem;
    vertical-align: middle;
}

/* Testimonial section with 3D effect */
.testimonial-section {
    padding: 6rem 0;
    background: var(--gradient-2);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%);
    opacity: 0.6;
}

.testimonial-container {
    perspective: 1000px;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    animation: testimonial-rotate 20s infinite linear;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

@keyframes testimonial-rotate {
    0% {
        transform: rotateY(0deg) translateZ(10px);
    }

    25% {
        transform: rotateY(1deg) translateZ(15px);
    }

    50% {
        transform: rotateY(0deg) translateZ(20px);
    }

    75% {
        transform: rotateY(-1deg) translateZ(15px);
    }

    100% {
        transform: rotateY(0deg) translateZ(10px);
    }
}

.quote-marks {
    font-size: 8rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.quote-start {
    top: -30px;
    left: 10px;
}

.quote-end {
    bottom: -70px;
    right: 10px;
}

blockquote {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    transform: translateZ(30px);
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1.2rem;
    transform: translateZ(40px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Animated footer with creative design */
footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23009fe3' fill-opacity='0.3' d='M0,224L48,224C96,224,192,224,288,202.7C384,181,480,139,576,149.3C672,160,768,224,864,229.3C960,235,1056,181,1152,149.3C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.footer-links a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.social-icon:hover:after {
    width: 150%;
    height: 150%;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.copyright {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Custom scrollbar and smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animated scrollback to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(232, 20, 99, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Copy button for bank details */
.copy-btn {
    margin-top: 8px;
    background-color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.copy-btn:hover {
    background-color: var(--accent);
    color: var(--dark);
}

/* Animations for page elements */
.fade-in {
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    animation: fadeInUp 1s forwards;
}

.fade-in-right {
    animation: fadeInRight 1s forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .counter-item {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .impact-grid,
    .donation-options {
        grid-template-columns: 1fr;
    }

    .about-content,
    .qr-container {
        flex-direction: column;
    }

    .counter-container {
        flex-direction: column;
    }

    .counter-item {
        width: 100%;
    }

    .testimonial-card {
        padding: 2rem;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .impact-icon {
        font-size: 3rem;
    }

    .impact-title {
        font-size: 1.5rem;
    }

    .custom-donation-form {
        padding: 2rem 1.5rem;
    }

    .footer-column {
        min-width: 100%;
    }
}


.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

@keyframes swimFish {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0;
    }
}

@keyframes swimDiver {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    20% {
        transform: translateX(calc(20vw)) translateY(-10px) rotate(-20deg);
    }

    40% {
        transform: translateX(calc(40vw)) translateY(5px) rotate(5deg);
    }

    60% {
        transform: translateX(calc(60vw)) translateY(-8px) rotate(-20deg);
    }

    80% {
        transform: translateX(calc(80vw)) translateY(10px) rotate(5deg);
    }

    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) rotate(-10deg);
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}

.diver-bubble {
    opacity: 1;
}




/* BICYCLE */
/* Bike animation keyframes */
@keyframes bikeDriveAcross {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Reset some base styles that might interfere */
.bike-riding {
    display: block;
    justify-content: normal;
    align-items: normal;
    position: relative;
    overflow: visible;
    transform: scale(0.5);
    transform-origin: center;
}

.bike-container-wrapper {
    position: relative;
    height: 100px;
    width: 100%;
    background: white;
    margin-bottom: 0px;
    z-index: 5;
}

@media (max-width: 768px) {
    .bike-riding {
        transform: scale(0.4);
    }

    @keyframes bikeDriveAcross {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(100vw + 200px));
        }
    }
}

/* Cyclist animation */
.cyclist {
    position: relative;
    animation: ride 1s linear infinite;
    top: 20px;
}

@keyframes ride {
    0% {
        transform: scaleY(1);
    }

    25% {
        transform: scaleY(1.02);
    }

    50% {
        transform: scaleY(1);
    }

    75% {
        transform: scaleY(1.02);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Bike components */
.bike {
    position: relative;
    background-color: #e81463;
    width: 180px;
    height: 10px;
    border-radius: 10px;
    box-shadow: inset 3px -3px rgba(0, 0, 0, 0.1);
}

.bike:before,
.bike:after {
    content: "";
    position: absolute;
    background-color: #e81463;
    width: 8px;
    height: 140px;
    top: -10px;
}

.bike:before {
    transform: rotate(35deg);
    left: 126px;
    box-shadow: -120px 85px #e81463, 0px -30px #e81463;
}

.bike:after {
    transform: rotate(-35deg);
    left: 49px;
    box-shadow: 120px 85px #e81463, 0px -30px #e81463;
}

/* Wheels */
.leftTyre,
.rightTyre {
    width: 150px;
    height: 150px;
    position: absolute;
    border: 10px solid #333;
    border-radius: 50%;
    z-index: 1;
    top: 30px;
    animation: spin 1s linear infinite;
    box-sizing: content-box;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.leftTyre {
    left: -140px;
}

.rightTyre {
    left: 155px;
}

.leftTyre:before,
.rightTyre:before {
    content: "";
    position: absolute;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 8px solid #fcfffc;
}

.leftTyre:after,
.rightTyre:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 145px;
    left: 75px;
    top: 0;
    background-color: #fcfffc;
}

/* Spokes */
.spokes {
    position: absolute;
    width: 145px;
    height: 2px;
    background-color: #fcfffc;
    top: 75px;
}

.spokes:before,
.spokes:after {
    content: "";
    position: absolute;
    width: 145px;
    height: 2px;
    background-color: #fcfffc;
    left: 3px;
}

.spokes:before {
    transform: rotate(45deg);
}

.spokes:after {
    transform: rotate(-45deg);
}

/* Additional components */
.wheel {
    z-index: 6;
    position: absolute;
    border-radius: 50%;
    background-color: #a4161a;
    width: 20px;
    height: 20px;
    top: 105px;
    left: -65px;
    box-shadow: 295px 0 #a4161a, 146px 0px #a4161a;
}

.wheel:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border-top: 11px solid #333;
    border-left: 8px solid #e81463;
    border-bottom: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: rotate(80deg);
    top: -140px;
    left: 240.2px;
}

@keyframes scale {
    0% {
        transform: scaleX(1);
    }

    25% {
        transform: scaleX(0.9);
    }

    50% {
        transform: scaleX(1);
    }

    75% {
        transform: scaleX(0.9);
    }

    100% {
        transform: scaleX(1);
    }
}

/* Pedals */
.pedals {
    position: relative;
    z-index: 7;
    width: 50px;
    height: 50px;
    border: 5px solid #ba181b;
    border-radius: 50%;
    top: 85px;
    left: 60px;
    animation: spin 1s linear infinite;
}

.pedals:before {
    content: "";
    position: absolute;
    border-radius: 10px;
    background-color: #adb5bd;
    height: 30px;
    width: 5px;
    left: 22px;
    top: -5px;
}

/* Chain */
.chain {
    position: absolute;
    top: 81px;
}

.chain:before,
.chain:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 140px;
    height: 2px;
    left: -60px;
}

.chain:before {
    top: 20px;
    transform: rotate(-10deg);
}

.chain:after {
    top: 47px;
    transform: rotate(10deg);
}

/* Girl/Rider components */
.girl {
    position: absolute;
}

.top {
    position: absolute;
    width: 80px;
    height: 80px;
    border-top: 50px solid #e9d8a6;
    border-left: 50px solid #e9d8a6;
    border-top-left-radius: 100%;
    top: -190px;
    left: -18px;
    box-sizing: content-box;
}

.top:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9d8a6;
    left: 50px;
    top: -50px;
    box-shadow: -10px 10px#e9d8a6;
}

.rightArm,
.leftArm {
    position: absolute;
    width: 15px;
    height: 100px;
    border-radius: 20px;
    transform: rotate(-30deg);
}

.rightArm {
    background-color: #deab90;
    left: 130px;
    top: -175px;
    z-index: 8;
}

.leftArm {
    background-color: #cd9777;
    left: 105px;
    top: -185px;
    z-index: -1;
}

.rightArm:before,
.leftArm:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 100px;
    border-radius: 20px;
    top: 85px;
    left: 15px;
    transform: rotate(-20deg);
}

.rightArm:before {
    background-color: #deab90;
}

.leftArm:before {
    background-color: #cd9777;
}

.head {
    position: absolute;
    background-color: #cd9777;
    width: 40px;
    height: 20px;
    top: -190px;
    left: 110px;
    z-index: -1;
    transform: rotate(-20deg);
}

.head:before,
.head:after {
    content: "";
    position: absolute;
    background-color: #deab90;
    border-radius: 50%;
}

.head:before {
    width: 75px;
    height: 75px;
    left: 30px;
    top: -30px;
}

.head:after {
    width: 20px;
    height: 20px;
    left: 78px;
    top: 25px;
}

.hair {
    position: absolute;
    width: 80px;
    height: 40px;
    border-radius: 0 100% 0 0;
    background-color: #bb3e03;
    top: -245px;
    left: 142px;
    z-index: 10;
}

.hair:after {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #bb3e03;
    left: -20px;
}

.hair:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 25px;
    border-radius: 50% 0/100% 0;
    background-color: #ee9b00;
    transform-origin: right;
    left: -84px;
    top: 37px;
    animation: hair 1s linear infinite;
}

@keyframes hair {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0);
    }
}

.strap {
    position: absolute;
    background-color: #333;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: -197px;
    left: 197px;
}

.strap:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 7px;
    height: 60px;
    border-radius: 10px;
    transform: rotate(-15deg);
    top: -22px;
    left: -30px;
}

.strap:before {
    content: "";
    position: absolute;
    background-color: #ee9b00;
    width: 60px;
    height: 30px;
    border-radius: 50px 50px 50px 0;
    left: -60px;
    top: -30px;
}

.trousers {
    position: absolute;
    top: -90px;
    left: -20px;
}

.rightLeg {
    position: absolute;
    background-color: #0a9396;
    width: 120px;
    height: 37px;
    top: 17px;
    left: 12px;
    border-radius: 0 10px 0 30px;
    transform-origin: top left;
    z-index: 7;
    animation: rotate 1s linear infinite;
}

.trousers:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 0 25px 50px 50px;
    left: -5px;
    background-color: #0a9396;
    transform: rotate(20deg);
}

.trousers:before {
    content: "";
    position: absolute;
    background-color: #333;
    width: 65px;
    height: 25px;
    border-radius: 20px;
    left: -10px;
    top: 50px;
}

.leftLeg {
    position: absolute;
    background-color: #005f73;
    width: 120px;
    height: 37px;
    top: 14px;
    left: 13px;
    border-radius: 0 10px 0 30px;
    transform-origin: top left;
    z-index: -4;
    animation: rotate 1s linear infinite;
    animation-delay: .5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(15deg);
    }

    55% {
        transform: rotate(30deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.calf {
    position: absolute;
    transform-origin: top;
    width: 33px;
    height: 120px;
    background-color: #0a9396;
    left: 87px;
    top: 9px;
    border-radius: 0 10px 0 0;
    animation: cycle 1s linear infinite;
}

.leftcalf {
    position: absolute;
    transform-origin: top;
    width: 33px;
    height: 120px;
    background-color: #005f73;
    left: 87px;
    top: 9px;
    border-radius: 0 10px 0 0;
    animation: cycle 1s linear infinite;
    animation-delay: .5s;
}

.leftcalf:before,
.calf:before {
    content: "";
    position: absolute;
    background-color: #bb3e03;
    width: 55px;
    height: 30px;
    border-radius: 0 20px 0 0;
    top: 119px;
    box-shadow: inset 0 -10px #fff;
}

.leftcalf:after,
.calf:after {
    content: "";
    position: absolute;
    background-color: #333;
    width: 35px;
    height: 10px;
    border-radius: 10px;
    top: 150px;
    left: 10px;
}

@keyframes cycle {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-27deg);
    }

    50% {
        transform: rotate(-32deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0);
    }
}


.personal-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(249, 249, 249, 0.8), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.personal-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23009fe3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.personal-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.personal-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.personal-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.personal-image:hover img {
    transform: translateY(-10px) scale(1.02);
    filter: grayscale(0%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


.personal-text {
    flex: 2;
    min-width: 300px;
}

.personal-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.personal-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.personal-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.personal-quote {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
}

.personal-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 0 0 0.5rem 0;
    font-weight: 300;
}

.personal-quote cite {
    font-size: 1rem;
    color: var(--dark);
    font-style: normal;
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    .personal-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .personal-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .personal-section {
        padding: 3rem 0;
    }

    .personal-title {
        font-size: 1.5rem;
    }

    .personal-text p {
        font-size: 1rem;
    }
}