/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #004d25;
    --primary-dark: #003d1e;
    --secondary: #222;
    --light: #F4F4F4;
    --white: #FFFFFF;
    --gray: #888;
    --transition: all 0.3s ease;
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-text: #ecf0f1;
    --background-color: #ffffff;
    --section-bg: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(60, 179, 113, 0.4);
    animation: pulseGlow 2s infinite;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(60, 179, 113, 0.5);
    background-color: var(--primary-dark);
    animation: none;
}

/* Navbar */
#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 58, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

#navbar.scrolled {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .logo a {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .btn {
    padding: 8px 18px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar.scrolled .hamburger span {
    background-color: var(--secondary);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
        position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-nav button:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-nav button i {
    color: var(--primary-dark);
    font-size: 22px;
}

.carousel-nav button:hover i {
    color: white;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    z-index: 1;
}

.hero-content h1, 
.hero-content p, 
.cta-buttons {
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease 0.3s forwards, slideInLeft 1s ease 0.3s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease 0.6s forwards, slideInRight 1s ease 0.6s forwards;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease 0.9s forwards;
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.step.animated {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step:before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Enhanced Impact Stats Section */
#impact {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#impact .section-title {
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#impact .section-title:after {
    background: white;
}

.impact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 250px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.stat-icon {
    font-size: 40px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    opacity: 1;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--secondary);
    opacity: 1;
    display: block;
    height: auto;
    min-height: 350px;
    overflow: visible;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-wrapper {
    height: 280px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: white;
}

.chart-container h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white;
}

.impact-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin-top: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    transition: var(--transition);
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.highlight-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .impact-stats {
        justify-content: center;
    }
    
    .stat {
        width: 200px;
    }
    
    .chart-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .impact-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
    }
    
    .chart-container {
        min-width: 100%;
    }
    
    .chart-wrapper {
        height: 220px;
    }
    
    .highlight {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        height: 200px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Impact Charts Section */
.impact-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    opacity: 1;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
    opacity: 1 !important;
}

.chart-container:nth-child(1) {
    animation-delay: 0.3s;
}

.chart-container:nth-child(2) {
    animation-delay: 0.6s;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

canvas {
    width: 100% !important;
    height: 250px !important;
}

/* Impact Highlights */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideInBottom 1s ease forwards;
}

.highlight:nth-child(1) {
    animation-delay: 0.4s;
}

.highlight:nth-child(2) {
    animation-delay: 0.6s;
}

.highlight:nth-child(3) {
    animation-delay: 0.8s;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 3s infinite;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Testimonials Section */
#testimonials {
    background-color: var(--light);
    position: relative;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-text {
    background: var(--white);
    padding: 35px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent;
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    margin-left: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary);
}

.prev-testimonial {
    left: -22px;
}

.next-testimonial {
    right: -22px;
}

.testimonial-nav:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .testimonial-nav {
        display: none;
    }
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--light);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(5deg);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: inherit;
}

.footer-newsletter button {
    border-radius: 0 30px 30px 0;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
}

.footer-newsletter input:focus {
    box-shadow: 0 0 10px rgba(60, 179, 113, 0.5);
    outline: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(60, 179, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0); }
}

/* Additional animations for impact section */
@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-charts, 
    .impact-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        text-align: center;
    }
    
    .nav-links.show, .auth-buttons.show {
        display: flex;
    }
    
    .nav-links a {
        color: var(--secondary);
        margin: 10px 0;
    }
    
    .auth-buttons {
        top: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .auth-buttons.show {
        margin-top: 180px; /* Adjust based on your nav-links height */
    }
    
    .auth-buttons .btn {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .impact-stats,
    .impact-charts,
    .impact-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .impact-container {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    #cta h2 {
        font-size: 2rem;
    }
    
    .testimonial-text {
        padding: 20px;
    }
}

/* 3D Model Section */
#trash-can-model {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#trash-can-model::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, rgba(60, 179, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#trash-can-model::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, rgba(60, 179, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#trash-can-model .container {
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.model-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid rgba(60, 179, 113, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.model-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.model-feature {
    text-align: center;
    padding: 15px;
    width: 200px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--gray);
}

#threed-trash-can {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #f9f9f9 0%, #eaeaea 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#threed-trash-can:hover {
    box-shadow: 0 15px 40px rgba(60, 179, 113, 0.2);
    transform: translateY(-5px);
}

#threed-trash-can canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    cursor: pointer;
}

.model-container {
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin: 30px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.model-container:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.model-instructions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.instruction {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--primary-light, rgba(60, 179, 113, 0.1));
    border-radius: 50px;
    font-size: 0.9rem;
}

.instruction i {
    margin-right: 8px;
    color: var(--primary, #3CB371);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: var(--primary, #3CB371);
    margin-bottom: 15px;
}

.loading-spinner p {
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #threed-trash-can {
        height: 350px;
    }
    
    .model-instructions {
        gap: 10px;
    }
    
    .instruction {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    #threed-trash-can {
        height: 300px;
    }
    
    .model-instructions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Add animations for the model */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 5px 20px rgba(60, 179, 113, 0.2); }
    50% { box-shadow: 0 5px 30px rgba(60, 179, 113, 0.6); }
    100% { box-shadow: 0 5px 20px rgba(60, 179, 113, 0.2); }
}

@media (max-width: 992px) {
    .model-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .model-container {
        height: 450px;
    }
    
    .model-features {
        justify-content: center;
    }
    
    .model-feature {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .model-container {
        height: 350px;
    }
    
    .model-feature {
        width: 100%;
    }
}

/* Loading Spinner */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.loading-spinner p {
    font-size: 1rem;
    color: var(--secondary);
}

/* Custom Animations for Visual Interest */
#how-it-works .step:nth-child(odd) {
    animation-delay: 0.2s;
}

#how-it-works .step:nth-child(even) {
    animation-delay: 0.4s;
}

/* App Metrics */
.app-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.9) 0%, rgba(46, 139, 87, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.2);
}

