:root {
    --primary-color: #22c55e;
    --secondary-color: #0f172a;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --secondary-accent: unset;
    --secondary-accent-dark: unset;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
.header {
    position: relative;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img-container {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    border-radius: 4px;
}

.logo-img {
    display: block !important;
    height: 48px;
    margin: 0;
}

.logo-text {
    color: #222;
    font-weight: 700;
    font-size: 2.8rem;
    margin-left: 0;
    font-family: inherit;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section - ultra compact */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 50px;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-bg-parallax {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('dashbrd.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.hero .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    margin: 0;
}

/* Main content - reset top padding */
main {
    padding-top: 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: #1a9f4d;
    transform: translateY(-2px);
}

/* Approach Section */
.approach {
    padding: 2.5rem 2rem;
    background: var(--light-bg);
}

.approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.approach-card p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 2.5rem 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.08), 0 1.5px 6px rgba(15, 23, 42, 0.06);
    transition: var(--transition), box-shadow 0.2s;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15), 0 3px 12px rgba(15, 23, 42, 0.10);
    transform: translateY(-6px) scale(1.03);
    border-top: 4px solid #1a9f4d;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-subtitle {
    display: block;
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* Experience Section */
.experience {
    padding: 2.5rem 2rem;
    background: linear-gradient(120deg, #f8fafc 80%, #e0ffe6 100%);
    position: relative;
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
}

.experience-icon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.experience-quote {
    text-align: center;
    font-style: italic;
    color: #64748b;
    margin: 1.5rem auto 1rem auto;
    font-size: 1.1rem;
    max-width: 400px;
}

.experience-timeline {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34,197,94,0.08);
    padding: 0.8rem 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.timeline-item span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

/* Contact Section */
.contact {
    padding: 2.5rem 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #1a9f4d;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    margin: 0 0.25rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--white);
    opacity: 0.5;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    user-select: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer address styling */
.footer-address {
    color: #cbd5e1;
    font-size: 0.98rem;
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Remove any blue background/line from footer */
.footer, .footer-bottom {
    background: var(--secondary-color);
    border: none;
    box-shadow: none;
}

.footer-content {
    min-height: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .approach-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .approach,
    .services,
    .experience,
    .contact {
        padding: 4rem 1rem;
    }
}

/* Remove logo image styles if present */
.logo-img {
    display: inline-block !important;
    height: 40px;
    margin-right: 0.5rem;
}

.footer-logo-img {
    display: block !important;
    height: 36px;
    margin: 0 auto 0.5rem auto;
}

/* Remove flip-card and timeline styles */
.flip-card, .flip-card-inner, .flip-card-front, .flip-card-back, .approach-timeline, .approach-step, .approach-icon-bubble, .approach-step-content {
    all: unset;
    display: revert;
}

/* Approach Section - revert to previous card style */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.approach-card p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.95;
}

/* Service Card - revert to previous clean style */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.08), 0 1.5px 6px rgba(15, 23, 42, 0.06);
    transition: var(--transition), box-shadow 0.2s;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15), 0 3px 12px rgba(15, 23, 42, 0.10);
    transform: translateY(-6px) scale(1.03);
    border-top: 4px solid #1a9f4d;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-subtitle {
    display: block;
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* Hero Section - update background image */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

/* --- Footer Socials Placement --- */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: scale(1.15) rotate(-8deg);
}

/* --- Playful Accent Elements --- */
.approach, .services {
    position: relative;
    overflow: visible;
}

.approach::after, .services::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.approach::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 60% 40%, #22c55e33 0%, transparent 80%);
    top: -60px;
    right: -80px;
}

.services::after {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 30% 70%, #22c55e22 0%, transparent 80%);
    bottom: -60px;
    left: -60px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .approach-timeline {
        flex-direction: column;
        gap: 2.5rem;
        padding: 1.5rem 0 2rem 0;
    }
    .approach-timeline::before {
        top: 0;
        left: 50%;
        right: auto;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #22c55e 0%, #0f172a 100%);
    }
    .approach-step {
        flex-direction: row;
        width: 100%;
        min-width: 0;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    .approach-icon-bubble {
        margin-bottom: 0;
        margin-right: 1.2rem;
    }
    .approach-step-content {
        margin-top: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .flip-card {
        height: 260px;
    }
}

/* Scroll to top button */
#scrollToTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(34,197,94,0.18);
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
    display: none;
}
#scrollToTop:hover {
    opacity: 1;
    background: #1a9f4d;
    transform: translateY(-4px) scale(1.08);
}

/* Show scroll-to-top button when needed */
body.show-scroll-top #scrollToTop {
    display: block;
}

/* Section dividers */
.section-divider {
    display: block;
    width: 100%;
    height: 20px;
    margin: 0;
    line-height: 0;
}

/* Approach accent section */
.approach-accent {
    background: var(--white);
    padding-bottom: 4rem;
}
.approach-accent .approach-step {
    background: #f8fafc;
    border-left: 6px solid #fff;
}
@media (max-width: 600px) {
    .approach-accent .approach-step {
        border-left: none;
        border-top: 6px solid #fff;
    }
}
.experience-accent {
    background: var(--white);
    padding-bottom: 5rem;
}
.experience-content {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    padding: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Required asterisk */
.required {
    color: #e11d48;
    font-size: 1.1em;
    margin-left: 0.2em;
}

/* Secondary CTA button */
.secondary-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 2rem;
    border: none;
}
.secondary-cta:hover {
    background: #1a9f4d;
    color: #fff;
    transform: translateY(-2px);
}

/* Approach steps */
.approach-steps {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}
@media (max-width: 900px) {
    .approach-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
}
.approach-step {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(34,197,94,0.07);
    padding: 2rem 1.5rem;
    text-align: left;
    border-left: 6px solid var(--primary-color);
    position: relative;
    min-width: 220px;
    flex: 1 1 0;
}
@media (max-width: 600px) {
    .approach-step {
        min-width: 0;
        padding: 1.2rem 0.8rem;
        text-align: center;
        border-left: none;
        border-top: 6px solid var(--primary-color);
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .section-divider { height: 15px; }
    .experience-accent { padding-bottom: 3rem; }
} 