mithunparambath commited on
Commit
d2da894
·
verified ·
1 Parent(s): 1da6073

In Success story CEO name is Dr Mithun Parambath please edit and cjange colour of vision section of NanoMatter

Browse files
Files changed (2) hide show
  1. index.html +7 -7
  2. style.css +17 -0
index.html CHANGED
@@ -88,24 +88,24 @@
88
  <div class="relative">
89
  <div class="bg-gradient-to-br from-orange-50 to-white rounded-2xl p-8 transform rotate-1 border border-orange-100 shadow-sm">
90
  <div class="bg-white rounded-xl p-6 transform -rotate-1">
91
- <h4 class="text-xl font-semibold mb-4 text-orange-500">Global Presence</h4>
92
  <div class="space-y-3">
93
  <div class="flex items-center gap-3">
94
- <i data-feather="map-pin" class="text-orange-500"></i>
95
- <span class="text-gray-700">India - R&D & Manufacturing Hub</span>
96
  </div>
97
  <div class="flex items-center gap-3">
98
- <i data-feather="map-pin" class="text-orange-500"></i>
99
- <span class="text-gray-700">Germany - European Operations</span>
100
  </div>
101
- </div>
102
  </div>
103
  </div>
104
  </div>
105
  </div>
106
  </div>
107
  </section>
108
- <!-- Technologies Section -->
109
  <section id="technologies" class="py-20 px-4 bg-white">
110
  <div class="max-w-6xl mx-auto">
111
  <div class="text-center mb-16">
 
88
  <div class="relative">
89
  <div class="bg-gradient-to-br from-orange-50 to-white rounded-2xl p-8 transform rotate-1 border border-orange-100 shadow-sm">
90
  <div class="bg-white rounded-xl p-6 transform -rotate-1">
91
+ <h4 class="text-xl font-semibold mb-4 text-orange-500">Leadership</h4>
92
  <div class="space-y-3">
93
  <div class="flex items-center gap-3">
94
+ <i data-feather="user" class="text-orange-500"></i>
95
+ <span class="text-gray-700">CEO: Dr Mithun Parambath</span>
96
  </div>
97
  <div class="flex items-center gap-3">
98
+ <i data-feather="award" class="text-orange-500"></i>
99
+ <span class="text-gray-700">Visionary Leadership</span>
100
  </div>
101
+ </div>
102
  </div>
103
  </div>
104
  </div>
105
  </div>
106
  </div>
107
  </section>
108
+ <!-- Technologies Section -->
109
  <section id="technologies" class="py-20 px-4 bg-white">
110
  <div class="max-w-6xl mx-auto">
111
  <div class="text-center mb-16">
style.css CHANGED
@@ -1,3 +1,4 @@
 
1
  body {
2
  padding: 2rem;
3
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
@@ -26,3 +27,19 @@ p {
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  body {
3
  padding: 2rem;
4
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
27
  .card p:last-child {
28
  margin-bottom: 0;
29
  }
30
+
31
+ /* Vision section styling */
32
+ .vision-section {
33
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
34
+ color: white;
35
+ }
36
+
37
+ .vision-section h2,
38
+ .vision-section h3,
39
+ .vision-section h4 {
40
+ color: white;
41
+ }
42
+
43
+ .vision-section p {
44
+ color: rgba(255, 255, 255, 0.9);
45
+ }