.metric {
    text-align: center;
    width: 22%;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 992px) {
    .app-metrics {
        padding: 20px 15px;
    }
    
    .metric {
        width: 48%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .metric {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }
}

/* Download page styles */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem; /* Increased top padding to account for navbar height plus spacing */
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.download-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

.google-play img {
    padding: 0;
}

.app-store img {
    padding: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card .step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(60, 179, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background-color: var(--primary);
    color: var(--white);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.screenshot-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 60px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.screenshot {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot.active {
    display: block;
    opacity: 1;
}

.screenshot img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.screenshot p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 18px;
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 15;
    }

    .screenshot img {
        max-height: 400px;
        border-width: 5px;
    }
}

@media (max-width: 576px) {
    .screenshot-carousel {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: -50px;
    }
    
    .app-carousel-prev {
        left: calc(50% - 50px);
    }
    
    .app-carousel-next {
        right: calc(50% - 50px);
    }
    
    .app-carousel-dots {
        margin-top: 60px;
    }
}

/* Login Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    max-width: 450px;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
}

.login-container {
    padding: 40px;
}

.login-container h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.social-login button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.google-btn {
    color: #444;
}

.google-btn img {
    width: 20px;
    margin-right: 10px;
}

.apple-btn {
    color: #000;
    background-color: #f5f5f7;
}

.apple-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.social-login button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background-color: white;
    color: var(--gray);
    font-size: 0.9rem;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f8f8;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    transform: translateY(-25px) scale(0.8);
    color: var(--primary);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 12px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.login-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.signup-link {
    text-align: center;
    font-size: 0.95rem;
}

.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-3d-model {
        height: 400px;
        order: 2;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 50px !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Update carousel styles */
.interface-showcase {
    padding: 40px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-carousel {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 900px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    overflow: hidden;
}

.screenshot-wrapper {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.app-screenshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.screenshot-info {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.screenshot-info h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.screenshot-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.carousel-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 18px;
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-dark);
}

/* Fix hero section layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: left;
}

.hero-3d-model {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

/* Fix features section */
.features-section {
    padding: 100px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fix timeline section */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background: var(--primary-color);
    top: 40px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 6px white;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50px;
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-3d-model {
        height: 400px;
        order: 2;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 50px !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 15;
    }

    .screenshot-wrapper {
        padding: 10px;
    }

    .screenshot-info {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .download-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 40px !important;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Fix navigation */
#navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-links a {
    color: var(--text-color);
}

/* Fix download CTA section */
.download-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Page Styles */
.partners-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.partners-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partners-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.partners-showcase {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.partner-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    height: 160px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 3px solid var(--primary);
}

.partner-logo img {
    max-width: 80%;
    max-height: 100px;
    object-fit: contain;
}

.partner-content {
    padding: 20px;
}

.partner-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.partner-category {
    display: inline-block;
    background-color: rgba(60, 179, 113, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.partner-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.partner-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-stats .stat i {
    color: var(--primary);
    font-size: 1rem;
}

.partner-stats .stat span {
    font-size: 0.9rem;
    color: #444;
}

.partnership-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partnership-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.partnership-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefits .benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    transition: transform 0.3s ease;
}

.cta-benefits .benefit:hover {
    transform: translateY(-5px);
}

.cta-benefits .benefit i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-benefits .benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-benefits {
        gap: 20px;
    }
    
    .cta-benefits .benefit {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-benefits .benefit {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .partners-hero {
        padding: 60px 0 40px;
    }
    
    .partners-hero h1 {
        font-size: 1.8rem;
    }
    
    .partnership-cta h2 {
        font-size: 1.8rem;
    }
}

/* New App Carousel Styles */
.app-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
}

.app-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.app-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    position: relative;
}

.app-carousel-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
}

.screenshot-card {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.screenshot-img {
    height: 500px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.screenshot-caption {
    padding: 15px;
    text-align: center;
    background-color: white;
    border-top: 3px solid var(--primary);
}

.screenshot-caption p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

.app-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.app-carousel-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.app-carousel-prev {
    left: 15px;
}

.app-carousel-next {
    right: 15px;
}

.app-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.app-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.app-carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.app-carousel-dots .dot:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .screenshot-img {
        height: 450px;
    }
    
    .app-carousel-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .screenshot-img {
        height: 350px;
    }
    
    .app-carousel-btn {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: -50px;
    }
    
    .app-carousel-prev {
        left: calc(50% - 50px);
    }
    
    .app-carousel-next {
        right: calc(50% - 50px);
    }
    
    .app-carousel-dots {
        margin-top: 60px;
    }
}

/* New Interface Showcase Styles */
.interface-showcase {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.image-carousel-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 20px;
}

.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.image-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.image-slide.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

.image-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    max-height: 500px;
    object-fit: contain;
    background-color: #f8f8f8;
    padding: 10px;
}

.slide-caption {
    padding: 20px;
    background: white;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.slide-caption h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.slide-caption p {
    color: var(--gray);
    font-size: 0.95rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-nav-btn i {
    font-size: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--primary-dark);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
    
    .slide-caption h3 {
        font-size: 1.1rem;
    }
    
    .image-carousel {
        min-height: 500px;
    }
    
    .image-slide img {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        top: auto;
        bottom: -50px;
        transform: translateY(0);
    }
    
    .carousel-nav-btn:hover {
        transform: translateY(0) scale(1.1);
    }
    
    .prev-btn {
        left: calc(50% - 50px);
    }
    
    .next-btn {
        right: calc(50% - 50px);
    }
    
    .carousel-indicators {
        margin-top: 60px;
    }
    
    .image-carousel {
        min-height: 450px;
    }
    
    .image-slide img {
        max-height: 300px;
    }
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--secondary);
    opacity: 1 !important;
    display: block !important;
    height: auto;
    min-height: 350px;
    max-height: none !important;
    overflow: visible;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10 !important;
    position: relative !important;
    visibility: visible !important;
}

.chart-wrapper {
    height: 280px !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 auto;
    background: white !important;
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 30 !important;
    position: relative !important;
    margin: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
}

/* Override any transforms that might be hiding the charts */
.impact-charts {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 400px !important;
    margin: 30px 0 !important;
} 

/* Standalone Charts */
.standalone-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.standalone-chart {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.standalone-chart h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.chart-panel {
    height: 280px;
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
}

@media (max-width: 768px) {
    .standalone-chart {
        min-width: 100%;
    }
}

.fallback-chart {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.chart-panel {
    height: 280px;
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
}

#standaloneImpactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

.distribution-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    background: white;
}

/* Title with Logo Layout */
.title-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-with-logo h1 {
    margin: 0;
    flex: 1;
}

/* 3D Logo in Hero Section */
.hero-3d-logo {
    width: 80px;
    height: 80px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-3d-logo canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-size: 24px;
}

/* Make the layout responsive */
@media (max-width: 768px) {
    .title-with-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-3d-logo {
        width: 60px;
        height: 60px;
    }
}

/* Brand Logo in Navbar */
.brand-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .brand-logo {
        height: 24px;
    }
}

/* Recycle Logo */
.recycle-logo {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.arrow {
    position: absolute;
    width: 75%;
    height: 75%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.arrow:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px;
    border-color: transparent transparent transparent var(--primary);
}

.arrow-1 {
    transform: rotate(0deg);
    top: 0;
    left: 0;
}

.arrow-1:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

.arrow-2 {
    transform: rotate(120deg);
    top: 0;
    left: 0;
}

.arrow-2:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

.arrow-3 {
    transform: rotate(240deg);
    top: 0;
    left: 0;
}

.arrow-3:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

#navbar.scrolled .arrow {
    border-color: var(--primary-dark);
    border-bottom-color: transparent;
    border-right-color: transparent;
}

#navbar.scrolled .arrow:before {
    border-left-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .recycle-logo {
        width: 20px;
        height: 20px;
    }
    
    .arrow:before {
        border-width: 3px;
    }
}

/* Navigation Logo */
.nav-logo {
    height: 32px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.1);
}

#navbar.scrolled .nav-logo {
    height: 28px;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 24px;
    }
    
    #navbar.scrolled .nav-logo {
        height: 22px;
    }
}

