* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Brand circular patterns */
.pattern-circle {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.pattern-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    border-top-color: rgba(255, 255, 255, 0.4);
}

.pattern-circle-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    border-left-color: rgba(255, 255, 255, 0.3);
    animation-direction: reverse;
    animation-duration: 30s;
}

.pattern-circle-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    animation-duration: 25s;
}

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

/* Brand Shape Elements - REPLACE YOUR EXISTING BRAND SHAPE CSS WITH THIS */
.brand-shape {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

/* Teal curved lines (top-left) - BIGGER & CLOSER TO EDGE */
.brand-shape-1 {
    top: 65%;
    left: -2%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="M270,30 Q270,270 30,270" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M255,30 Q255,255 30,255" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M240,30 Q240,240 30,240" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M225,30 Q225,225 30,225" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M210,30 Q210,210 30,210" fill="none" stroke="%2300a896" stroke-width="4"/></svg>') no-repeat;
    animation: float 6s ease-in-out infinite;
}

/* Teal shape (bottom-right) - BIGGER, MORE CURVED & CLOSER TO EDGE */
.brand-shape-2 {
    bottom: 10%;
    right: 1%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,50 Q60,20 100,50 Q140,80 160,120 Q180,160 150,180 Q120,200 80,180 Q40,160 20,120 Q10,80 20,50" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M30,60 Q60,35 90,60 Q120,85 135,115 Q150,145 125,165 Q100,185 75,165 Q50,145 35,115 Q25,85 30,60" fill="none" stroke="%2300a896" stroke-width="4"/><path d="M40,70 Q60,50 80,70 Q100,90 110,110 Q120,130 105,145 Q90,160 75,145 Q60,130 50,110 Q40,90 40,70" fill="none" stroke="%2300a896" stroke-width="4"/><circle cx="170" cy="40" r="4" fill="%2300a896"/><circle cx="180" cy="80" r="6" fill="%2300a896"/><circle cx="160" cy="180" r="3" fill="%2300a896"/></svg>') no-repeat;
    animation: float 8s ease-in-out infinite reverse;
}


/* Orange semicircle (middle-left) - BIGGER & CLOSER TO EDGE */
.brand-shape-3 {
    top: 35%;
    left: -120px;
    width: 220px;
    height: 220px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220 220"><path d="M110,40 A70,70 0 0,1 110,180" fill="none" stroke="%23ff6b35" stroke-width="5"/><path d="M110,55 A55,55 0 0,1 110,165" fill="none" stroke="%23ff6b35" stroke-width="5"/><path d="M110,70 A40,40 0 0,1 110,150" fill="none" stroke="%23ff6b35" stroke-width="5"/><path d="M110,85 A25,25 0 0,1 110,135" fill="none" stroke="%23ff6b35" stroke-width="4"/><circle cx="150" cy="110" r="5" fill="%23ff6b35"/><circle cx="170" cy="90" r="3" fill="%23ff6b35"/></svg>') no-repeat;
    animation: float 7s ease-in-out infinite;
}

/* Teal dots accent - BIGGER & CLOSER TO EDGE */
.brand-shape-4 {
    top: 20%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><circle cx="25" cy="25" r="4" fill="%2300a896"/><circle cx="80" cy="50" r="6" fill="%2300a896"/><circle cx="45" cy="85" r="3" fill="%2300a896"/><circle cx="90" cy="90" r="4" fill="%2300a896"/></svg>') no-repeat;
    animation: float 5s ease-in-out infinite;
}

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

/* Timeline Brand Shapes - BIGGER & CLOSER TO EDGES */
.timeline-brand-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Teal curved corner (top-left) - BIGGER & CLOSER TO EDGE */
.timeline-brand-shape-1 {
    top: 5%;
    left: 2%;
    width: 350px;
    height: 350px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 350"><path d="M40,310 Q40,40 310,40" fill="none" stroke="%2300a896" stroke-width="3" opacity="0.7"/><path d="M60,310 Q60,60 310,60" fill="none" stroke="%2300a896" stroke-width="3" opacity="0.7"/><path d="M80,310 Q80,80 310,80" fill="none" stroke="%2300a896" stroke-width="3" opacity="0.7"/><path d="M100,310 Q100,100 310,100" fill="none" stroke="%2300a896" stroke-width="3" opacity="0.7"/><path d="M120,310 Q120,120 310,120" fill="none" stroke="%2300a896" stroke-width="2" opacity="0.7"/></svg>') no-repeat;
    animation: slowFloat 12s ease-in-out infinite;
}

/* Timeline brand shape (bottom-right) - BIGGER & CLOSER TO EDGE */
.timeline-brand-shape-2 {
    bottom: 8%;
    right: 2%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,50 Q60,20 100,50 Q140,80 160,120 Q180,160 150,180 Q120,200 80,180 Q40,160 20,120 Q10,80 20,50" fill="none" stroke="%2300a896" stroke-width="4" opacity="0.6"/><path d="M30,60 Q60,35 90,60 Q120,85 135,115 Q150,145 125,165 Q100,185 75,165 Q50,145 35,115 Q25,85 30,60" fill="none" stroke="%2300a896" stroke-width="4" opacity="0.6"/><path d="M40,70 Q60,50 80,70 Q100,90 110,110 Q120,130 105,145 Q90,160 75,145 Q60,130 50,110 Q40,90 40,70" fill="none" stroke="%2300a896" stroke-width="4" opacity="0.6"/><circle cx="170" cy="40" r="4" fill="%2300a896" opacity="0.6"/><circle cx="180" cy="80" r="6" fill="%2300a896" opacity="0.6"/><circle cx="160" cy="180" r="3" fill="%2300a896" opacity="0.6"/></svg>') no-repeat;
    animation: slowFloat 15s ease-in-out infinite reverse;
}

/* Orange semicircle with dots (middle) - BIGGER & CLOSER TO EDGE */
.timeline-brand-shape-3 {
    top: 45%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250"><path d="M125,60 A65,65 0 0,1 125,190" fill="none" stroke="%23ff6b35" stroke-width="4" opacity="0.7"/><path d="M125,75 A50,50 0 0,1 125,175" fill="none" stroke="%23ff6b35" stroke-width="4" opacity="0.7"/><path d="M125,90 A35,35 0 0,1 125,160" fill="none" stroke="%23ff6b35" stroke-width="4" opacity="0.7"/><path d="M125,105 A20,20 0 0,1 125,145" fill="none" stroke="%23ff6b35" stroke-width="3" opacity="0.7"/><circle cx="70" cy="125" r="4" fill="%23ff6b35" opacity="0.8"/><circle cx="180" cy="100" r="5" fill="%23ff6b35" opacity="0.8"/><circle cx="190" cy="150" r="3" fill="%23ff6b35" opacity="0.8"/></svg>') no-repeat;
    animation: slowFloat 10s ease-in-out infinite;
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-8px) translateX(5px) rotate(1deg); }
    66% { transform: translateY(5px) translateX(-3px) rotate(-1deg); }
}

