/* CSS PART 1 OF 3 - BASE STYLES & ANIMATIONS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

html, body {
  overflow-x: hidden;
}

::selection {
  background-color: #3b82f6;
  color: white;
}

html {
  scroll-behavior: smooth;
}

main {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.nav-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.3s; }
.delay-300 { animation-delay: 0.5s; }
.delay-400 { animation-delay: 0.7s; }
.delay-500 { animation-delay: 0.9s; }
.delay-600 { animation-delay: 1.1s; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 80px;
  transition: all 0.3s;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  padding: 0 0.75rem;
  background: transparent;
  border-radius: 15px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: #0f172a;
  border: none;
  cursor: pointer;
}

.nav-logo span {
  color: #3b82f6;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%), linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%), linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background-color: #0f172a;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
  background-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #f1f5f9;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu button {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: #334155;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
}

.mobile-menu .nav-cta {
  text-align: left;
  color: #3b82f6;
  font-weight: bold;
}

/* Hero Section */
.hero-content {
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 8rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 4rem;
  }
}
.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.75rem;
  color: #f1f5f9;
  font-weight: 300;
  max-width: 768px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.5s ease-out 0.8s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  padding: 1rem 2rem;
  background-color: #3b82f6;
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.btn-secondary {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-label {
  color: #3b82f6;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about-description {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
  text-align: justify;
}

.about-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.15);
}

.about-box h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.about-box p {
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.7;
}
/* CSS PART 2 OF 3 - SECTIONS & COMPONENTS */

.what-we-do-card {
  position: relative;
  background-color: #0f172a;
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #334155;
}

.what-we-do-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(50%, -50%);
}

.what-we-do-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.what-we-do-title svg {
  color: #60a5fa;
  margin-right: 0.75rem;
  width: 2rem;
  height: 2rem;
}

.what-we-do-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.what-we-do-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s;
}

.what-we-do-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.what-we-do-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.what-we-do-item span {
  font-weight: 500;
  font-size: 1.125rem;
}

.what-we-do-quote {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #94a3b8;
  font-style: italic;
  border-top: 1px solid #334155;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}

/* Vision Section */
.vision-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.vision-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vision-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-card:nth-child(1),
  .vision-card:nth-child(2),
  .vision-card:nth-child(3),
  .vision-card:nth-child(4) {
    grid-column: span 1;
  }
}

.vision-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.3);
}

.vision-card svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
}

.vision-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.vision-card p {
  color: #cbd5e1;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Sectors Section */
.sectors-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.sectors-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sector-card:nth-child(1),
  .sector-card:nth-child(2),
  .sector-card:nth-child(3),
  .sector-card:nth-child(4),
  .sector-card:nth-child(5),
  .sector-card:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

.sector-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid;
  transition: all 0.3s;
}

.sector-card:hover {
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.sector-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.sector-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.sector-card ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: #475569;
}

.sector-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.sector-card li::marker {
  color: #cbd5e1;
}

/* Leadership Section - Modern Redesign */
.leadership-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.leadership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leadership-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #475569;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.leadership-header strong {
  color: #3b82f6;
}

.leadership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 4rem;
}

.leader-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
  box-sizing: border-box;
  flex: 0 1 280px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.leader-card:hover::before {
  opacity: 1;
}

.leader-card:hover {
  box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.25);
  transform: translateY(-8px);
  border-color: #3b82f6;
}

.leader-card > h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.leader-card > p {
  margin-top: auto;
  font-size: 0.875rem;
}

.leader-avatar {
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 3px solid #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.leader-card:hover .leader-avatar {
  border-color: #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.leader-card h3 {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.leader-card p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.modal-content {
  background-color: white;
  border-radius: 1rem;
  max-width: 768px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f172a;
}

.modal-header p {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.modal-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s;
  padding: 0.5rem;
}

.modal-close:hover {
  color: #0f172a;
}

.modal-body {
  padding: 2rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}
/* CSS PART 3 OF 3 - MODERN LEADERSHIP PRINCIPLES & CONTACT */

/* Leadership Principles Box - COMPLETE MODERN REDESIGN */
.leadership-principles-box {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 2.5rem;
  border-radius: 2rem;
  margin-top: 4rem;
  box-shadow: 0 20px 60px -15px rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.leadership-principles-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.leadership-principles-box::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.principles-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.principles-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.principles-header p {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 400;
}

/* Modern Grid with Asymmetric Layout */
.leadership-principles-modern-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.leadership-principle-modern {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.leadership-principle-modern.large {
  grid-column: span 7;
}

.leadership-principle-modern.medium {
  grid-column: span 5;
}

.leadership-principle-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--principle-color);
  opacity: 0;
  transition: opacity 0.4s;
}

.leadership-principle-modern:hover::before {
  opacity: 1;
}

.leadership-principle-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--principle-color);
}

.principle-icon-wrapper {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--principle-color);
  opacity: 0.1;
  border-radius: 1rem;
  transition: all 0.4s;
}

.leadership-principle-modern:hover .principle-icon-bg {
  opacity: 0.2;
  transform: scale(1.1);
}

.principle-icon {
  color: var(--principle-color);
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 1;
}

.principle-content h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.principle-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.principle-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--principle-color);
  opacity: 0.08;
  line-height: 1;
}

/* Leadership Impact Section - Modern */
.leadership-impact-section {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.impact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.impact-header h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.leadership-impact-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .leadership-impact-modern-grid {
    grid-template-columns: 1fr;
  }
}

.leadership-impact-modern-item {
  display: flex;
  align-items: start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 0.75rem;
  border-left: 3px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.leadership-impact-modern-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.impact-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
}

.leadership-impact-modern-item span {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Shared Value Section - Modern */
.shared-value-section {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.shared-value-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.shared-value-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.shared-value-modern-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  color: #3b82f6;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid #3b82f6;
  transition: all 0.3s;
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
}

.shared-value-modern-tag:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.shared-value-modern-tag svg {
  color: inherit;
}

/* Collaboration Section - Modern */
.collaboration-section {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.collaboration-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.collaboration-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.collaboration-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .collaboration-partners-grid {
    grid-template-columns: 1fr;
  }
}

.collaboration-partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #10b981;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9375rem;
  transition: all 0.3s;
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
}

.collaboration-partner-item:hover {
  background: #10b981;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.25);
}

.collaboration-partner-item svg {
  width: 1rem;
  height: 1rem;
  color: inherit;
}

/* People-Centered Section - Modern */
.people-centered-section {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

.people-centered-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.culture-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.culture-value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #0ea5e9;
  font-weight: 500;
  color: #0f172a;
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.culture-value-item:hover {
  background: #0ea5e9;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(14, 165, 233, 0.25);
}

.culture-value-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: inherit;
}

.culture-quote {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border-left: 4px solid #0ea5e9;
}

.culture-quote p {
  color: #0ea5e9;
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

/* Contact Section */
.contact-container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #3b82f6;
  color: white;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.contact-btn:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.global-presence {
  margin-top: 3rem;
}

.global-presence p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 600;
}

footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .leadership-principles-modern-grid {
    grid-template-columns: 1fr;
  }

  .leadership-principle-modern.large,
  .leadership-principle-modern.medium {
    grid-column: span 1;
  }

  .principles-header h3 {
    font-size: 1.875rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}