/* Hero 3D Person Model */
.hero-3d-person {
    width: 35%;
    height: 500px;
    position: relative;
    background-color: rgba(46, 139, 87, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    z-index: 10;
}

.hero-3d-person canvas {
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
    position: relative;
    z-index: 11;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 139, 87, 0.5);
    color: white;
    font-weight: 500;
    font-size: 16px;
    z-index: 12;
}

.loading-spinner i {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-3d-person {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin-bottom: 30px;
    }
    
    .title-with-logo {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-3d-person {
        height: 300px;
    }
}

/* Adjust Download Hero Layout */
.download-hero .hero-content {
    margin-top: -60px; /* Move the content up */
    padding-bottom: 40px;
}

.download-hero .title-with-logo {
    text-align: left;
}

.download-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.download-hero .hero-description {
    text-align: left;
    margin-bottom: 25px;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.download-hero .stat {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.download-hero .stat:hover {
    transform: translateY(-5px);
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .download-hero .download-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .download-hero .hero-content {
        margin-top: 0; /* Reset on smaller screens */
        padding-bottom: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
}

/* Download Page Styles */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 4rem 0;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
}

.download-hero .hero-description {
    margin-bottom: 1.5rem;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
    height: 50px;
    pointer-events: none;
}

.hero-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

@media (max-width: 992px) {
    .download-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-image-column {
        margin-bottom: 1rem;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .download-hero .download-stats {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    padding: 0 5px;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 992px) {
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

/* Updated hero section spacing to prevent navbar overlap */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important; /* Increased top padding to properly clear the navbar */
}

@media (max-width: 992px) {
    .download-hero {
        padding: 7rem 0 4rem !important;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 6rem 0 3rem !important;
    }
}

/* Additional hero container adjustments */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
    align-items: center; /* Ensure vertical centering */
    min-height: calc(100vh - 200px); /* Set a minimum height for larger screens */
}

@media (max-width: 992px) {
    .hero-container {
        min-height: auto;
        padding: 1rem;
    }
}

/* Updated hero container for clean 2-column layout */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 4rem; /* Increased gap between columns */
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Increased gap between content elements */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Description styling */
.download-hero .hero-description {
    margin-bottom: 0; /* Removed margin as we're using gap */
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem; /* Slightly reduced gap for medium screens */
        min-height: auto;
    }
    
    .hero-image-column {
        margin-bottom: 0; /* Removed margin as we're using gap */
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem; /* Slightly reduced gap for medium screens */
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

/* Hero section with two-column layout */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 5rem; /* Increased spacing between columns */
    align-items: center;
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start; /* Ensure left alignment */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
    text-align: left;
}

/* Description styling */
.download-hero .hero-description {
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    width: 100%;
}

.download-hero .stat {
    text-align: left;
    transition: transform 0.3s ease;
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem;
    }
    
    .hero-image-column {
        width: 80%;
        max-width: 450px;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .download-hero .title-with-logo h1 {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-image-column {
        width: 90%;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Additional hero section refinements */
.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure no overflow in the container */
.hero-container {
    overflow: hidden;
}

/* Fix for small screens */
@media (max-width: 992px) {
    .download-hero {
        padding-top: 6rem !important;
    }
    
    .download-hero .hero-description {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding-top: 5rem !important;
    }
    
    .hero-container {
        padding: 1rem;
    }
}

/* Fix any conflicting styles */
.download-hero .title-with-logo, 
.download-hero .hero-description,
.download-hero .download-stats,
.app-store-buttons {
    margin-bottom: 0;
}

/* Clean two-column hero layout with complete separation */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    padding: 7rem 0 4rem;
    overflow: visible;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width columns */
    gap: 6rem; /* Significant gap between columns */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Right column - content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
}

/* Description styling */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
}

.download-hero .stat {
    text-align: left;
}

.download-hero .number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
}

.store-button {
    display: block;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media (max-width: 992px) {
    .download-hero {
        padding: 6rem 0 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 3rem;
    }
    
    .hero-image-column {
        order: 1; /* Image first on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-content {
        order: 2; /* Content second on mobile */
        text-align: center;
        align-items: center;
        gap: 2rem;
    }
    
    .download-hero .title-with-logo {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-container {
        padding: 1rem;
        gap: 2rem;
    }
    
    .hero-image-column {
        max-width: 350px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Gradient text styling */
.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

/* Hero wave styling */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 50px;
    pointer-events: none;
}

.hero-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

/* Improved hero layout with better spacing and alignment */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem; /* Increased gap for more separation */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: center;
    position: relative;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-end; /* Align image to right side of left column */
    align-items: center;
    width: 100%;
    padding-right: 1rem; /* Add padding to keep image contained */
}

/* Right column - content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 1rem; /* Add padding to push content right */
}

/* Image styling */
.hero-person-image {
    max-width: 90%; /* Slightly reduce image width */
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Better content alignment */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem; /* Keep text from extending too far right */
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
}

.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%; /* Limit width to prevent line length issues */
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start; /* Ensure left alignment */
    width: 100%;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start; /* Ensure left alignment */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-container {
        gap: 6rem; /* Slightly reduced gap on smaller screens but still well separated */
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 4rem;
        padding: 2rem 1rem;
    }
    
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0;
    }
    
    .download-hero .title-with-logo {
        text-align: center;
        padding-right: 0;
    }
    
    .download-hero .download-stats {
        justify-content: center;
        align-self: center;
    }
    
    .app-store-buttons {
        align-self: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
    
    .hero-person-image {
        max-width: 100%;
    }
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-start; /* Align image to the left side of column instead of flex-end */
    align-items: center;
    width: 100%;
    padding-left: 2rem; /* Add left padding to prevent the image from touching the screen edge */
    padding-right: 0; /* Remove right padding to move image closer to the left */
}

/* Image styling */
.hero-person-image {
    max-width: 95%; /* Slightly increase max-width to ensure image remains properly sized */
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Responsive image adjustments */
@media (max-width: 992px) {
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-left: 0; /* Reset padding on mobile */
        padding-right: 0;
    }
}

/* Right column - content with increased padding */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 3rem; /* Increased left padding to move content more to the right */
}

/* Better content alignment with right shift */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Description paragraph right shift */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Stats right shift */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start;
    width: 100%;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* App store buttons right shift */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0; /* Reset padding on mobile */
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 0; /* Reset margin on mobile */
    }
}

/* Updated hero layout with text shifted right */
.hero-container {
    display: grid;
    grid-template-columns: 45% 55%; /* Adjust column proportions to shift text right */
    gap: 10rem; /* Significantly increase gap for wider spacing */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    align-items: center;
    position: relative;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 2rem;
    padding-right: 0;
}

/* Right column - content shifted right */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 4rem; /* Increase left padding to shift content right */
    margin-right: 2rem; /* Add right margin */
}

/* Better content alignment with right shift */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Description paragraph right shift */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Stats right shift */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start;
    width: 100%;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* App store buttons right shift */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 48% 52%; /* Slightly adjust proportions on smaller screens */
        gap: 6rem; /* Reduce gap on smaller screens but maintain separation */
    }
    
    .hero-content {
        padding-left: 2rem;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 4rem;
        padding: 2rem;
    }
    
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0;
        margin-right: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 0;
    }
}

/* App store buttons centered */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: center; /* Center the buttons horizontally */
    margin-left: 0; /* Remove left margin */
    justify-content: center; /* Ensure buttons are centered within the container */
}

