/* Base Styles and Variables */
:root {
    --primary-color: #809bceff;
    --secondary-color: #95b8d1ff;
    --accent-color: #b8e0d2ff;
    --background-color: #d6eadfff;
    --highlight-color: #eac4d5ff;
    --text-color: #2d3748;
    --shadow: 0 4px 6px rgba(128, 155, 206, 0.2);
    --font-primary: "Roboto", sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Updated Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    padding: 1.2rem 5%;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.8rem;
    text-transform: none; /* Remove text-transform to maintain proper capitalization */
}

/* Hero Section - Updated */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: white;
}

.secondary-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-shape {
    width: 400px;
    height: 400px;
    animation: morphing 10s ease-in-out infinite;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    opacity: 0.8;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, white 2px, transparent 2px);
    background-size: 30px 30px;
    animation: floatDots 20s linear infinite;
    opacity: 0.1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatDots {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

/* Improved Services Section */
#services {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--background-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--highlight-color);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 1rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(128, 155, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(128, 155, 206, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border-radius: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    color: white;
    background: transparent;
}

.service-icon i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Enhanced Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--background-color) 0%, white 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--highlight-color);
    border-radius: 2px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(128, 155, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    border-left: 4px solid var(--accent-color);
    max-width: 500px;
    margin: 1rem auto;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(128, 155, 206, 0.2);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info span {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Improved Projects Section */
#projects {
    padding: 8rem 5%;
    background: linear-gradient(135deg, white 0%, var(--background-color) 100%);
    position: relative;
}

#projects h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

#projects h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--highlight-color);
    border-radius: 2px;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(128, 155, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(128, 155, 206, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(128, 155, 206, 0.2);
}

.project-card:hover::before {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    background: linear-gradient(
        to top,
        var(--primary-color) 0%,
        transparent 100%
    );
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--highlight-color);
    transform: translateX(5px);
}

.project-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.project-link:hover::after {
    transform: translateX(5px);
}

.project-svg {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    padding: 3rem;
}

.svg-icon {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.project-card:hover .svg-icon {
    transform: scale(1.1);
    stroke: var(--highlight-color);
}

/* Updated Contact Section */
#contact {
    background: var(--background-color);
    padding: 6rem 5%;
}

.contact-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 155, 206, 0.2);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* New Footer Styles */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 5% 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-50%);
}

.waves {
    position: relative;
    width: 100%;
    height: 60px;
    fill: var(--background-color);
}

.parallax > use {
    animation: wave 25s cubic-bezier(.55,.5,.45,.5) infinite;
    fill: rgba(255, 255, 255, 0.1);
}

.parallax > use:nth-child(1) { animation-delay: -2s; }
.parallax > use:nth-child(2) { animation-delay: -3s; opacity: 0.7; }
.parallax > use:nth-child(3) { animation-delay: -4s; opacity: 0.5; }
.parallax > use:nth-child(4) { animation-delay: -5s; opacity: 0.3; }

@keyframes wave {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: none; /* Remove text-transform to maintain proper capitalization */
    letter-spacing: 1px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-contact i {
    margin-top: 0.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: var(--highlight-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: white;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--highlight-color);
}

/* Tech Animation Styles */
.tech-animation {
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.circuit-path {
    fill: none;
    stroke: var(--highlight-color);
    stroke-width: 2;
    stroke-dasharray: 10;
    opacity: 0.6;
    animation: flowPath 3s linear infinite;
}

.node {
    fill: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
    animation: pulseNode 2s ease-in-out infinite;
}

.central-icon {
    animation: rotate 20s linear infinite;
}

.pulse-ring {
    fill: none;
    stroke: var(--highlight-color);
    stroke-width: 1;
    opacity: 0.5;
    animation: pulsate 3s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

.tech-symbol {
    fill: none;
    stroke: white;
    stroke-width: 2;
    opacity: 0.8;
}

.core {
    fill: var(--highlight-color);
    filter: drop-shadow(0 0 10px var(--highlight-color));
}

.particle {
    fill: white;
    opacity: 0;
    animation: moveParticle 4s linear infinite;
}

.particle:nth-child(2) { animation-delay: 1s; }
.particle:nth-child(3) { animation-delay: 2s; }
.particle:nth-child(4) { animation-delay: 3s; }

@keyframes flowPath {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

@keyframes pulseNode {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes pulsate {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes moveParticle {
    0% { 
        opacity: 0;
        transform: translate(0, 0);
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { 
        opacity: 0;
        transform: translate(400px, 300px);
    }
}

/* Remove old animation styles */
.animated-shape {
    display: none;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .animated-shape {
        width: 300px;
        height: 300px;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button, .secondary-button {
        width: 100%;
    }

    .animated-shape {
        width: 250px;
        height: 250px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .animated-shape {
        width: 200px;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover,
    .project-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    .service-card::before,
    .project-card::before {
        opacity: 0.5;
    }

    .project-info {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }
}

/* Mobile Menu Styles */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Enhanced Tech Animation */
.tech-animation {
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.circuit-path {
    fill: none;
    stroke: var(--highlight-color);
    stroke-width: 2;
    stroke-dasharray: 10;
    opacity: 0.6;
    animation: flowPath 3s linear infinite;
}

.node {
    fill: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
    animation: pulseNode 2s ease-in-out infinite;
}

.central-icon {
    animation: rotate 20s linear infinite;
}

.pulse-ring {
    fill: none;
    stroke: var(--highlight-color);
    stroke-width: 1;
    opacity: 0.5;
    animation: pulsate 3s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

.tech-symbol {
    fill: none;
    stroke: white;
    stroke-width: 2;
    opacity: 0.8;
}

.core {
    fill: var(--highlight-color);
    filter: drop-shadow(0 0 10px var(--highlight-color));
}

.particle {
    fill: white;
    opacity: 0;
    animation: moveParticle 4s linear infinite;
}

.particle:nth-child(2) { animation-delay: 1s; }
.particle:nth-child(3) { animation-delay: 2s; }
.particle:nth-child(4) { animation-delay: 3s; }

@keyframes flowPath {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

@keyframes pulseNode {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes pulsate {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes moveParticle {
    0% { 
        opacity: 0;
        transform: translate(0, 0);
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { 
        opacity: 0;
        transform: translate(400px, 300px);
    }
}

/* Enhance hero section visibility */
.hero-container {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.hero-content h1 {
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-subtitle {
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
