/*
Theme Name: Pello Companies
Theme URI: https://pellocompanies.com
Author: Pello Companies
Author URI: https://pellocompanies.com
Description: Custom theme for Pello Companies landing page with full customizer support and interactive particle animation
Version: 3.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pello
*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #D97638;
            --dark-text: #2C2C2C;
            --light-gray: #F5F5F5;
            --medium-gray: #E8E8E8;
            --text-gray: #666666;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background: #e8effa;
            padding: 20px;
        }

        .page-wrapper {
            background: white;
            max-width: 1440px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }


        /* Header */
        header {
            background: white;
            padding: 30px 0;
            z-index: 100;
            position: sticky;
            top: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
/*             display: flex; */
            align-items: center;
        }

        .logo img {
            height: 80px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            text-transform: uppercase;
        }

        nav a:hover {
            color: var(--primary-orange);
        }
        

        .container {
	        padding: 0 0;
        }

        header {
            padding: 0 0;
        }

        .hero-left {
            padding-left: 120px;
            max-width: 750px;
        }

        .hero-right {
            height: calc(80% + 60px);
            top: 0px;
            z-index:10
        }

        .hero {
            min-height: 55vh;
        }

        .about-text h2 span {
            letter-spacing: 1px;
            font-size: 33px;
        }

        .stat-visual {
            margin-top: 10px;
            margin-right: 5em;
            height: 18em;
        }

        .stat-card {
            padding: 50px 30px;
        }

        .stat-description {
            font-size: 15px;
            font-weight: 500;
        }

        .team-header h3 {
            font-size: 24px;
            font-weight: 700;
        }

        .stats-header h3 {
            font-size: 24px;
            font-weight: 700;
        }
        .stats-header h2 {
            width: 100%;
        }

        .logo img {
        width: 30%;
            height: auto !important;
        object-fit: contain;
        }

        .linkedin-icon {
            width: 24px;
            height: 24px;
            background: var(--dark-text);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 12px;
            transition: background 0.3s ease;
        }

        .linkedin-icon:hover {
            background: var(--primary-orange);
        }

        /* Hero Section */
        .hero {
            min-height: 85vh;
            position: relative;
            background: linear-gradient(135deg, #FFFFFF 0%, rgb(217 145 56 / 10%) 100%);
            padding-top: 40px;
        }

        .hero-left {
            padding: 80px 60px 80px 80px;
            z-index: 20;
            position: relative;
            max-width: 650px;
        }

        .hero-right {
            position: absolute;
            right: 0;
            top: -60px;
            left: 40%;
            height: calc(100% + 60px);
            min-height: 660px;
            overflow: hidden;
            z-index: 5;
        }

        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .wave-pattern {
            position: absolute;
            right: 0;
            top: -20px;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at center, transparent 20%, rgba(217, 118, 56, 0.03) 20%, rgba(217, 118, 56, 0.03) 21%, transparent 21%),
                radial-gradient(ellipse at center, transparent 40%, rgba(217, 118, 56, 0.02) 40%, rgba(217, 118, 56, 0.02) 41%, transparent 41%);
            background-size: 40px 40px, 80px 80px;
            opacity: 0.6;
            animation: wave 20s infinite linear;
        }

        @keyframes wave {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-20px) rotate(2deg); }
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content::before {
            content: '';
            display: block;
            width: 60px;
            height: 8px;
            background: var(--primary-orange);
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 50px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 600;
            border: 2px solid rgba(217, 118, 56, 1);
            transition: all 0.3s ease;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(217, 118, 56, 0.3);
        }

        /* About Section */
        .about-section {
            padding: 120px 0;
            background: #fbfbfb;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h2 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 32px;
            line-height: 1.3;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .about-text h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 8px;
            background: var(--primary-orange);
            margin-bottom: 30px;
        }

        .about-text h2 span {
            color: var(--primary-orange);
            display: block;
            font-size: 34px;
            /* text-transform: uppercase; */
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .about-text p {
            color: black;
            line-height: 1.6;
            margin-bottom: 0px;
            font-size: 18px;
            font-weight: 500;
            font-family: Arial, Helvetica, sans-serif;
        }

        .about-image {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* Stats Section */
        .stats-section {
            padding: 40px 0;
            background: #fbfbfb;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .stats-header h3 {
            color: var(--primary-orange);
            font-size: 28px;
            font-family: Arial, Helvetica, sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .stats-header h2 {
            font-size: 36px;
            font-weight: 700;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .stat-card {
            background: #f8f8f8;
            padding: 50px 40px;
            border-radius: 0px;
            border: 2px solid #E0E0E0;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .stat-visual {
            height: 180px;
            margin-bottom: 30px;
            position: relative;
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }

        .bar {
            background: green;
            border-radius: 0px;
            position: relative;
            flex: 1;
        }

        .bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" text-anchor="middle" dy=".3em" font-size="40" fill="white" opacity="0.3">📊</text></svg>'); */
            background-size: cover;
            opacity: 0.5;
        }

        .stat-number {
            font-size: 80px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 10px;
            letter-spacing: -2px;
            font-family: Arial, Helvetica, sans-serif;
            display: inline-block;
        }

        .stat-indicator {
            display: inline-block;
            margin-left: 15px;
            vertical-align: middle;
        }

        .stat-indicator img {
            height: 40px;
            width: auto;
            vertical-align: middle;
        }

        .stat-indicator-text {
            color: #22c55e;
            font-size: 24px;
            font-weight: 400;
            margin-left: 5px;
            vertical-align: middle;
        }

        .stat-year {
            display: inline-block;
            font-size: 18px;
            font-weight: 600;
            color: black;
            margin-left: 5%;
            vertical-align: top;
            margin-top: 10%;
            font-family: Arial, Helvetica, sans-serif;
        }

        .stat-description {
            color: black;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 40px;

        }

        .stat-source {
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-size: 12px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            /* underline */
            text-decoration: underline;

        }

        /* Team Section */
        .team-section {
            padding: 120px 0;
            background: #fbfbfb;
        }

        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-header h3 {
            color: var(--primary-orange);
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .team-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .team-text h2 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 32px;
            line-height: 1.3;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .team-text p {
            color: black;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .team-image {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .team-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* Contact Section */
        .contact-section {
            padding: 0 0 0 0;
            background: #fbfbfb;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .contact-header h3 {
            color: var(--primary-orange);
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-header p {
            color: black;
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 15px;
        }

        .contact-header a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-header .subtext {
            font-size: 18px;
            color: black;
            margin-top: 20px;
            font-style: italic;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            /* background: white; */
            padding: 50px;
            border-radius: 8px;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
        }

        /* Option to hide form and show only CTA text */
        .contact-section.form-hidden .contact-form {
            display: none;
        }

        .contact-section.form-hidden {
            padding: 60px 0;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 15px;
            color: var(--dark-text);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 0px solid var(--medium-gray);
            border-radius: 0px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
            background: #f4f4f4;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            width: 40%;
            padding: 16px;
            /* background:  */
            color: black;
            border: 2px solid black;
            border-radius: 0px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fbfbfb;
        
            margin: 0px auto;
            display: block;

        }

        .submit-button:hover {
            background: var(--primary-orange);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(217, 118, 56, 0.3);
        }

        /* Footer */
        footer {
            background: #fbfbfb;
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .footer-logo {
            width: 3em;
            height: 3em;
            margin: 0 auto 20px;
            background: white;

            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--dark-text);
            font-weight: 700;
        }

        .arrow-green {
            width: 1.5em;
            height: 4em;
            vertical-align: middle;
            margin-top: 0em;
            margin-bottom: 17%;


        }

        .copyright {
            font-size: 14px;
            color: black;
        }

        /* Responsive */
        @media (max-width: 968px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 0 30px;
            }

            .hero {
                /* min-height: auto; */
                padding-top: 0px;
            }

            .hero-left {
                padding: 60px 30px;
                max-width: 100%;
            }

            .hero-right {
                position: relative;
                left: 0;
                top: 0;
                height: 400px;
                min-height: 400px;
                z-index: 1;
            }

            .hero-content h1 {

/* Particle Wave Animation */
.manifold-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .about-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation Fix - Make nav items smaller and fit */
    nav {
        gap: 8px !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 11px !important;
        padding: 8px 10px !important;
        white-space: nowrap;
    }
    
    .linkedin-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    
    /* Reduce header padding on mobile */
    header {
        padding: 15px 0 !important;
    }
    
    .header-content {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 65px;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-text h2,
    .stats-header h2,
    .team-header h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 56px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Extra small screens - even more compact nav */
    nav {
        gap: 5px !important;
    }
    
    nav a {
        font-size: 10px !important;
        padding: 6px 8px !important;
    }
    
    .linkedin-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
    }
}