/* Keep other button styling the same */
.store-button {
    display: block;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

/* Ensure button styles work on mobile too */
@media (max-width: 992px) {
    .app-store-buttons {
        justify-content: center;
        align-self: center;
    }
}

/* Enhanced Hero Section with Creative Elements */
.download-hero {
    position: relative;
    background: linear-gradient(135deg, #0c2e3d 0%, #1c4b3b 100%);
    min-height: auto;
    padding: 7rem 0 4rem;
    overflow: visible;
}

/* Animated background particles */
.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 255, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(0, 205, 130, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Floating accent circles */
.hero-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 200, 120, 0.1);
    filter: blur(30px);
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.hero-accent-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-accent-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 15%;
    animation-delay: -5s;
}

.hero-accent-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px;
    animation-delay: -2s;
}

/* Recycling icon decorations */
.hero-icon {
    position: absolute;
    color: rgba(0, 200, 120, 0.1);
    z-index: 0;
    opacity: 0.6;
    animation: pulse 4s infinite ease-in-out;
}

.recycle-icon-1 {
    top: 15%;
    left: 12%;
    font-size: 28px;
    animation-delay: 0s;
}

.recycle-icon-2 {
    bottom: 20%;
    right: 8%;
    font-size: 24px;
    animation-delay: 1s;
}

.recycle-icon-3 {
    top: 60%;
    left: 15%;
    font-size: 32px;
    animation-delay: 2s;
}

.recycle-icon-4 {
    top: 25%;
    right: 18%;
    font-size: 20px;
    animation-delay: 3s;
}

/* Enhanced image styling */
.hero-person-image {
    max-width: 95%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
    animation: float 6s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

/* Enhanced buttons styling */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: center;
    margin-left: 0;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.store-button {
    display: block;
    max-width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform-origin: center;
}

.store-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 80, 60, 0.2);
}

/* Glow effect on hover for stats */
.download-hero .stat {
    position: relative;
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    z-index: 2;
}

.download-hero .stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-hero .stat:hover .number {
    text-shadow: 0 0 15px rgba(0, 200, 100, 0.6);
}

/* Enhanced number styling */
.download-hero .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00eebb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

/* Enhanced title styling */
.download-hero .title-with-logo h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00eebb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00cc66, #00eebb, transparent);
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-accent-1, .hero-accent-2, .hero-accent-3 {
        width: 150px;
        height: 150px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-accent, .hero-icon {
        display: none;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2rem;
    }
}

/* Decorative Elements */
.decorative-accent {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.2;
  z-index: 0;
}

.accent-1 {
  top: -50px;
  left: -100px;
  width: 200px;
  height: 200px;
  animation: float 8s ease-in-out infinite;
}

.accent-2 {
  bottom: -70px;
  right: -50px;
  width: 180px;
  height: 180px;
  animation: float 10s ease-in-out infinite;
}

.accent-3 {
  top: 40%;
  left: 40%;
  width: 100px;
  height: 100px;
  animation: float 7s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  z-index: 1;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(0, 170, 85, 0.5));
}

.icon-1 {
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.icon-2 {
  top: 15%;
  right: 20%;
  animation: float 8s ease-in-out infinite 1s;
}

.icon-3 {
  bottom: 25%;
  left: 10%;
  animation: float 7s ease-in-out infinite 0.5s;
}

.icon-4 {
  bottom: 20%;
  right: 15%;
  animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

/* Make sure hero section has correct positioning */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Navigation Logo */
.nav-logo {
    height: 32px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.1);
}

#navbar.scrolled .nav-logo {
    height: 28px;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 24px;
    }
    
    #navbar.scrolled .nav-logo {
        height: 22px;
    }
}

/* Decorative Accents and Floating Icons */
.decorative-accent {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0.15;
    filter: blur(20px);
}

.accent-1 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
    animation: float 12s infinite ease-in-out;
}

.accent-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 10%;
    animation: float 15s infinite ease-in-out reverse;
}

.accent-3 {
    width: 90px;
    height: 90px;
    top: 20%;
    right: 15%;
    animation: float 10s infinite ease-in-out 1s;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.accent-4 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 10%;
    animation: float 14s infinite ease-in-out 0.5s;
}

.accent-5 {
    width: 110px;
    height: 110px;
    top: 15%;
    right: 5%;
    animation: float 12s infinite ease-in-out 1.5s;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.accent-6 {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 5%;
    animation: float 16s infinite ease-in-out 2s;
}

.floating-icon {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 150, 80, 0.2);
    color: var(--primary);
    font-size: 18px;
}

.floating-icon i {
    transition: transform 0.3s ease;
}

.floating-icon:hover i {
    transform: rotate(180deg);
}

.floating-icon-1 {
    top: 25%;
    left: 15%;
    animation: float 10s infinite ease-in-out;
}

.floating-icon-2 {
    bottom: 30%;
    left: 10%;
    animation: float 12s infinite ease-in-out 1.5s;
}

.floating-icon-3 {
    top: 15%;
    right: 25%;
    animation: float 14s infinite ease-in-out 1s;
}

.floating-icon-4 {
    bottom: 20%;
    right: 20%;
    animation: float 16s infinite ease-in-out 2s;
}

.floating-icon-5 {
    top: 20%;
    left: 5%;
    animation: float 13s infinite ease-in-out 0.5s;
}

.floating-icon-6 {
    bottom: 15%;
    right: 8%;
    animation: float 15s infinite ease-in-out 1.2s;
}

