:root {
    --bg-dark: #ffffff;
    --bg-darker: #f9fafb;
    --bg-surface: #ffffff;
    --bg-surface-hover: #ffffff;
    
    --text-primary: #111827;
    --text-secondary: #4b5563;
    
    --brand-green: #22c55e;
    --brand-green-glow: rgba(34, 197, 94, 0.2);
    --brand-dark-grey: #1f2937;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Add a subtle moving grid pattern background */
body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    color: var(--text-secondary);
}

.green-text {
    color: var(--brand-green);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--brand-green);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--brand-green-glow);
}

.btn-primary:hover {
    background-color: #16a34a;
    box-shadow: 0 8px 25px var(--brand-green-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo-text {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--brand-green);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-green);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 999;
    padding-top: 5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav .mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-nav .mobile-link:hover {
    color: var(--brand-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 4rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Creative Floating Graphics */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    font-size: 2rem;
    color: var(--brand-green);
    border: 1px solid rgba(0,0,0,0.02);
}

/* specific positions and animations */
.icon-chart {
    top: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}
.icon-bullhorn {
    top: 60%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}
.icon-search {
    top: 25%;
    right: 15%;
    animation: float 7s ease-in-out infinite 1s;
}
.icon-target {
    top: 65%;
    right: 12%;
    animation: float 5s ease-in-out infinite 2s;
}

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

/* Marquee Ticker */
.marquee-container {
    width: 100%;
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-content {
    display: flex;
    width: 200%;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex: 1 0 auto;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* About Section */
.about {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image {
    position: relative;
    padding-right: 20px;
    padding-top: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-green);
    border-radius: 24px;
    z-index: 1;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Services */
.services {
    padding: 8rem 2rem;
    background-color: var(--bg-darker);
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon Animations on Hover */
.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    transition: var(--transition-medium);
}

.service-card:hover .card-icon {
    background: var(--brand-green);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* CTA Banner */
.cta-banner {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background-color: var(--bg-dark);
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--brand-green-glow);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--brand-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 6rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-medium);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-links a:hover {
    background: var(--brand-green);
    color: #ffffff;
    transform: translateY(-5px);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--brand-green);
}

.footer-contact li {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--brand-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations Core */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: #FFF;
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.5);
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .floating-icon {
        display: none; /* Hide floating icons on mobile for cleaner look */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        padding: 2rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    @media (min-width: 1000px) {
        .center-card {
            grid-column: auto;
            max-width: 100%;
        }
    }
}

/* Projects Section */
.projects {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    max-width: 1200px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--bg-surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.project-image {
    height: 250px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.project-info {
    padding: 2.5rem;
}

.project-info span {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--brand-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-info p {
    color: var(--text-secondary);
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background-color: var(--bg-darker);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-surface);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(34, 197, 94, 0.15);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Founder Section */
.founder-section {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 0 auto;
}

.founder-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.founder-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-social {
    margin-top: 1rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
    color: #ffffff;
}

@media (max-width: 900px) {
    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

