templates/partials/partialsHome/_company.html.twig line 1

Open in your IDE?
  1. <section id="company-profile" class="py-20 bg-gradient-to-b from-blue-50 to-white">
  2.     <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
  3.         <div class="text-center mb-16" data-aos="fade-up">
  4.             <h2 id="company-profile-heading" class="text-4xl font-extrabold text-primary-blue mb-4">
  5.                 {{ 'profile.heading'|trans }}
  6.             </h2>
  7.             <p id="company-profile-subtext" class="text-xl text-gray-600 max-w-3xl mx-auto">
  8.                 {{ 'profile.subtext'|trans }}
  9.             </p>
  10.         </div>
  11.         <div class="grid md:grid-cols-2 gap-12 items-center mb-16">
  12.             <div data-aos="fade-right">
  13.                 <div class="bg-white p-8 rounded-2xl shadow-xl border-l-4 border-gold">
  14.                     <h3 id="mission-heading" class="text-2xl font-bold text-primary-blue mb-4">{{ 'profile.mission.heading'|trans }}</h3>
  15.                     <p id="mission-text" class="text-gray-700 mb-6">
  16.                         {{ 'profile.mission.text'|trans }}
  17.                     </p>
  18.                     <h3 id="vision-heading" class="text-2xl font-bold text-primary-blue mb-4">{{ 'profile.vision.heading'|trans }}</h3>
  19.                     <p id="vision-text" class="text-gray-700">
  20.                         {{ 'profile.vision.text'|trans }}
  21.                     </p>
  22.                 </div>
  23.             </div>
  24.             <div data-aos="fade-left">
  25.                 <div class="bg-white p-8 rounded-2xl shadow-xl border-l-4 border-red">
  26.                     <h3 id="values-heading" class="text-2xl font-bold text-primary-blue mb-4">{{ 'profile.values.heading'|trans }}</h3>
  27.                     <div class="space-y-4">
  28.                         <div class="flex items-start">
  29.                             <div class="bg-gold p-2 rounded-lg mr-4 mt-1">
  30.                                 <i class="fas fa-handshake text-primary-blue"></i>
  31.                             </div>
  32.                             <div>
  33.                                 <h4 id="value-trust" class="font-bold text-gray-800 mb-1">{{ 'profile.values.trust'|trans }}</h4>
  34.                                 <p id="value-trust-desc" class="text-gray-600 text-sm">{{ 'profile.values.trust_desc'|trans }}</p>
  35.                             </div>
  36.                         </div>
  37.                         <div class="flex items-start">
  38.                             <div class="bg-primary-blue p-2 rounded-lg mr-4 mt-1">
  39.                                 <i class="fas fa-bolt text-white"></i>
  40.                             </div>
  41.                             <div>
  42.                                 <h4 id="value-efficiency" class="font-bold text-gray-800 mb-1">{{ 'profile.values.efficiency'|trans }}</h4>
  43.                                 <p id="value-efficiency-desc" class="text-gray-600 text-sm">{{ 'profile.values.efficiency_desc'|trans }}</p>
  44.                             </div>
  45.                         </div>
  46.                         <div class="flex items-start">
  47.                             <div class="bg-red p-2 rounded-lg mr-4 mt-1">
  48.                                 <i class="fas fa-users text-white"></i>
  49.                             </div>
  50.                             <div>
  51.                                 <h4 id="value-customer" class="font-bold text-gray-800 mb-1">{{ 'profile.values.customer'|trans }}</h4>
  52.                                 <p id="value-customer-desc" class="text-gray-600 text-sm">{{ 'profile.values.customer_desc'|trans }}</p>
  53.                             </div>
  54.                         </div>
  55.                         <div class="flex items-start">
  56.                             <div class="bg-green-500 p-2 rounded-lg mr-4 mt-1">
  57.                                 <i class="fas fa-leaf text-white"></i>
  58.                             </div>
  59.                             <div>
  60.                                 <h4 id="value-sustainability" class="font-bold text-gray-800 mb-1">{{ 'profile.values.sustainability'|trans }}</h4>
  61.                                 <p id="value-sustainability-desc" class="text-gray-600 text-sm">{{ 'profile.values.sustainability_desc'|trans }}</p>
  62.                             </div>
  63.                         </div>
  64.                     </div>
  65.                 </div>
  66.             </div>
  67.         </div>
  68.         <div class="mb-16" data-aos="fade-up">
  69.             <h3 id="history-heading" class="text-3xl font-bold text-primary-blue mb-8 text-center">{{ 'profile.history.heading'|trans }}</h3>
  70.             <div class="bg-white p-8 rounded-2xl shadow-xl">
  71.                 <p id="history-text" class="text-gray-700 text-lg mb-6">
  72.                     {{ 'profile.history.text1'|trans }}
  73.                 </p>
  74.                 <p id="history-text-2" class="text-gray-700 text-lg">
  75.                     {{ 'profile.history.text2'|trans }}
  76.                 </p>
  77.             </div>
  78.         </div>
  79.     </div>
  80. </section>