.floating-icon-7 {
    top: 30%;
    right: 10%;
    animation: float 11s infinite ease-in-out 0.8s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .decorative-accent {
        transform: scale(0.7);
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Hero 3D Person Model */
.hero-3d-person {
    width: 35%;
    height: 500px;
    position: relative;
    background-color: rgba(46, 139, 87, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    z-index: 10;
}

.hero-3d-person canvas {
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
    position: relative;
    z-index: 11;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 139, 87, 0.5);
    color: white;
    font-weight: 500;
    font-size: 16px;
    z-index: 12;
}

.loading-spinner i {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-3d-person {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin-bottom: 30px;
    }
    
    .title-with-logo {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-3d-person {
        height: 300px;
    }
}

/* Adjust Download Hero Layout */
.download-hero .hero-content {
    margin-top: -60px; /* Move the content up */
    padding-bottom: 40px;
}

.download-hero .title-with-logo {
    text-align: left;
}

.download-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.download-hero .hero-description {
    text-align: left;
    margin-bottom: 25px;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.download-hero .stat {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.download-hero .stat:hover {
    transform: translateY(-5px);
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .download-hero .download-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .download-hero .hero-content {
        margin-top: 0; /* Reset on smaller screens */
        padding-bottom: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
}

/* Download Page Styles */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 4rem 0;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
}

.download-hero .hero-description {
    margin-bottom: 1.5rem;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
    height: 50px;
    pointer-events: none;
}

.hero-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

@media (max-width: 992px) {
    .download-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-image-column {
        margin-bottom: 1rem;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .download-hero .download-stats {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    padding: 0 5px;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 992px) {
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

/* Updated hero section spacing to prevent navbar overlap */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important; /* Increased top padding to properly clear the navbar */
}

@media (max-width: 992px) {
    .download-hero {
        padding: 7rem 0 4rem !important;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 6rem 0 3rem !important;
    }
}

/* Additional hero container adjustments */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
    align-items: center; /* Ensure vertical centering */
    min-height: calc(100vh - 200px); /* Set a minimum height for larger screens */
}

@media (max-width: 992px) {
    .hero-container {
        min-height: auto;
        padding: 1rem;
    }
}

/* Updated hero container for clean 2-column layout */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 4rem; /* Increased gap between columns */
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Increased gap between content elements */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Description styling */
.download-hero .hero-description {
    margin-bottom: 0; /* Removed margin as we're using gap */
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem; /* Slightly reduced gap for medium screens */
        min-height: auto;
    }
    
    .hero-image-column {
        margin-bottom: 0; /* Removed margin as we're using gap */
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem; /* Slightly reduced gap for medium screens */
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

/* Hero section with two-column layout */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 5rem; /* Increased spacing between columns */
    align-items: center;
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start; /* Ensure left alignment */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
    text-align: left;
}

/* Description styling */
.download-hero .hero-description {
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    width: 100%;
}

.download-hero .stat {
    text-align: left;
    transition: transform 0.3s ease;
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem;
    }
    
    .hero-image-column {
        width: 80%;
        max-width: 450px;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .download-hero .title-with-logo h1 {
        text-align: center;
    }
    
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #004d25;
    --primary-dark: #003d1e;
    --secondary: #222;
    --light: #F4F4F4;
    --white: #FFFFFF;
    --gray: #888;
    --transition: all 0.3s ease;
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-text: #ecf0f1;
    --background-color: #ffffff;
    --section-bg: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(60, 179, 113, 0.4);
    animation: pulseGlow 2s infinite;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(60, 179, 113, 0.5);
    background-color: var(--primary-dark);
    animation: none;
}

/* Navbar */
#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 58, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

#navbar.scrolled {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled .logo a {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

#navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .btn {
    padding: 8px 18px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar.scrolled .hamburger span {
    background-color: var(--secondary);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
        position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-nav button:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-nav button i {
    color: var(--primary-dark);
    font-size: 22px;
}

.carousel-nav button:hover i {
    color: white;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    z-index: 1;
}

.hero-content h1, 
.hero-content p, 
.cta-buttons {
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease 0.3s forwards, slideInLeft 1s ease 0.3s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease 0.6s forwards, slideInRight 1s ease 0.6s forwards;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease 0.9s forwards;
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.step.animated {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step:before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Enhanced Impact Stats Section */
#impact {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#impact .section-title {
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#impact .section-title:after {
    background: white;
}

.impact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 250px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.stat-icon {
    font-size: 40px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    opacity: 1;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--secondary);
    opacity: 1;
    display: block;
    height: auto;
    min-height: 350px;
    overflow: visible;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-wrapper {
    height: 280px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: white;
}

.chart-container h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white;
}

.impact-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    transition: var(--transition);
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.highlight-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .impact-stats {
        justify-content: center;
    }
    
    .stat {
        width: 200px;
    }
    
    .chart-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .impact-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
    }
    
    .chart-container {
        min-width: 100%;
    }
    
    .chart-wrapper {
        height: 220px;
    }
    
    .highlight {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        height: 200px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Impact Charts Section */
.impact-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    opacity: 1;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
    opacity: 1 !important;
}

.chart-container:nth-child(1) {
    animation-delay: 0.3s;
}

.chart-container:nth-child(2) {
    animation-delay: 0.6s;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

canvas {
    width: 100% !important;
    height: 250px !important;
}

/* Impact Highlights */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideInBottom 1s ease forwards;
}

.highlight:nth-child(1) {
    animation-delay: 0.4s;
}

.highlight:nth-child(2) {
    animation-delay: 0.6s;
}

.highlight:nth-child(3) {
    animation-delay: 0.8s;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 3s infinite;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Testimonials Section */
#testimonials {
    background-color: var(--light);
    position: relative;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-text {
    background: var(--white);
    padding: 35px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent;
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    margin-left: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary);
}

.prev-testimonial {
    left: -22px;
}

.next-testimonial {
    right: -22px;
}

.testimonial-nav:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .testimonial-nav {
        display: none;
    }
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--light);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(5deg);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: inherit;
}

.footer-newsletter button {
    border-radius: 0 30px 30px 0;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
}

.footer-newsletter input:focus {
    box-shadow: 0 0 10px rgba(60, 179, 113, 0.5);
    outline: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(60, 179, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(60, 179, 113, 0); }
}

/* Additional animations for impact section */
@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-charts, 
    .impact-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        text-align: center;
    }
    
    .nav-links.show, .auth-buttons.show {
        display: flex;
    }
    
    .nav-links a {
        color: var(--secondary);
        margin: 10px 0;
    }
    
    .auth-buttons {
        top: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .auth-buttons.show {
        margin-top: 180px; /* Adjust based on your nav-links height */
    }
    
    .auth-buttons .btn {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .impact-stats,
    .impact-charts,
    .impact-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .impact-container {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    #cta h2 {
        font-size: 2rem;
    }
    
    .testimonial-text {
        padding: 20px;
    }
}

/* 3D Model Section */
#trash-can-model {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#trash-can-model::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, rgba(60, 179, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#trash-can-model::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, rgba(60, 179, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#trash-can-model .container {
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.model-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid rgba(60, 179, 113, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.model-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.model-feature {
    text-align: center;
    padding: 15px;
    width: 200px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--gray);
}

#threed-trash-can {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #f9f9f9 0%, #eaeaea 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#threed-trash-can:hover {
    box-shadow: 0 15px 40px rgba(60, 179, 113, 0.2);
    transform: translateY(-5px);
}

#threed-trash-can canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    cursor: pointer;
}

.model-container {
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin: 30px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.model-container:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.model-instructions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.instruction {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--primary-light, rgba(60, 179, 113, 0.1));
    border-radius: 50px;
    font-size: 0.9rem;
}

.instruction i {
    margin-right: 8px;
    color: var(--primary, #3CB371);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: var(--primary, #3CB371);
    margin-bottom: 15px;
}

.loading-spinner p {
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #threed-trash-can {
        height: 350px;
    }
    
    .model-instructions {
        gap: 10px;
    }
    
    .instruction {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    #threed-trash-can {
        height: 300px;
    }
    
    .model-instructions {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Add animations for the model */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 5px 20px rgba(60, 179, 113, 0.2); }
    50% { box-shadow: 0 5px 30px rgba(60, 179, 113, 0.6); }
    100% { box-shadow: 0 5px 20px rgba(60, 179, 113, 0.2); }
}

@media (max-width: 992px) {
    .model-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .model-container {
        height: 450px;
    }
    
    .model-features {
        justify-content: center;
    }
    
    .model-feature {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .model-container {
        height: 350px;
    }
    
    .model-feature {
        width: 100%;
    }
}

/* Loading Spinner */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.loading-spinner p {
    font-size: 1rem;
    color: var(--secondary);
}

/* Custom Animations for Visual Interest */
#how-it-works .step:nth-child(odd) {
    animation-delay: 0.2s;
}

#how-it-works .step:nth-child(even) {
    animation-delay: 0.4s;
}

/* App Metrics */
.app-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.9) 0%, rgba(46, 139, 87, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.2);
}