/* NEW: Hero Container for 2-column layout */
.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 10;
}

.hero-animation {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lottie-animation {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
}

/* Clean Logo Styles */
.logo-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 2rem 0 0 0;
    animation: fadeInUp 1s ease-out;
}

.main-logo {
    max-width: 450px;
    max-height: 180px;
    width: auto;
    height: auto;
    animation: scaleIn 1.2s ease-out 0.3s both;
    background: white;
    border-radius: 25px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.9s both;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 1.2s both;
    font-weight: 400;
    line-height: 1.6;
}

.hero p strong {
    font-weight: 700;
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-arrow {
    width: 30px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow::before,
.scroll-arrow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-right: 3px solid rgba(255,255,255,0.8);
    border-bottom: 3px solid rgba(255,255,255,0.8);
    transform: rotate(45deg);
}

.scroll-arrow::before {
    top: 8px;
}

.scroll-arrow::after {
    top: 20px;
    opacity: 0.6;
}

.scroll-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-15px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-8px); 
    }
}

/* Timeline Section */
.timeline-section {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e, #ff6b35);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.timeline-item {
    margin-bottom: 6rem;
    position: relative;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-item:nth-child(odd) {
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    padding-left: 55%;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    transform: translateX(-50px) rotateY(-15deg);
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(50px) rotateY(15deg);
}

.timeline-item.animate .timeline-content {
    transform: translateX(0) rotateY(0deg);
}

.timeline-content {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
}

.timeline-content:hover .timeline-description,
.timeline-content:hover .timeline-bullets {
    color: white;
    transition: color 0.3s ease;
}

.timeline-content:hover .timeline-bullets li {
    color: white;
    transition: color 0.3s ease;
}

.timeline-content:hover .timeline-bullets li strong {
    color: white;
}

/* Updated Timeline Year with Bullet */
.timeline-year {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    z-index: 10;
    animation: yearPop 0.6s ease-out;
    letter-spacing: -0.02em;
}

@keyframes yearPop {
    0% { transform: translateX(-50%) scale(0) rotate(-180deg); }
    70% { transform: translateX(-50%) scale(1.1) rotate(5deg); }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}

/* NEW: Big Animated Text for Timeline */
.timeline-big-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    color: rgba(255, 107, 53, 0.8);
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-big-text {
    right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-big-text {
    left: 2rem;
    text-align: left;
}

.big-text-line {
    display: block;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInText 1.5s ease-out forwards;
}

.timeline-item.animate .big-text-line:nth-child(1) {
    animation-delay: 0.5s;
}

.timeline-item.animate .big-text-line:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* NEW: Bullet List Styling */
.timeline-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-bullets li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #12e827;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.timeline-bullets li strong {
    color: #333;
    font-weight: 700;
}

/* Image Slider */
.image-slider {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
}

.photo:hover::before {
    transform: scale(1);
}

.photo::after {
    content: '🔍';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.photo:hover::after {
    opacity: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff6b35;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrows:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
    left: 15px;
}

.arrow-next {
    right: 15px;
}

.timeline-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

/* Lightbox/Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    width: auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.lightbox-info {
    padding: 20px;
    text-align: center;
}

.lightbox-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.lightbox-year {
    color: #ff6b35;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* NEW: Lightbox Navigation Arrows */
.lightbox-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* NEW: Lightbox Counter */
.lightbox-counter {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Mobile adjustments for lightbox navigation */
@media (max-width: 768px) {
    .lightbox-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Decorative Elements */
.decorative-lines {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
}

.decorative-lines.top-left {
    top: 20px;
    left: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 Q90,50 80,80 Q50,90 20,80 Q10,50 20,20" fill="none" stroke="%23ff6b35" stroke-width="2"/></svg>');
}

.decorative-lines.bottom-right {
    bottom: 20px;
    right: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23f7931e" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23ff6b35" stroke-width="1"/></svg>');
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

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

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-animation {
        order: 2;
    }

    .logo-container {
        justify-content: center;
        margin: 1.5rem 0 0 0;
    }

    #lottie-animation {
        max-width: 400px;
        min-height: 250px;
    }

    .timeline-big-text {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .timeline-item:nth-child(odd) .timeline-big-text {
        right: 1rem;
    }

    .timeline-item:nth-child(even) .timeline-big-text {
        left: 1rem;
    }
    
    .brand-shape-3,
.brand-shape-4,
.timeline-brand-shape-3 {
    display: none;
    }

.brand-shape-1,
.brand-shape-2 {
    transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0 4rem 0;
    }

    .hero-container {
        padding: 1rem;
        gap: 1.5rem;
    }

    .logo-container {
        margin: 1rem 0 0 0;
    }

    .main-logo {
        max-width: 320px;
        max-height: 110px;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    #lottie-animation {
        max-width: 300px;
        min-height: 220px;
        max-height: 280px;
    }

    .scroll-indicator {
        bottom: 0.5rem;
    }

    .scroll-arrow {
        height: 25px;
    }

    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Timeline adjustments for mobile */
    .timeline-section {
        padding: 2rem 0; /* Reduced from 6rem */
    }

    .timeline {
        padding: 1rem 0; /* Reduced from 4rem */
    }

    .timeline::before {
        left: 1rem; /* Moved closer to edge */
        width: 3px; /* Slightly thinner */
    }

    .timeline-item {
        margin-bottom: 3rem; /* Reduced spacing between items */
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 2.5rem; /* Reduced from 4rem */
        padding-right: 0.5rem; /* Reduced padding */
        text-align: left;
    }

    .timeline-year {
        left: 1rem; /* Aligned with timeline */
        transform: translateX(-50%);
        font-size: 1.1rem; /* Slightly larger */
        padding: 0.8rem 1.8rem; /* Increased padding for better width */
        white-space: nowrap; /* Prevent text wrapping */
        min-width: 100px; /* Minimum width for better appearance */
    }

    .timeline-content {
        padding: 1.2rem; /* Slightly more padding */
        margin-left: 0.5rem; /* Better alignment */
    }

    .timeline-big-text {
        font-size: clamp(1.8rem, 5vw, 3rem);
        position: relative;
        text-align: center;
        margin: 0 0 1.5rem 0; /* Only bottom margin */
        color: rgba(255, 107, 53, 0.9);
        order: -1; /* Move to top */
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
    }

    .timeline-content {
        order: 1; /* Content comes after big text */
    }

    .timeline-year {
        order: 0; /* Year stays at top */
    }

    .timeline-item:nth-child(odd) .timeline-big-text,
    .timeline-item:nth-child(even) .timeline-big-text {
        left: auto;
        right: auto;
        text-align: center;
        top: auto;
        transform: none;
    }

    .timeline-bullets li {
        font-size: 0.95rem; /* Slightly larger */
        padding-left: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .timeline-bullets li::before {
        font-size: 1.3rem;
    }

    .slider-container {
        height: 220px; /* Increased from 200px */
    }

    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
    }

    .lightbox-image {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .brand-shape,
    .timeline-brand-shape {
    display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0 3rem 0;
        min-height: auto;
    }

    .hero-container {
        padding: 0.5rem;
        gap: 1rem;
    }

    .main-logo {
        max-width: 280px;
        max-height: 90px;
        background: white;
        border-radius: 15px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 1.8rem);
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 4.5vw, 1rem);
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: clamp(1.25rem, 4vw, 0.9rem);
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    #lottie-animation {
        max-width: 250px;
        min-height: 180px;
        max-height: 220px;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-bullets li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .timeline-bullets li::before {
        font-size: 1.2rem;
    }

    .slider-container {
        height: 180px;
    }

    .scroll-indicator {
        bottom: 0.3rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 1rem 0 2.5rem 0;
    }

    .hero-container {
        padding: 0.3rem;
        gap: 0.8rem;
    }

    .main-logo {
        max-width: 160px;
        max-height: 80px;
    }

    .hero h1 {
        font-size: clamp(1.1rem, 7vw, 1.6rem);
        margin-bottom: 0.6rem;
    }

    .hero p {
        font-size: clamp(0.7rem, 4vw, 0.85rem);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    #lottie-animation {
        max-width: 220px;
        min-height: 160px;
        max-height: 200px;
    }

    .timeline-bullets li {
        font-size: 0.85rem;
        padding-left: 1rem;
        margin-bottom: 0.8rem;
    }

    .timeline-bullets li::before {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.timeline-item:not(.animate) .timeline-content {
    perspective: 1000px;
}

.timeline-item:not(.animate) .photo {
    transform: rotateX(90deg);
}

.timeline-item.animate .photo {
    transform: rotateX(0deg);
    transition: transform 0.8s ease 0.3s;
}


/* Share Section Styles */
.share-section {
    background: linear-gradient(135deg, #00a896 0%, #028090 50%, #00a896 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    margin-bottom: 0 !important;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Animated Background Patterns */
.share-pattern {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
}

.share-pattern-1 {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><circle cx="60" cy="60" r="50" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><circle cx="60" cy="60" r="35" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><circle cx="60" cy="60" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') no-repeat;
    animation: shareFloat 6s ease-in-out infinite;
}

.share-pattern-2 {
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,15 Q75,25 85,50 Q75,75 50,85 Q25,75 15,50 Q25,25 50,15" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><circle cx="80" cy="20" r="3" fill="rgba(255,255,255,0.4)"/><circle cx="20" cy="80" r="4" fill="rgba(255,255,255,0.3)"/></svg>') no-repeat;
    animation: shareFloat 8s ease-in-out infinite reverse;
}

.share-pattern-3 {
    top: 60%;
    left: 12%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M15,40 Q40,15 65,40 Q40,65 15,40" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="2"/><circle cx="10" cy="20" r="2" fill="rgba(255,255,255,0.5)"/><circle cx="70" cy="60" r="3" fill="rgba(255,255,255,0.4)"/></svg>') no-repeat;
    animation: shareFloat 5s ease-in-out infinite;
}

@keyframes shareFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(8px) rotate(-1deg); }
}

.share-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.share-content {
    position: relative;
    z-index: 10;
}

.share-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: shareIconPulse 3s ease-in-out infinite;
}

@keyframes shareIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.share-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.share-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.share-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.social-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Platform-specific colors */
.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-btn.copy-link:hover {
    background: #6c757d;
    border-color: #6c757d;
}

/* Copy Success Message */
.copy-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-success.show {
    transform: translateX(0);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .share-section {
        padding: 3rem 0;
    }

    .share-container {
        padding: 0 1rem;
    }

    .share-icon {
        font-size: 2.5rem;
    }

    .social-buttons {
        gap: 0.8rem;
        justify-content: center;
    }

    .social-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        min-width: 50px;
        justify-content: center;
    }

    .social-btn span {
        display: none;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .share-pattern-1,
    .share-pattern-2,
    .share-pattern-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .share-section {
        padding: 2.5rem 0;
    }

    .share-container {
        padding: 0 0.5rem;
    }

    .share-icon {
        font-size: 2rem;
    }

    .social-buttons {
        gap: 0.6rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        padding: 0.7rem;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .copy-success {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
        transform: translateY(-100px);
    }

    .copy-success.show {
        transform: translateY(0);
    }
}

/* Donation Section Styles */
.donation-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0rem;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Animated Background Patterns */
.donation-pattern {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.donation-pattern-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="3"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') no-repeat;
    animation: donationFloat 8s ease-in-out infinite;
}

.donation-pattern-2 {
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><path d="M75,25 Q125,50 100,100 Q75,125 50,100 Q25,75 50,50 Q75,25 75,25" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="3"/><circle cx="120" cy="30" r="4" fill="rgba(255,255,255,0.4)"/><circle cx="30" cy="120" r="6" fill="rgba(255,255,255,0.3)"/></svg>') no-repeat;
    animation: donationFloat 10s ease-in-out infinite reverse;
}

.donation-pattern-3 {
    top: 50%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="2"/><circle cx="15" cy="25" r="3" fill="rgba(255,255,255,0.5)"/><circle cx="85" cy="75" r="4" fill="rgba(255,255,255,0.4)"/></svg>') no-repeat;
    animation: donationFloat 6s ease-in-out infinite;
}

@keyframes donationFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.donation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.donation-content {
    position: relative;
    z-index: 10;
}

.donation-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.donation-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.donation-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Impact Statistics */
.donation-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

.impact-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Donation Button */
.donation-button {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 2rem 0 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-decoration: none;
}

.donation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.donation-button:hover::before {
    left: 100%;
}

a.donation-button:hover {
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    text-decoration: none;
    color: #ff6b35;
}

.donation-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    font-size: 1.2em;
    animation: donationHeartbeat 1.5s ease-in-out infinite;
}

@keyframes donationHeartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donation-section {
        padding: 4rem 0;
        margin-top: 0rem;
    }

    .donation-container {
        padding: 0 1rem;
    }

    .donation-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .donation-impact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .impact-item {
        padding: 1.5rem 1rem;
    }

    .donation-button {
        padding: 1rem 2.5rem;
        margin: 1.5rem 0 1rem 0;
    }

    .donation-pattern-1,
    .donation-pattern-2,
    .donation-pattern-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .donation-section {
        padding: 3rem 0;
    }

    .donation-container {
        padding: 0 0.5rem;
    }

    .donation-icon {
        font-size: 2.5rem;
    }

    .donation-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .impact-item {
        padding: 1rem;
    }
}

::selection {
  color: black;
  background: yellow;
}

/* STICKY YEAR PROGRESS */

/* Sticky Year Container */
.sticky-year-container {
    position: sticky;
    top: 20px;
    z-index: 100;
    height: 0; /* Don't take up layout space */
    pointer-events: none; /* Allow clicks to pass through */
}

.sticky-year-display {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    /* Added flex properties to center the text */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 80px;
    max-width: 120px;
}

.sticky-year-display.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-year-display.changing {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.6);
}

/* Year text styling */
.sticky-year-text {
    position: relative;
    z-index: 2;
    line-height: 1;
}

/* Hide original year when sticky is active */
.timeline-item.year-sticky .timeline-year {
    opacity: 0;
}

/* Progress indicator for sticky year - positioned at bottom */
.sticky-year-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 50px 50px;
    transition: width 0.1s ease-out;
    width: 0%;
    z-index: 1;
}

/* Enhanced animations for year transitions */
@keyframes stickyYearIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes stickyYearOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.8);
    }
}

