Company Culture Section

Intermediate

A modern company culture showcase section with team values, mission statement, and interactive elements

Live Preview

Code Implementation

HTML
<section class="company-culture-section">
  <div class="container">
    <!-- Header -->
    <div class="section-header">
      <h2 class="section-title">Our Company Culture</h2>
      <p class="section-subtitle">Building a workplace where innovation thrives and people grow</p>
    </div>

    <!-- Mission Statement -->
    <div class="mission-statement">
      <div class="mission-content">
        <h3 class="mission-title">Our Mission</h3>
        <p class="mission-text">
          We believe in creating technology that empowers people and transforms businesses. 
          Our mission is to deliver innovative solutions while fostering a culture of 
          collaboration, creativity, and continuous learning.
        </p>
      </div>
      <div class="mission-visual">
        <div class="mission-icon">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
          </svg>
        </div>
      </div>
    </div>

    <!-- Core Values -->
    <div class="values-section">
      <h3 class="values-title">Our Core Values</h3>
      <div class="values-grid">
        <div class="value-card" data-value="innovation">
          <div class="value-icon">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
              <circle cx="12" cy="12" r="5"/>
              <line x1="12" y1="1" x2="12" y2="3"/>
              <line x1="12" y1="21" x2="12" y2="23"/>
              <line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>
              <line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
              <line x1="1" y1="12" x2="3" y2="12"/>
              <line x1="21" y1="12" x2="23" y2="12"/>
              <line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>
              <line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
            </svg>
          </div>
          <h4 class="value-name">Innovation</h4>
          <p class="value-description">We embrace new ideas and technologies to solve complex problems</p>
        </div>

        <div class="value-card" data-value="collaboration">
          <div class="value-icon">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
            </svg>
          </div>
          <h4 class="value-name">Collaboration</h4>
          <p class="value-description">Together we achieve more than we ever could alone</p>
        </div>

        <div class="value-card" data-value="integrity">
          <div class="value-icon">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
            </svg>
          </div>
          <h4 class="value-name">Integrity</h4>
          <p class="value-description">We do the right thing, even when no one is watching</p>
        </div>

        <div class="value-card" data-value="growth">
          <div class="value-icon">
            <svg viewBox="0 0 24 24" fill="none" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
            </svg>
          </div>
          <h4 class="value-name">Growth</h4>
          <p class="value-description">Continuous learning and improvement drive our success</p>
        </div>
      </div>
    </div>

    <!-- Statistics -->
    <div class="stats-section">
      <div class="stats-grid">
        <div class="stat-item">
          <div class="stat-number" data-target="150">0</div>
          <div class="stat-label">Team Members</div>
        </div>
        <div class="stat-item">
          <div class="stat-number" data-target="50">0</div>
          <div class="stat-label">Countries</div>
        </div>
        <div class="stat-item">
          <div class="stat-number" data-target="98">0</div>
          <div class="stat-label">Client Satisfaction</div>
          <div class="stat-suffix">%</div>
        </div>
        <div class="stat-item">
          <div class="stat-number" data-target="5">0</div>
          <div class="stat-label">Years of Excellence</div>
        </div>
      </div>
    </div>
  </div>
</section>

Snippet Features

Responsive Design: Yes
Dark Mode Support: No
Category: feature-sections
Difficulty Level: Intermediate