.metric {
    text-align: center;
    width: 22%;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 992px) {
    .app-metrics {
        padding: 20px 15px;
    }
    
    .metric {
        width: 48%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .metric {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }
}

/* Download page styles */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem; /* Increased top padding to account for navbar height plus spacing */
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.download-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

.google-play img {
    padding: 0;
}

.app-store img {
    padding: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card .step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(60, 179, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background-color: var(--primary);
    color: var(--white);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.screenshot-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 60px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.screenshot {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot.active {
    display: block;
    opacity: 1;
}

.screenshot img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.screenshot p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 18px;
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 15;
    }

    .screenshot img {
        max-height: 400px;
        border-width: 5px;
    }
}

@media (max-width: 576px) {
    .screenshot-carousel {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: -50px;
    }
    
    .app-carousel-prev {
        left: calc(50% - 50px);
    }
    
    .app-carousel-next {
        right: calc(50% - 50px);
    }
    
    .app-carousel-dots {
        margin-top: 60px;
    }
}

/* Login Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    max-width: 450px;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
}

.login-container {
    padding: 40px;
}

.login-container h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.social-login button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.google-btn {
    color: #444;
}

.google-btn img {
    width: 20px;
    margin-right: 10px;
}

.apple-btn {
    color: #000;
    background-color: #f5f5f7;
}

.apple-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.social-login button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background-color: white;
    color: var(--gray);
    font-size: 0.9rem;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f8f8;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    transform: translateY(-25px) scale(0.8);
    color: var(--primary);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 12px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.login-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.signup-link {
    text-align: center;
    font-size: 0.95rem;
}

.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-3d-model {
        height: 400px;
        order: 2;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 50px !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Update carousel styles */
.interface-showcase {
    padding: 40px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-carousel {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 900px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    overflow: hidden;
}

.screenshot-wrapper {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.app-screenshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.screenshot-info {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.screenshot-info h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.screenshot-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.carousel-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 18px;
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-dark);
}

/* Fix hero section layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: left;
}

.hero-3d-model {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

/* Fix features section */
.features-section {
    padding: 100px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fix timeline section */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background: var(--primary-color);
    top: 40px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 6px white;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50px;
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-3d-model {
        height: 400px;
        order: 2;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 50px !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 15;
    }

    .screenshot-wrapper {
        padding: 10px;
    }

    .screenshot-info {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .download-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 40px !important;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Fix navigation */
#navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-links a {
    color: var(--text-color);
}

/* Fix download CTA section */
.download-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Page Styles */
.partners-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.partners-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partners-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.partners-showcase {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.partner-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    height: 160px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 3px solid var(--primary);
}

.partner-logo img {
    max-width: 80%;
    max-height: 100px;
    object-fit: contain;
}

.partner-content {
    padding: 20px;
}

.partner-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.partner-category {
    display: inline-block;
    background-color: rgba(60, 179, 113, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.partner-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.partner-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-stats .stat i {
    color: var(--primary);
    font-size: 1rem;
}

.partner-stats .stat span {
    font-size: 0.9rem;
    color: #444;
}

.partnership-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.partnership-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.partnership-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefits .benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    transition: transform 0.3s ease;
}

.cta-benefits .benefit:hover {
    transform: translateY(-5px);
}

.cta-benefits .benefit i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-benefits .benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-benefits {
        gap: 20px;
    }
    
    .cta-benefits .benefit {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-benefits .benefit {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .partners-hero {
        padding: 60px 0 40px;
    }
    
    .partners-hero h1 {
        font-size: 1.8rem;
    }
    
    .partnership-cta h2 {
        font-size: 1.8rem;
    }
}

/* New App Carousel Styles */
.app-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
}

.app-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.app-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    position: relative;
}

.app-carousel-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
}

.screenshot-card {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.screenshot-img {
    height: 500px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.screenshot-caption {
    padding: 15px;
    text-align: center;
    background-color: white;
    border-top: 3px solid var(--primary);
}

.screenshot-caption p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

.app-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.app-carousel-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.app-carousel-prev {
    left: 15px;
}

.app-carousel-next {
    right: 15px;
}

.app-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.app-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.app-carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.app-carousel-dots .dot:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .screenshot-img {
        height: 450px;
    }
    
    .app-carousel-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .screenshot-img {
        height: 350px;
    }
    
    .app-carousel-btn {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: -50px;
    }
    
    .app-carousel-prev {
        left: calc(50% - 50px);
    }
    
    .app-carousel-next {
        right: calc(50% - 50px);
    }
    
    .app-carousel-dots {
        margin-top: 60px;
    }
}

/* New Interface Showcase Styles */
.interface-showcase {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.image-carousel-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 20px;
}

.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.image-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.image-slide.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

.image-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    max-height: 500px;
    object-fit: contain;
    background-color: #f8f8f8;
    padding: 10px;
}

.slide-caption {
    padding: 20px;
    background: white;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.slide-caption h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.slide-caption p {
    color: var(--gray);
    font-size: 0.95rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-nav-btn i {
    font-size: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--primary-dark);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
    
    .slide-caption h3 {
        font-size: 1.1rem;
    }
    
    .image-carousel {
        min-height: 500px;
    }
    
    .image-slide img {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        top: auto;
        bottom: -50px;
        transform: translateY(0);
    }
    
    .carousel-nav-btn:hover {
        transform: translateY(0) scale(1.1);
    }
    
    .prev-btn {
        left: calc(50% - 50px);
    }
    
    .next-btn {
        right: calc(50% - 50px);
    }
    
    .carousel-indicators {
        margin-top: 60px;
    }
    
    .image-carousel {
        min-height: 450px;
    }
    
    .image-slide img {
        max-height: 300px;
    }
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: white !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--secondary);
    opacity: 1 !important;
    display: block !important;
    height: auto;
    min-height: 350px;
    max-height: none !important;
    overflow: visible;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10 !important;
    position: relative !important;
    visibility: visible !important;
}

.chart-wrapper {
    height: 280px !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 auto;
    background: white !important;
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

canvas#wasteChart,
canvas#impactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 30 !important;
    position: relative !important;
    margin: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
}

/* Override any transforms that might be hiding the charts */
.impact-charts {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 400px !important;
    margin: 30px 0 !important;
} 

/* Standalone Charts */
.standalone-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.standalone-chart {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.standalone-chart h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.chart-panel {
    height: 280px;
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
}

@media (max-width: 768px) {
    .standalone-chart {
        min-width: 100%;
    }
}

.fallback-chart {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.chart-panel {
    height: 280px;
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
}

#standaloneImpactChart {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    background-color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

.distribution-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    background: white;
}

/* Title with Logo Layout */
.title-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-with-logo h1 {
    margin: 0;
    flex: 1;
}

/* 3D Logo in Hero Section */
.hero-3d-logo {
    width: 80px;
    height: 80px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-3d-logo canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-size: 24px;
}

/* Make the layout responsive */
@media (max-width: 768px) {
    .title-with-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-3d-logo {
        width: 60px;
        height: 60px;
    }
}

/* Brand Logo in Navbar */
.brand-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .brand-logo {
        height: 24px;
    }
}

/* Recycle Logo */
.recycle-logo {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.arrow {
    position: absolute;
    width: 75%;
    height: 75%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.arrow:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px;
    border-color: transparent transparent transparent var(--primary);
}

.arrow-1 {
    transform: rotate(0deg);
    top: 0;
    left: 0;
}

.arrow-1:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

.arrow-2 {
    transform: rotate(120deg);
    top: 0;
    left: 0;
}

.arrow-2:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

.arrow-3 {
    transform: rotate(240deg);
    top: 0;
    left: 0;
}

.arrow-3:before {
    right: -2px;
    top: 7px;
    transform: rotate(-30deg);
}

#navbar.scrolled .arrow {
    border-color: var(--primary-dark);
    border-bottom-color: transparent;
    border-right-color: transparent;
}

#navbar.scrolled .arrow:before {
    border-left-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .recycle-logo {
        width: 20px;
        height: 20px;
    }
    
    .arrow:before {
        border-width: 3px;
    }
}

/* Navigation Logo */
.nav-logo {
    height: 32px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.1);
}

#navbar.scrolled .nav-logo {
    height: 28px;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 24px;
    }
    
    #navbar.scrolled .nav-logo {
        height: 22px;
    }
}

