/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(220, 20%, 15%);
    background-color: hsl(0, 0%, 100%);
}

/* CSS Variables (Design System) */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 20%, 15%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(220, 20%, 15%);
    --primary: hsl(215, 70%, 25%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 40%, 96%);
    --secondary-foreground: hsl(215, 70%, 25%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(220, 15%, 45%);
    --accent: hsl(15, 85%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(15, 85%, 60%);
    --radius: 0.5rem;
    
    /* Custom tokens */
    --hero-gradient: linear-gradient(135deg, hsl(215, 70%, 25%) 0%, hsl(220, 60%, 35%) 100%);
    --accent-gradient: linear-gradient(135deg, hsl(15, 85%, 60%) 0%, hsl(25, 90%, 55%) 100%);
    --feature-shadow: 0 10px 40px -10px hsl(215, 70%, 25%, 0.15);
    --card-shadow: 0 4px 20px -2px hsl(220, 20%, 15%, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    bottom: -0.5rem;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-primary:hover {
    background: hsl(15, 85%, 55%);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    background: hsl(15, 85%, 55%);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: hsla(215, 70%, 25%, 0.6);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    z-index: 10;
}

.hero-subtitle {
    color: var(--accent-foreground);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: hsla(0, 0%, 100%, 0.2);
    border: none;
    color: var(--primary-foreground);
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.hero-nav:hover {
    background: hsla(0, 0%, 100%, 0.4);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background: hsla(0, 0%, 100%, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    width: 2rem;
    border-radius: 1rem;
    background: var(--accent);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--muted-foreground);
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.section-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background: hsla(210, 40%, 96%, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: hsla(15, 85%, 60%, 0.1);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon .icon {
    color: var(--accent-foreground);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Why Us Section */
.why-us {
    background: var(--background);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4,  1fr);
    gap: 2rem;
}

/* Add responsive behavior for smaller screens */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--feature-shadow);
    border-color: hsla(15, 85%, 60%, 0.5);
    transform: translateY(-2px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
    background: hsla(15, 85%, 60%, 0.1);
    margin-bottom: 1rem;
}

.card-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--muted-foreground);
}

/* About Section */
.about {
    background: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    text-align: center;
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.about-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-paragraphs {
    margin-bottom: 2rem;
}

.about-paragraphs p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.about-quote {
    font-weight: 600;
    color: var(--foreground);
    font-style: italic;
}

/* Projects Section */
.projects {
    background: hsla(210, 40%, 96%, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.project-card:hover {
    box-shadow: var(--feature-shadow);
    transform: translateY(-5px);
}

.project-image {
    height: 12rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.project-impact {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--muted-foreground);
}

/* Process Section */
.process {
    background: linear-gradient(to bottom, var(--background), hsla(210, 40%, 96%, 0.3));
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--accent-foreground);
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.step-icon:hover {
    transform: scale(1.05);
}

.step-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-foreground);
}

/* Services Section */
.services {
    background: hsla(210, 40%, 96%, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,  1fr);
    gap: 2rem;
}

/* Add responsive behavior for smaller screens */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--feature-shadow);
    border-color: hsla(15, 85%, 60%, 0.5);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
    background: hsla(15, 85%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent);
}

.service-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon .icon {
    color: var(--accent-foreground);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--primary);
    color: var(--primary-foreground);
}

.testimonials .section-title {
    color: var(--primary-foreground);
}

.testimonials .section-description {
    color: hsla(0, 0%, 100%, 0.8);
}



.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
/* Add responsive behavior for smaller screens */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--primary-foreground);
    color: var(--foreground);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.testimonial-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    min-height: 6.25rem;
}

.rating {
    margin-bottom: 0.75rem;
}

.rating span {
    color: var(--accent);
    font-size: 1.125rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Gallery Section */
.gallery {
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Donate Section */
.donate {
    background: linear-gradient(to bottom, hsla(210, 40%, 96%, 0.3), var(--background));
}

.donate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--accent-foreground);
    margin-bottom: 1rem;
}

.donate-icon .icon {
    width: 2rem;
    height: 2rem;
}

.donate-card {
    max-width: 28rem;
    margin: 0 auto;
}

.donate-card .card {
    text-align: center;
    transition: var(--transition-smooth);
}

.donate-card .card:hover {
    transform: scale(1.02);
}

.donate-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.donate-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.qr-code {
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.qr-code img {
    width: 16rem;
    height: 16rem;
    object-fit: cover;
    border-radius: var(--radius);
}

.donate-message {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsla(15, 85%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}

.contact-details h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: hsla(210, 40%, 96%, 0.5);
    padding: 2rem;
    border-radius: var(--radius);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    background: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius);
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsla(15, 85%, 60%, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.8);
}

/* Icon Styles */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-nav {
        display: none;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    /* Grid layouts */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* About badge positioning */
    .about-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    /* Grids responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }

    .hero-indicators {
        bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-nav,
    .hero-indicators,
    .btn {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .hero-overlay {
        background: transparent;
    }

    .hero-content {
        color: black;
    }
}