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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #d4a574 50%, #b8860b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.6);
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 50%, #8b4513 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #d4a574;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4a574;
}

.donate-btn {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 50%, #8b4513 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sand" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sand)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desert Dunes */
.desert-dunes {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.dune {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    opacity: 0.8;
}

.dune-1 {
    width: 200px;
    height: 80px;
    left: 20px;
    animation: duneFloat 8s ease-in-out infinite;
}

.dune-2 {
    width: 150px;
    height: 60px;
    left: 120px;
    animation: duneFloat 8s ease-in-out infinite 2s;
}

.dune-3 {
    width: 180px;
    height: 70px;
    left: 220px;
    animation: duneFloat 8s ease-in-out infinite 4s;
}

@keyframes duneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sun */
.sun {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.sun-core {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sun-rays {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    animation: sunRotate 20s linear infinite;
}

.ray {
    position: absolute;
    width: 2px;
    height: 15px;
    background: #ffd700;
    border-radius: 1px;
    transform-origin: 50% 50px;
}

.ray-1 { transform: rotate(0deg); }
.ray-2 { transform: rotate(45deg); }
.ray-3 { transform: rotate(90deg); }
.ray-4 { transform: rotate(135deg); }
.ray-5 { transform: rotate(180deg); }
.ray-6 { transform: rotate(225deg); }
.ray-7 { transform: rotate(270deg); }
.ray-8 { transform: rotate(315deg); }

@keyframes sunRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cultural Elements */
.cultural-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Camel */
.camel {
    position: absolute;
    bottom: 100px;
    left: 50px;
    animation: camelWalk 12s ease-in-out infinite;
}

.camel-body {
    width: 40px;
    height: 25px;
    background: #8b4513;
    border-radius: 20px 20px 10px 10px;
    position: relative;
}

.camel-head {
    width: 20px;
    height: 15px;
    background: #8b4513;
    border-radius: 10px 5px 5px 10px;
    position: absolute;
    top: -5px;
    left: -10px;
}

.camel-legs {
    position: absolute;
    bottom: -15px;
    left: 5px;
}

.leg {
    width: 3px;
    height: 15px;
    background: #8b4513;
    position: absolute;
    border-radius: 2px;
}

.leg-1 { left: 5px; animation: legMove 2s ease-in-out infinite; }
.leg-2 { left: 15px; animation: legMove 2s ease-in-out infinite 0.5s; }
.leg-3 { left: 25px; animation: legMove 2s ease-in-out infinite 1s; }
.leg-4 { left: 35px; animation: legMove 2s ease-in-out infinite 1.5s; }

@keyframes camelWalk {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(20px) translateY(-5px); }
    50% { transform: translateX(40px) translateY(0px); }
    75% { transform: translateX(20px) translateY(-5px); }
}

@keyframes legMove {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Tree */
.tree {
    position: absolute;
    bottom: 80px;
    right: 80px;
    animation: treeSway 6s ease-in-out infinite;
}

.trunk {
    width: 8px;
    height: 30px;
    background: #8b4513;
    border-radius: 4px;
    margin: 0 auto;
}

.leaves {
    position: absolute;
    top: -15px;
    left: -10px;
}

.leaf {
    width: 20px;
    height: 20px;
    background: #228b22;
    border-radius: 50%;
    position: absolute;
    opacity: 0.8;
}

.leaf-1 { top: 0px; left: 0px; animation: leafFloat 4s ease-in-out infinite; }
.leaf-2 { top: 5px; left: 15px; animation: leafFloat 4s ease-in-out infinite 1s; }
.leaf-3 { top: 10px; left: 8px; animation: leafFloat 4s ease-in-out infinite 2s; }

@keyframes treeSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

/* Folk Art Mandala */
.folk-art {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mandala {
    width: 80px;
    height: 80px;
    animation: mandalaRotate 15s linear infinite;
}

.mandala-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: mandalaPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.ring-2 {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-delay: 1s;
}

.ring-3 {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes mandalaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes mandalaPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Floating Icons */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-1 {
    top: 30%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 20%;
    right: 25%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.icon-3 {
    bottom: 30%;
    left: 30%;
    animation: float 6s ease-in-out infinite 3s;
}

.icon-4 {
    bottom: 25%;
    right: 20%;
    animation: float 6s ease-in-out infinite 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.donate-subtitle {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 20px;
    border-left: 4px solid #b8860b;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
}

.donate-subtitle p {
    margin-bottom: 0.5rem;
    color: #8b4513;
    font-size: 1.1rem;
    font-weight: 500;
}

.donate-subtitle p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #8b4513;
    margin-top: 2rem;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-visual {
    width: 300px;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 165, 116, 0.3);
    overflow: hidden;
}

/* Community Elements */
.community-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.village {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.house {
    position: absolute;
    bottom: 0;
    animation: houseGlow 4s ease-in-out infinite;
}

.house-1 {
    left: -30px;
    animation-delay: 0s;
}

.house-2 {
    left: 0px;
    animation-delay: 1s;
}

.house-3 {
    left: 30px;
    animation-delay: 2s;
}

.roof {
    width: 20px;
    height: 8px;
    background: #8b4513;
    border-radius: 2px 2px 0 0;
    margin: 0 auto;
}

.walls {
    width: 16px;
    height: 12px;
    background: #d4a574;
    border-radius: 0 0 2px 2px;
    margin: 0 auto;
}

.door {
    width: 4px;
    height: 6px;
    background: #8b4513;
    border-radius: 1px 1px 0 0;
    margin: 6px auto 0;
}

@keyframes houseGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.people {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.person {
    position: absolute;
    animation: personWave 3s ease-in-out infinite;
}

.person-1 {
    left: -25px;
    animation-delay: 0s;
}

.person-2 {
    left: 0px;
    animation-delay: 1s;
}

.person-3 {
    left: 25px;
    animation-delay: 2s;
}

.head {
    width: 8px;
    height: 8px;
    background: #8b4513;
    border-radius: 50%;
    margin: 0 auto;
}

.body {
    width: 6px;
    height: 12px;
    background: #d4a574;
    border-radius: 3px;
    margin: 2px auto 0;
}

.arms {
    position: absolute;
    top: 8px;
    left: -2px;
    width: 10px;
}

.arm {
    width: 3px;
    height: 8px;
    background: #d4a574;
    border-radius: 1.5px;
    position: absolute;
}

.arm-left {
    left: 0;
    transform-origin: top;
    animation: armWave 2s ease-in-out infinite;
}

.arm-right {
    right: 0;
    transform-origin: top;
    animation: armWave 2s ease-in-out infinite 1s;
}

@keyframes personWave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes armWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

/* Educational Elements */
.education-elements {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.book {
    position: relative;
    width: 25px;
    height: 20px;
    animation: bookOpen 5s ease-in-out infinite;
}

.book-cover {
    width: 100%;
    height: 100%;
    background: #b8860b;
    border-radius: 2px;
    position: relative;
}

.book-pages {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}

.page {
    width: 100%;
    height: 2px;
    background: white;
    margin-bottom: 1px;
    border-radius: 1px;
    animation: pageFlip 3s ease-in-out infinite;
}

.page-1 { animation-delay: 0s; }
.page-2 { animation-delay: 1s; }
.page-3 { animation-delay: 2s; }

@keyframes bookOpen {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(15deg); }
}

@keyframes pageFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.pencil {
    position: absolute;
    top: 50px;
    left: 10px;
    animation: pencilWrite 4s ease-in-out infinite;
}

.pencil-body {
    width: 3px;
    height: 20px;
    background: #ffd700;
    border-radius: 1.5px;
}

.pencil-tip {
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 4px solid #8b4513;
    margin: 0 auto;
}

@keyframes pencilWrite {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.laptop {
    position: absolute;
    top: 80px;
    left: 5px;
    animation: laptopGlow 6s ease-in-out infinite;
}

.screen {
    width: 30px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 3px;
    position: relative;
}

.keyboard {
    width: 35px;
    height: 3px;
    background: #333;
    border-radius: 0 0 3px 3px;
    margin-top: 2px;
}

.screen-content {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}

.code-line {
    height: 2px;
    background: #00ff00;
    margin-bottom: 1px;
    border-radius: 1px;
    animation: codeTyping 2s ease-in-out infinite;
}

.code-1 { width: 80%; animation-delay: 0s; }
.code-2 { width: 60%; animation-delay: 0.5s; }
.code-3 { width: 90%; animation-delay: 1s; }

@keyframes laptopGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes codeTyping {
    0% { width: 0%; }
    100% { width: 80%; }
}

/* Environmental Elements */
.environment-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.tree-garden {
    position: relative;
}

.tree {
    position: absolute;
    animation: treeGrow 8s ease-in-out infinite;
}

.tree-1 {
    right: 0;
    animation-delay: 0s;
}

.tree-2 {
    right: 25px;
    animation-delay: 2s;
}

.tree .trunk {
    width: 4px;
    height: 15px;
    background: #8b4513;
    border-radius: 2px;
    margin: 0 auto;
}

.tree .leaves {
    position: absolute;
    top: -8px;
    left: -6px;
}

.tree .leaf {
    width: 12px;
    height: 12px;
    background: #228b22;
    border-radius: 50%;
    position: absolute;
    opacity: 0.8;
    animation: leafGrow 4s ease-in-out infinite;
}

.tree .leaf-1 { top: 0px; left: 0px; animation-delay: 0s; }
.tree .leaf-2 { top: 4px; left: 8px; animation-delay: 1s; }
.tree .leaf-3 { top: 8px; left: 4px; animation-delay: 2s; }

@keyframes treeGrow {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(0.8); }
}

@keyframes leafGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.water-drop {
    position: absolute;
    top: 60px;
    right: 10px;
    animation: waterDrop 3s ease-in-out infinite;
}

.drop-body {
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.drop-reflection {
    width: 3px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

@keyframes waterDrop {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.solar-panel {
    position: absolute;
    top: 100px;
    right: 5px;
    animation: solarCharge 5s ease-in-out infinite;
}

.panel-base {
    width: 25px;
    height: 15px;
    background: #2c3e50;
    border-radius: 2px;
}

.panel-cells {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
}

.cell {
    background: #f39c12;
    border-radius: 1px;
    animation: cellGlow 3s ease-in-out infinite;
}

.cell-1 { animation-delay: 0s; }
.cell-2 { animation-delay: 0.5s; }
.cell-3 { animation-delay: 1s; }
.cell-4 { animation-delay: 1.5s; }

@keyframes solarCharge {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes cellGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

/* Cultural Elements */
.cultural-elements-about {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.folk-art-piece {
    position: relative;
    width: 30px;
    height: 30px;
    animation: artRotate 10s linear infinite;
}

.art-pattern {
    position: relative;
    width: 100%;
    height: 100%;
}

.pattern-line {
    position: absolute;
    height: 2px;
    background: #d4a574;
    border-radius: 1px;
    animation: patternGlow 4s ease-in-out infinite;
}

.line-1 {
    width: 20px;
    top: 5px;
    left: 5px;
    animation-delay: 0s;
}

.line-2 {
    width: 15px;
    top: 15px;
    left: 8px;
    animation-delay: 1s;
}

.line-3 {
    width: 18px;
    top: 25px;
    left: 6px;
    animation-delay: 2s;
}

.pattern-dot {
    width: 4px;
    height: 4px;
    background: #b8860b;
    border-radius: 50%;
    position: absolute;
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-1 { top: 10px; right: 5px; animation-delay: 0s; }
.dot-2 { top: 20px; right: 10px; animation-delay: 1s; }
.dot-3 { bottom: 5px; left: 5px; animation-delay: 2s; }

@keyframes artRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes patternGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.musical-note {
    position: absolute;
    top: 40px;
    right: 10px;
    animation: noteFloat 4s ease-in-out infinite;
}

.note-head {
    width: 8px;
    height: 6px;
    background: #d4a574;
    border-radius: 50%;
}

.note-stem {
    width: 2px;
    height: 12px;
    background: #d4a574;
    margin: 0 auto;
    margin-top: -3px;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.craft-tool {
    position: absolute;
    top: 80px;
    right: 5px;
    animation: toolWork 3s ease-in-out infinite;
}

.tool-handle {
    width: 3px;
    height: 15px;
    background: #8b4513;
    border-radius: 1.5px;
}

.tool-head {
    width: 8px;
    height: 6px;
    background: #696969;
    border-radius: 2px;
    margin: 0 auto;
    margin-top: -3px;
}

@keyframes toolWork {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Achievement Icons */
.achievement-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.achievement-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    font-size: 0.8rem;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    animation: achievementFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes achievementFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    height: 1px;
    animation: lineFlow 8s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 10%;
    width: 80%;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    left: 5%;
    width: 90%;
    animation-delay: 2s;
}

.line-3 {
    top: 45%;
    left: 15%;
    width: 70%;
    animation-delay: 4s;
}

@keyframes lineFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

/* Focus Areas Section */
.focus-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.focus-grid {
    display: flex;
    gap: 2.5rem;
    animation: slideCards 35s linear infinite;
    width: max-content;
    position: relative;
    z-index: 1;
}

@keyframes slideCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.focus-grid:hover {
    animation-play-state: paused;
}

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    min-width: 320px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.focus-card:hover::before {
    left: 100%;
}

.focus-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.2);
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.focus-card h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.focus-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.focus-card ul {
    list-style: none;
    padding: 0;
}

.focus-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.focus-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 50%, #8b4513 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.impact-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Donate Section */
.donate {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.donate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.donate-info h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.donate-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.donation-methods {
    margin-bottom: 2rem;
}

.method {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    flex-direction: column;
}

.method:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.method h4 {
    margin-bottom: 0.8rem;
    color: #8b4513;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method i {
    color: #b8860b;
    font-size: 1.3rem;
}

.method p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.donation-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 20px;
    border-left: 4px solid #b8860b;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.1);
}

.donation-note p {
    margin-bottom: 0.5rem;
    color: #8b4513;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.donation-note p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.donate-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.donate-form:hover {
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.donate-form h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.donate-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.corporate-partnerships,
.transparency {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.corporate-partnerships:hover,
.transparency:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.corporate-partnerships h4,
.transparency h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corporate-partnerships h4 i,
.transparency h4 i {
    margin-right: 0.5rem;
    color: #b8860b;
    font-size: 1.2rem;
}

.corporate-partnerships p,
.transparency p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.corporate-partnerships p:last-child,
.transparency p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.corporate-partnerships p strong {
    color: #b8860b;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.contact-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
}

.contact-item i {
    color: #b8860b;
    font-size: 1.8rem;
    margin-top: 0.2rem;
    min-width: 1.8rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #8b4513;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.contact-form h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.contact-form p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .focus-grid {
        display: grid;
        grid-template-columns: 1fr;
        animation: none;
        width: auto;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .logo-img {
        height: 35px;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .sun-core {
        width: 40px;
        height: 40px;
    }
    
    .camel {
        bottom: 80px;
        left: 30px;
    }
    
    .tree {
        bottom: 60px;
        right: 60px;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .about-visual {
        width: 250px;
        height: 250px;
    }
    
    .house {
        transform: scale(0.8);
    }
    
    .person {
        transform: scale(0.8);
    }
    
    .book, .pencil, .laptop {
        transform: scale(0.8);
    }
    
    .tree, .water-drop, .solar-panel {
        transform: scale(0.8);
    }
    
    .folk-art-piece, .musical-note, .craft-tool {
        transform: scale(0.8);
    }
    
    .achievement-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .focus-card,
    .donate-form,
    .contact-form {
        padding: 1.5rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        width: 200px;
        height: 200px;
    }
    
    .house, .person, .book, .pencil, .laptop, .tree, .water-drop, .solar-panel, .folk-art-piece, .musical-note, .craft-tool {
        transform: scale(0.6);
    }
    
    .achievement-icon {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sand" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sand)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-section p {
    color: #f5f5dc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-section ul li a {
    color: #f5f5dc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transform: translateX(5px);
}

.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, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 50%;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #ffd700;
    color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #f5f5dc;
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom p:first-child {
    font-weight: 600;
    color: #ffd700;
    font-size: 1rem;
}

.footer-contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f5f5dc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-link i {
    font-size: 1rem;
    color: #ffd700;
}

.footer-link span {
    font-weight: 500;
}

.separator {
    color: #ffd700;
    font-weight: bold;
    opacity: 0.7;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-bottom p:first-child {
        font-size: 0.9rem;
    }
    
    .footer-contact-links {
        gap: 10px;
        margin-top: 8px;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 4px 8px;
        gap: 6px;
    }
    
    .footer-link i {
        font-size: 0.9rem;
    }
    
    .separator {
        font-size: 0.8rem;
    }
} 