/* Hero 3D Person Model */
.hero-3d-person {
    width: 35%;
    height: 500px;
    position: relative;
    background-color: rgba(46, 139, 87, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    z-index: 10;
}

.hero-3d-person canvas {
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
    position: relative;
    z-index: 11;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 139, 87, 0.5);
    color: white;
    font-weight: 500;
    font-size: 16px;
    z-index: 12;
}

.loading-spinner i {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-3d-person {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin-bottom: 30px;
    }
    
    .title-with-logo {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-3d-person {
        height: 300px;
    }
}

/* Adjust Download Hero Layout */
.download-hero .hero-content {
    margin-top: -60px; /* Move the content up */
    padding-bottom: 40px;
}

.download-hero .title-with-logo {
    text-align: left;
}

.download-hero .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.download-hero .hero-description {
    text-align: left;
    margin-bottom: 25px;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.download-hero .stat {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.download-hero .stat:hover {
    transform: translateY(-5px);
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .download-hero .download-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .download-hero .hero-content {
        margin-top: 0; /* Reset on smaller screens */
        padding-bottom: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
}

/* Download Page Styles */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 4rem 0;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
}

.download-hero .hero-description {
    margin-bottom: 1.5rem;
}

.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
    height: 50px;
    pointer-events: none;
}

.hero-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

@media (max-width: 992px) {
    .download-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-image-column {
        margin-bottom: 1rem;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .download-hero .download-stats {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    padding: 0 5px;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 992px) {
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .download-hero .title-with-logo h1 {
        font-size: 1.8rem;
    }
}

/* Updated hero section spacing to prevent navbar overlap */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important; /* Increased top padding to properly clear the navbar */
}

@media (max-width: 992px) {
    .download-hero {
        padding: 7rem 0 4rem !important;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 6rem 0 3rem !important;
    }
}

/* Additional hero container adjustments */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
    align-items: center; /* Ensure vertical centering */
    min-height: calc(100vh - 200px); /* Set a minimum height for larger screens */
}

@media (max-width: 992px) {
    .hero-container {
        min-height: auto;
        padding: 1rem;
    }
}

/* Updated hero container for clean 2-column layout */
.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 4rem; /* Increased gap between columns */
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Increased gap between content elements */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Description styling */
.download-hero .hero-description {
    margin-bottom: 0; /* Removed margin as we're using gap */
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0; /* Removed margin as we're using gap */
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem; /* Slightly reduced gap for medium screens */
        min-height: auto;
    }
    
    .hero-image-column {
        margin-bottom: 0; /* Removed margin as we're using gap */
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem; /* Slightly reduced gap for medium screens */
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
    }
    
    .download-hero .title-with-logo {
        align-items: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

/* Hero section with two-column layout */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 7rem 0 4rem !important;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    gap: 5rem; /* Increased spacing between columns */
    align-items: center;
}

/* Left column - image only */
.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Right column - content */
.hero-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start; /* Ensure left alignment */
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
    text-align: left;
}

/* Description styling */
.download-hero .hero-description {
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    width: 100%;
}

.download-hero .stat {
    text-align: left;
    transition: transform 0.3s ease;
}

.download-hero .number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding: 1rem;
        gap: 3rem;
    }
    
    .hero-image-column {
        width: 80%;
        max-width: 450px;
    }
    
    .hero-person-image {
        max-height: 450px;
    }
    
    .hero-content {
        padding: 0;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .download-hero .title-with-logo h1 {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-image-column {
        width: 90%;
    }
    
    .hero-person-image {
        max-height: 350px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Additional hero section refinements */
.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure no overflow in the container */
.hero-container {
    overflow: hidden;
}

/* Fix for small screens */
@media (max-width: 992px) {
    .download-hero {
        padding-top: 6rem !important;
    }
    
    .download-hero .hero-description {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding-top: 5rem !important;
    }
    
    .hero-container {
        padding: 1rem;
    }
}

/* Fix any conflicting styles */
.download-hero .title-with-logo, 
.download-hero .hero-description,
.download-hero .download-stats,
.app-store-buttons {
    margin-bottom: 0;
}

/* Clean two-column hero layout with complete separation */
.download-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: auto;
    padding: 7rem 0 4rem;
    overflow: visible;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width columns */
    gap: 6rem; /* Significant gap between columns */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Right column - content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

/* Image styling */
.hero-person-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Title styling */
.download-hero .title-with-logo {
    text-align: left;
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
}

/* Description styling */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
}

.download-hero .stat {
    text-align: left;
}

.download-hero .number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
}

.store-button {
    display: block;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media (max-width: 992px) {
    .download-hero {
        padding: 6rem 0 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 3rem;
    }
    
    .hero-image-column {
        order: 1; /* Image first on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-content {
        order: 2; /* Content second on mobile */
        text-align: center;
        align-items: center;
        gap: 2rem;
    }
    
    .download-hero .title-with-logo {
        text-align: center;
    }
    
    .download-hero .download-stats {
        justify-content: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .download-hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-container {
        padding: 1rem;
        gap: 2rem;
    }
    
    .hero-image-column {
        max-width: 350px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.2rem;
    }
    
    .download-hero .download-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Gradient text styling */
.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00aa99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

/* Hero wave styling */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 50px;
    pointer-events: none;
}

.hero-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

/* Improved hero layout with better spacing and alignment */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem; /* Increased gap for more separation */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: center;
    position: relative;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-end; /* Align image to right side of left column */
    align-items: center;
    width: 100%;
    padding-right: 1rem; /* Add padding to keep image contained */
}

/* Right column - content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 1rem; /* Add padding to push content right */
}

/* Image styling */
.hero-person-image {
    max-width: 90%; /* Slightly reduce image width */
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Better content alignment */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem; /* Keep text from extending too far right */
}

.download-hero .title-with-logo h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
}