.sticky-year-display.entering {
    animation: stickyYearIn 0.4s ease-out;
}

.sticky-year-display.exiting {
    animation: stickyYearOut 0.4s ease-out;
}

/* Mobile responsive adjustments for sticky year */
@media (max-width: 768px) {
    .sticky-year-container {
        top: 10px;
    }
    
    .sticky-year-display {
        font-size: 1.1rem;
        padding: 0.8rem 1.8rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .sticky-year-container {
        top: 5px;
    }
    
    .sticky-year-display {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        min-width: 80px;
    }
}

/* Add this to your CSS file */
.video-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
    height: 300px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Make videos wider in lightbox - ONLY affects videos */
.lightbox-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Make lightbox container wider when it contains video */
.lightbox-content:has(iframe) {
    max-width: 90%;
    width: 1200px;
}

/* Large screens - even wider for videos */
@media (min-width: 1200px) {
    .lightbox-content:has(iframe) {
        width: 1400px;
        max-width: 85%;
    }
}

/* Mobile - keep videos responsive */
@media (max-width: 768px) {
    .lightbox-content:has(iframe) {
        max-width: 95%;
        width: auto;
    }
}

/* Make video slides clickable */
.video-slide {
    cursor: pointer;
    position: relative;
}

.video-slide::after {
    content: '🔍';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.video-slide:hover::after {
    opacity: 1;
}

.timeline-description p {
        border-radius: 25px;
    background: #73AD21;
    padding: 20px;
    color: white;
}

/* Sticky Donate Button */
.sticky-donate-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sticky-donate-button.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.donate-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 0;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    box-shadow: -2px 0 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 150px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateX(-5px);
    box-shadow: -5px 0 25px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #45a049, #3d8b40);
}

.donate-btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

.donate-heart {
    width: 16px;
    height: 16px;
    animation: heartbeat 2s ease-in-out infinite;
    transform: rotate(90deg) !important;
    display: inline-block;
    transition: transform 0.3s ease;
}

.donate-heart svg {
    width: 100%;
    height: 100%;
    fill: #ffebee;
    transform-origin: center;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sticky-donate-button {
        right: -5px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .donate-btn {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        border-radius: 15px 0 0 15px;
        width: 35px;
        height: 100px;
        font-size: 10px;
        box-shadow: -5px 0 15px rgba(76, 175, 80, 0.4);
    }
    
    .donate-btn-text {
        flex-direction: row;
        gap: 6px;
    }
    
    .donate-heart {
        transform: rotate(90deg) !important;
        width: 12px;
        height: 12px;
    }
    
    .donate-btn:hover {
        transform: translateX(-8px);
        right: 0;
    }
}

@media (max-width: 480px) {
    .donate-btn {
        width: 50px;
        height: 150px;
        font-size: 11px;
    }
}

/* Expandable Bullet Points */
.timeline-bullets.expandable {
    position: relative;
}

.timeline-bullets .bullet-item {
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.timeline-bullets .bullet-item.hidden {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.timeline-bullets .bullet-item.visible {
    opacity: 1;
    max-height: 200px;
    margin-bottom: 1.5rem;
}

.show-more-btn {
    background: linear-gradient(45deg, #3582ff, #dd1ef7);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.show-more-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.show-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .show-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ==================== YEAR NAVIGATION BAR ==================== */

/* Year Navigation Bar */
.year-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    z-index: 500;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.year-navigation.visible {
    transform: translateY(0);
}

.year-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    min-height: 60px; /* Ensure consistent height */
}

.year-nav-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff6b35;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Years Container with Navigation Arrows */
.year-nav-scroll-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0; /* Important: allows flex shrinking */
    overflow: hidden; /* Prevent any overflow issues */
}

.year-nav-arrow {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    width: 35px;
    height: 35px;
    min-width: 35px; /* Prevent shrinking */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
    opacity: 0.7;
    z-index: 10; /* Ensure arrows stay on top */
}

.year-nav-arrow:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

.year-nav-arrow:active {
    transform: scale(0.95);
}

.year-nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.year-nav-items {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.2rem 0;
    scroll-behavior: smooth;
    /* CRITICAL: Prevent wrapping */
    flex-wrap: nowrap !important;
    white-space: nowrap;
    min-width: 0;
}

.year-nav-items::-webkit-scrollbar {
    display: none;
}

.year-nav-item {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    /* CRITICAL: Prevent shrinking and wrapping */
    flex-shrink: 0;
    flex-grow: 0;
    min-width: fit-content;
}

.year-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.year-nav-item:hover::before {
    left: 100%;
}

.year-nav-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.year-nav-item.active {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.year-nav-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.year-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ff6b35;
    cursor: pointer;
    padding: 0.2rem;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px; /* Prevent shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.year-nav-close:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1) rotate(90deg);
}

.year-nav-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* Highlight effect for selected years */
.timeline-item.highlighted {
    position: relative;
    z-index: 10;
}

.timeline-item.highlighted::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #ff6b35;
    border-radius: 30px;
    animation: highlightPulse 2s ease-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes highlightPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
        border-color: #ff6b35;
    }
    20% {
        opacity: 1;
        transform: scale(1.02);
        border-color: #f7931e;
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
        border-color: #ff6b35;
    }
    100% {
        opacity: 0;
        transform: scale(1);
        border-color: transparent;
    }
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet responsive */
@media (max-width: 1024px) {
    .year-nav-container {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }

    .year-nav-title {
        font-size: 1rem;
    }

    .year-nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .year-nav-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
    }

    .year-nav-close {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}

/* Mobile responsive - Hide arrows on mobile */
@media (max-width: 768px) {
    .year-nav-container {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }

    .year-nav-title {
        font-size: 0.9rem;
    }

    .year-nav-items {
        gap: 0.4rem;
    }

    .year-nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }

    .year-nav-close {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    /* Hide arrows on mobile - touch scrolling is better */
    .year-nav-arrow {
        display: none;
    }

    /* Adjust container for mobile without arrows */
    .year-nav-scroll-container {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .year-nav-container {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }

    .year-nav-title {
        font-size: 0.85rem;
    }

    .year-nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Fix year badge visibility when navigation is active */
.year-navigation.visible ~ .timeline-container .timeline-year {
    top: 6rem !important; /* Push badges below navigation bar */
    transition: top 0.4s ease;
}

/* Ensure smooth transition when navigation appears/disappears */
.timeline-year {
    transition: top 0.4s ease;
}