.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%; /* Limit width to prevent line length issues */
}

/* Stats styling */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start; /* Ensure left alignment */
    width: 100%;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start; /* Ensure left alignment */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-container {
        gap: 6rem; /* Slightly reduced gap on smaller screens but still well separated */
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 4rem;
        padding: 2rem 1rem;
    }
    
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0;
    }
    
    .download-hero .title-with-logo {
        text-align: center;
        padding-right: 0;
    }
    
    .download-hero .download-stats {
        justify-content: center;
        align-self: center;
    }
    
    .app-store-buttons {
        align-self: center;
    }
    
    .download-hero .stat {
        text-align: center;
    }
    
    .hero-person-image {
        max-width: 100%;
    }
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-start; /* Align image to the left side of column instead of flex-end */
    align-items: center;
    width: 100%;
    padding-left: 2rem; /* Add left padding to prevent the image from touching the screen edge */
    padding-right: 0; /* Remove right padding to move image closer to the left */
}

/* Image styling */
.hero-person-image {
    max-width: 95%; /* Slightly increase max-width to ensure image remains properly sized */
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

/* Responsive image adjustments */
@media (max-width: 992px) {
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-left: 0; /* Reset padding on mobile */
        padding-right: 0;
    }
}

/* Right column - content with increased padding */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 3rem; /* Increased left padding to move content more to the right */
}

/* Better content alignment with right shift */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Description paragraph right shift */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Stats right shift */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start;
    width: 100%;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* App store buttons right shift */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start;
    margin-left: 1rem; /* Additional left margin to move content right */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0; /* Reset padding on mobile */
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 0; /* Reset margin on mobile */
    }
}

/* Updated hero layout with text shifted right */
.hero-container {
    display: grid;
    grid-template-columns: 45% 55%; /* Adjust column proportions to shift text right */
    gap: 10rem; /* Significantly increase gap for wider spacing */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    align-items: center;
    position: relative;
}

/* Left column - image only */
.hero-image-column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 2rem;
    padding-right: 0;
}

/* Right column - content shifted right */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    padding-left: 4rem; /* Increase left padding to shift content right */
    margin-right: 2rem; /* Add right margin */
}

/* Better content alignment with right shift */
.download-hero .title-with-logo {
    text-align: left;
    padding-right: 1rem;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Description paragraph right shift */
.download-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Stats right shift */
.download-hero .download-stats {
    display: flex;
    gap: 3rem;
    align-self: flex-start;
    width: 100%;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* App store buttons right shift */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: flex-start;
    margin-left: 2rem; /* Increase left margin to move content right */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 48% 52%; /* Slightly adjust proportions on smaller screens */
        gap: 6rem; /* Reduce gap on smaller screens but maintain separation */
    }
    
    .hero-content {
        padding-left: 2rem;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 4rem;
        padding: 2rem;
    }
    
    .hero-image-column {
        justify-content: center; /* Center image when stacked */
        max-width: 450px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        gap: 2.5rem;
        padding-left: 0;
        margin-right: 0;
    }
    
    .download-hero .title-with-logo,
    .download-hero .hero-description,
    .download-hero .download-stats,
    .app-store-buttons {
        margin-left: 0;
    }
}

/* App store buttons centered */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: center; /* Center the buttons horizontally */
    margin-left: 0; /* Remove left margin */
    justify-content: center; /* Ensure buttons are centered within the container */
}

/* Keep other button styling the same */
.store-button {
    display: block;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

/* Ensure button styles work on mobile too */
@media (max-width: 992px) {
    .app-store-buttons {
        justify-content: center;
        align-self: center;
    }
}

/* Enhanced Hero Section with Creative Elements */
.download-hero {
    position: relative;
    background: linear-gradient(135deg, #0c2e3d 0%, #1c4b3b 100%);
    min-height: auto;
    padding: 7rem 0 4rem;
    overflow: visible;
}

/* Animated background particles */
.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 255, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(0, 205, 130, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Floating accent circles */
.hero-accent {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 200, 120, 0.1);
    filter: blur(30px);
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.hero-accent-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-accent-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 15%;
    animation-delay: -5s;
}

.hero-accent-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px;
    animation-delay: -2s;
}

/* Recycling icon decorations */
.hero-icon {
    position: absolute;
    color: rgba(0, 200, 120, 0.1);
    z-index: 0;
    opacity: 0.6;
    animation: pulse 4s infinite ease-in-out;
}

.recycle-icon-1 {
    top: 15%;
    left: 12%;
    font-size: 28px;
    animation-delay: 0s;
}

.recycle-icon-2 {
    bottom: 20%;
    right: 8%;
    font-size: 24px;
    animation-delay: 1s;
}

.recycle-icon-3 {
    top: 60%;
    left: 15%;
    font-size: 32px;
    animation-delay: 2s;
}

.recycle-icon-4 {
    top: 25%;
    right: 18%;
    font-size: 20px;
    animation-delay: 3s;
}

/* Enhanced image styling */
.hero-person-image {
    max-width: 95%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
    animation: float 6s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

/* Enhanced buttons styling */
.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    align-self: center;
    margin-left: 0;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.store-button {
    display: block;
    max-width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform-origin: center;
}

.store-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 80, 60, 0.2);
}

/* Glow effect on hover for stats */
.download-hero .stat {
    position: relative;
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    z-index: 2;
}

.download-hero .stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-hero .stat:hover .number {
    text-shadow: 0 0 15px rgba(0, 200, 100, 0.6);
}

/* Enhanced number styling */
.download-hero .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00cc66, #00eebb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

/* Enhanced title styling */
.download-hero .title-with-logo h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #00cc66, #00eebb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00cc66, #00eebb, transparent);
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-accent-1, .hero-accent-2, .hero-accent-3 {
        width: 150px;
        height: 150px;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-accent, .hero-icon {
        display: none;
    }
    
    .download-hero .title-with-logo h1 {
        font-size: 2rem;
    }
}

/* Decorative Elements */
.decorative-accent {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.2;
  z-index: 0;
}

.accent-1 {
  top: -50px;
  left: -100px;
  width: 200px;
  height: 200px;
  animation: float 8s ease-in-out infinite;
}

.accent-2 {
  bottom: -70px;
  right: -50px;
  width: 180px;
  height: 180px;
  animation: float 10s ease-in-out infinite;
}

.accent-3 {
  top: 40%;
  left: 40%;
  width: 100px;
  height: 100px;
  animation: float 7s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  z-index: 1;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(0, 170, 85, 0.5));
}

.icon-1 {
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.icon-2 {
  top: 15%;
  right: 20%;
  animation: float 8s ease-in-out infinite 1s;
}

.icon-3 {
  bottom: 25%;
  left: 10%;
  animation: float 7s ease-in-out infinite 0.5s;
}

.icon-4 {
  bottom: 20%;
  right: 15%;
  animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

/* Make sure hero section has correct positioning */
.hero-section {
  position: relative;
  overflow: hidden;
}/ *   C u s t o m   f i x   f o r   d o w n l o a d   h e r o   s e c t i o n   * / 
 
 
