<<<<<<< HEAD

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1E3A8A;
  --primary-dark: #1a2f6b;
  --primary-light: #0074D9;
  --accent: #FFA500;
  --accent-dark: #E89500;
  --accent-light: #FFB84D;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s;
  height: auto;
  min-height: 100px;
}

.navbar {
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-image {
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

main {
  padding-top: 120px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section.image-hero {
  background: #000;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.video-overlay, .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.image-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.product-card[data-aos='zoom-in']:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card[data-aos='zoom-in']:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card[data-aos='zoom-in']:nth-child(3) {
  animation-delay: 0.3s;
}

.aos-animate .product-card {
  opacity: 1;
  transform: translateY(0);
}

.product-card[data-aos='zoom-in']:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card[data-aos='zoom-in']:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card[data-aos='zoom-in']:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Small utility to tint specific words blue (primary brand color) */
.text-blue {
  color: var(--primary);
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Trusted By Section */
.trusted-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

/* Partners Section with Animated Marquee */
.partners-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.partners-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Partners Logos Grid */
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.circular-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 200px;
}

.circular-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.circular-logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1.05);
}

.circular-logo img[src$=".svg"] {
  width: 70%;
  height: 70%;
  filter: brightness(1) contrast(1.2);
}

.circular-logo-container:hover .circular-logo {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
  border-color: var(--accent);
}

.circular-logo-container:hover img {
  transform: scale(1.1);
}

.logo-caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.circular-logo-container:hover .logo-caption {
  color: var(--primary);
}

@media (max-width: 768px) {
  .partners-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
  }
  
  .circular-logo {
    width: 120px;
    height: 120px;
    padding: 15px;
  }
  
  .logo-caption {
    font-size: 12px;
  }
}

/* Features Showcase */
.features-showcase {
  padding: 120px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  z-index: 10;
}

.product-card.featured {
  background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xl);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.08);
  /* make all product icons visually uniform and match the featured card */
  border-radius: 16px;
  width: 280px; /* uniform visual size */
  max-width: 100%;
  padding: 24px;
  margin: 0 auto 24px;
  color: var(--accent);
  transition: all 0.3s;
  transform: scale(1);
}

.product-icon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.product-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-card.featured .product-icon {
  /* featured card mirrors the same dimensions so all logos look identical */
  width: 280px;
  padding: 24px;
  border-radius: 16px;
  animation: pulse 2s infinite;
}

@media (max-width: 992px) {
  .product-icon {
    width: 220px;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .product-icon {
    width: 160px;
    padding: 12px;
  }
}
.product-icon.brand-blue {
  background: rgba(28, 117, 188, 0.08);
  border: 2px solid rgba(28, 117, 188, 0.14);
  box-shadow: 0 6px 18px rgba(28,117,188,0.06);
}

.product-icon.brand-green {
  background: rgba(0, 148, 68, 0.08);
  border: 2px solid rgba(0, 148, 68, 0.14);
  box-shadow: 0 6px 18px rgba(0,148,68,0.06);
}

.product-icon.brand-red {
  background: rgba(176, 32, 38, 0.08);
  border: 2px solid rgba(176, 32, 38, 0.14);
  box-shadow: 0 6px 18px rgba(176,32,38,0.06);
}

.product-card.brand-blue {

  background: linear-gradient(180deg, rgba(28,117,188,0.08) 0%, rgba(28,117,188,0.04) 100%);
  border-color: rgba(28,117,188,0.22);
  box-shadow: inset 6px 0 0 rgba(28,117,188,0.08);
}

.product-card.brand-green {
  background: linear-gradient(180deg, rgba(0,148,68,0.08) 0%, rgba(0,148,68,0.04) 100%);
  border-color: rgba(0,148,68,0.22);
  box-shadow: inset 6px 0 0 rgba(0,148,68,0.08);
}

.product-card.brand-red {
  background: linear-gradient(180deg, rgba(176,32,38,0.08) 0%, rgba(176,32,38,0.04) 100%);
  border-color: rgba(176,32,38,0.22);
  box-shadow: inset 6px 0 0 rgba(176,32,38,0.08);
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--heading);
}

.product-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 80px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 0;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.2s;
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.product-features li:hover {
  color: var(--heading);
  background: rgba(0, 0, 0, 0.03);
  transform: translateX(4px);
}

.product-features svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.product-cta:hover {
  gap: 12px;
}

.product-video-preview {
  margin-top: 24px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.video-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Special Features Section */
.special-features-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.features-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-showcase-card {
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.feature-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-showcase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-showcase-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-showcase-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -2px;
}

/* Demo Section */
.demo-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.demo-feature {
  display: flex;
  gap: 16px;
}

.demo-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.demo-feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.demo-feature p {
  font-size: 15px;
  color: var(--text-secondary);
}

.demo-visual {
  position: relative;
}

.demo-window {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.demo-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.window-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-window-content {
  padding: 24px;
  background: var(--bg-secondary);
}

.demo-interface {
  display: flex;
  gap: 16px;
}

.demo-sidebar {
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-menu-item {
  padding: 12px;
  background: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.demo-menu-item.active {
  background: var(--primary);
  color: white;
}

.demo-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-stat-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
}

.demo-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.demo-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.demo-stat-change {
  font-size: 13px;
  color: #10b981;
}

.demo-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
  padding: 20px;
  background: white;
  border-radius: 8px;
}

.chart-bar {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}

@keyframes growBar {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: 16px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-title {
  font-size: 14px;
  color: var(--text-secondary);
}


.services-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: flex;
  gap: 24px;
}

.service-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.2);
  line-height: 1;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.visual-card {
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.visual-card.card-1 {
  grid-column: 1 / -1;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.card-stat {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.card-label {
  font-size: 14px;
  color: var(--text-secondary);
}


.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-secondary);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cta-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}


.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 20px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .services-content,
  .demo-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-title {
    font-size: 36px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .partners-title {
    font-size: 28px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .marquee-content {
    gap: 30px;
    padding: 0 20px;
    animation: scroll-smooth 30s linear infinite;
  }

  .logo-card {
    height: 100px;
  }

  .logo-image {
    max-width: 140px;
    max-height: 100px;
  }

  .logos-marquee {
    padding: 30px 0;
  }

  .logos-marquee::before,
  .logos-marquee::after {
    width: 60px;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 25px 0;
  text-align: center;
  margin-top: 12px;
}

.page-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 8px;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}


.about-content {
  padding: 120px 0 60px;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-timeline {
  padding: 60px 0;
  background: transparent;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.products-showcase {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.showcase-item {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.showcase-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.showcase-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-icon img {
  transform: scale(1.1);
}

.showcase-details h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.showcase-details p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .showcase-icon img {
    width: 120px;
    height: 120px;
  }
  
  .showcase-item {
    padding: 30px;
  }
}

.values-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background-color: transparent;
}

.values-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.values-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  position: relative;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.value-card:hover .value-badge {
  background: var(--primary);
  color: white;
}

.mission-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.vision-roadmap {
  margin-top: 24px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.roadmap-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}

.roadmap-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.value-card:hover .roadmap-dot::before {
  opacity: 0.3;
  width: 32px;
  height: 32px;
}

.roadmap-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.values-list {
  margin-top: 24px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.value-icon-small {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 8px;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.value-card:hover .value-icon-small {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.value-text {
  display: flex;
  flex-direction: column;
}

.value-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.value-text span {
  font-size: 14px;
  color: var(--text-secondary);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.value-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.value-card:hover .value-icon svg path,
.value-card:hover .value-icon svg circle {
  stroke: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon .mission-point,
.value-card:hover .value-icon .vision-circle {
  fill: white;
}

.value-content {
  text-align: center;
}

.value-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.value-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.value-card:hover .value-content h3::after {
  width: 60px;
}

.value-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Mission Card Specifics */
.mission-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s ease;
}

.mission-circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s ease;
}

.value-card:hover .mission-path,
.value-card:hover .mission-circle {
  stroke-dashoffset: 0;
}

/* Vision Card Specifics */
.vision-path {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.8s ease;
}

.vision-beam {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.6s ease;
}

.value-card:hover .vision-path,
.value-card:hover .vision-beam {
  stroke-dashoffset: 0;
}

/* Values Card Specifics */
.values-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
}

.values-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.values-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.value-card:hover .values-list li::before {
  transform: translateX(4px);
}

.values-path-1 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1s ease;
}

.values-path-2 {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.8s ease;
}

.value-card:hover .values-path-1,
.value-card:hover .values-path-2 {
  stroke-dashoffset: 0;
}

.value-icon svg {
  width: 48px;
  height: 48px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}


.services-detail-section {
  padding: 120px 0;
  background: white;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
}

.service-detail-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.service-benefits li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

.service-detail-image {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.service-image-single {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 24px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}

.service-image:hover {
  transform: scale(1.05);
  background: white;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .service-image-single {
    padding: 20px;
  }
  
  .service-image {
    max-width: 240px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .service-image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-image {
    height: 120px;
  }
}


.team-section {
  padding: 120px 0;
  background: white;
}

.circular-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.circular-team-card {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.circular-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.circular-team-container {
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.circular-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  margin: 0;
  padding: 0;
}

.circular-team-card:hover .circular-team-image {
  transform: scale(1.1);
}

.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.team-member-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.team-member-bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* References Section Styles */
.references-section {
  padding: 80px 0;
  background: white;
}

.references-grid {
  margin-top: 60px;
}

.reference-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.reference-cards {
  display: grid;
  gap: 24px;
}

.reference-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reference-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.reference-content {
  flex: 1;
}

.reference-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.reference-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.reference-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.reference-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.download-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .reference-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .reference-meta {
    justify-content: center;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .circular-team-container {
    width: 160px;
    height: 160px;
  }
  
  .team-member-name {
    font-size: 20px;
  }
}

.team-card {
  text-align: center;
  transition: all 0.3s;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.team-image {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

/* Circular Team Design */
.circular-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
  margin-top: 60px;
}

/* Tree layout for team executives */
.team-tree {
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 12px;
}
.team-tree .tree-level {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  margin-bottom: 24px;
  align-items: flex-start;
}

/* subtle vertical connector from a node to the level below */
.team-tree .tree-level:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 2px;
  height: 20px;
  background: rgba(17,24,39,0.06);
  transform: translateX(-50%);
  z-index: 0;
}

/* horizontal branch above a level with multiple nodes */
.team-tree .tree-level-2::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -20px;
  height: 2px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
  border-radius: 2px;
}

.team-tree .tree-level-2 {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.team-tree .tree-node {
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* Make execs slightly larger and more prominent */
.tree-level-0 .tree-node,
.tree-level-1 .tree-node {
  width: 380px;
}
.tree-level-0 .circular-team-container,
.tree-level-1 .circular-team-container {
  width: 200px;
  height: 200px;
}

@media (max-width: 768px) {
  .team-tree .tree-node {
    max-width: 100%;
    width: 100%;
  }
  .team-tree .tree-level-2::before {
    left: 5%;
    right: 5%;
  }
  .tree-level-0 .circular-team-container,
  .tree-level-1 .circular-team-container {
    width: 140px;
    height: 140px;
  }
}

/* Branch-specific styles (children under a branch) */
.tree-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 8px;
}

.tree-branch {
  flex: 1 1 0;
  min-width: 220px;
}

.tree-branch::after {
  /* vertical connector from parent node down to children */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
}


.tree-children {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.tree-children::before {
  /* horizontal connector above children */
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  width: calc(100% - 40px);
  height: 2px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
  border-radius: 2px;
}

.tree-children .child-node {
  width: 220px;
  max-width: 220px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .tree-branch::after {
    display: none;
  }
  .tree-children::before {
    display: none;
  }
  .tree-children {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
}

/* Role-only box used for structure-only nodes */

.role-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 120px;
  background: var(--bg-secondary);
  border: 1px solid rgba(17,24,39,0.04);
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.tree-node .role-box {
  height: 120px;
  width: 220px;
}

@media (max-width: 768px) {
  .role-box {
    width: 100%;
    height: 100px;
  }
}

.circular-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 32px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

.circular-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
  border-color: var(--primary);
}

.circular-team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.circular-team-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .circular-team-container {
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.25);
  transform: scale(1.1);
}

.circular-team-card:hover .circular-team-container::before {
  opacity: 1;
}

.circular-team-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.circular-team-card:hover .circular-team-image {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.05);
}

.team-member-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .team-member-name {
  color: var(--primary);
}

.team-member-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .team-member-role {
  font-weight: 700;
}

.team-member-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* New team layout helpers */
.team-executives .exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.role-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Hierarchical role sections (parent + subordinates) */
.role-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 1;
}

.role-parent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-weight: 700;
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(30,58,138,0.15);
}

.role-subsection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 3px solid rgba(30,58,138,0.2);
}

@media (max-width: 768px) {
  .team-executives .exec-grid {
    grid-template-columns: 1fr;
  }

  .role-subsection {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.contact-section {
  padding: 120px 0;
  background: white;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 24px;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-secondary);
}

.careers-section {
  padding: 120px 0;
  background: white;
}

.news-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.news-page-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    flex: 1;
}

.news-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.site-footer.news-footer {
    margin-top: auto;
    width: 100%;
}

.careers-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.careers-intro h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.careers-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.jobs-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.job-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.job-type {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.job-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.job-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.clients-section {
  padding: 120px 0;
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: center;
}

.client-card {
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.client-logo {
  font-size: 48px;
  margin-bottom: 16px;
}

.client-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.client-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.client-quote {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Clients Logos Section with Circular Containers */
.clients-logos-section {
  padding: 120px 0;
  background: white;
}

.circular-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px 40px;
  align-items: center;
  justify-items: center;
  margin-top: 60px;
}

.circular-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover {
  transform: translateY(-8px);
}

.circular-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.circular-logo-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover .circular-logo-container {
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.25);
  transform: scale(1.1);
}

.circular-logo-card:hover .circular-logo-container::before {
  opacity: 1;
}

.circular-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.circular-logo-card:hover .circular-logo {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.05);
}

.circular-logo-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover h3 {
  color: var(--primary);
}

.products-page-section {
  padding: 120px 0;
  background: white;
}


.news-page-section {
  padding: 80px 0 0 0;
  background: white;
}

.news-page-section.no-bottom-space {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.news-article-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  animation: slideUp 0.5s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Social cards for external links (Facebook posts) */
.news-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.social-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(17,24,39,0.06);
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.08);
}

.social-card .social-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-card .social-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.social-card .social-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.news-article-card:hover {
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.2);
  transform: translateY(-10px);
  border-color: var(--primary);
}

.news-article-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.news-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.news-article-card:hover .news-article-image img {
  transform: scale(1.08);
}

.news-article-additional-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
  padding: 0 16px 16px;
}

.news-article-additional-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.news-article-additional-images img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.news-article-header {
  margin-bottom: 0;
  border-bottom: none;
  padding: 24px 24px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
  background: #fafafa;
}

.news-article-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
  word-break: break-word;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-article-date {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-article-videos-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 16px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.news-article-videos-indicator .video-icon {
  color: #dc3545;
  font-weight: bold;
  font-size: 16px;
}

.news-article-videos-indicator .video-count {
  color: #495057;
  font-size: 14px;
  font-weight: 500;
}

.news-article-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0;
  flex-grow: 1;
  word-wrap: break-word;
  white-space: pre-wrap;
  padding: 16px 24px;
  background: white;
}

.news-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid #e0e0e0;
}

.news-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(255, 107, 0, 0.15) 100%);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.no-news-message {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(255, 107, 0, 0.04) 100%);
  border-radius: 16px;
  margin: 40px 0;
}

.no-news-icon {
  font-size: 72px;
  margin-bottom: 24px;
  display: block;
  animation: bounce 2s infinite;
}

.no-news-message h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.no-news-message p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.no-news-subtext {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .no-news-message {
    padding: 80px 20px;
  }

  .no-news-icon {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .no-news-message h2 {
    font-size: 28px;
  }

  .no-news-message p {
    font-size: 14px;
  }

  .about-grid,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .circular-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .circular-team-container {
    width: 130px;
    height: 130px;
  }

  .team-member-name {
    font-size: 16px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .circular-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px 20px;
  }

  .circular-logo-container {
    width: 130px;
    height: 130px;
  }

  .circular-logo-card h3 {
    font-size: 14px;
  }

  .news-grid-page {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* News Modal Styles */
.news-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.news-modal-content {
  background-color: white;
  margin: auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.news-modal.active .news-modal-content {
  transform: translateY(0);
}

.news-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #eee;
}

.news-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
}

.news-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.news-modal-close:hover {
  background-color: #f0f0f0;
  color: #333;
}

.news-modal-body {
  padding: 24px;
}

.news-modal-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.news-modal-body p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  font-size: 16px;
}

.read-more-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 12px;
}

.read-more-link:hover {
  color: #ff6b00;
}

/* News Modal Slideshow Styles */
.news-modal-slideshow {
  position: relative;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  margin: auto;
}

.slide {
  display: none;
  animation-name: fade;
  animation-duration: 1.5s;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slideshow-dots {
  text-align: center;
  padding: 16px 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: var(--primary);
}

.news-modal-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 70vh;
  object-fit: contain;
}

.news-modal-video {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
  .slide img {
    max-height: 250px;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slide img {
    max-height: 200px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 14px;
  }
  
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 2px;
  }
}

.admin-body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

.admin-container {
  display: flex;
  min-height: 100vh;
  gap: 0;
}


.admin-sidebar {
  width: 280px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 40px 24px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.admin-logo {
  margin-bottom: 48px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 24px;
}

.admin-logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.admin-logo p {
  font-size: 12px;
  color: #999;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-nav-item {
  display: block;
  padding: 14px 16px;
  color: #ccc;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 18px;
}


.admin-main {
  margin-left: 280px;
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}


.admin-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.4s ease-out;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.admin-section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.4s ease-out;
}

.news-card:hover {
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  word-break: break-word;
}

.news-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.news-meta span {
  font-size: 12px;
  color: #999;
}

.news-actions {
  display: flex;
  gap: 12px;
}

.btn-icon {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: rgba(255, 107, 0, 0.1);
  color: darken(#ff6b00, 10%);
}

.contacts-table {
  width: 100%;
  border-collapse: collapse;
}

.contacts-table thead {
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}

.contacts-table th {
  padding: 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.contacts-table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.contacts-table tbody tr {
  transition: all 0.2s ease;
}

.contacts-table tbody tr:hover {
  background: #f9f9f9;
}

.contacts-table tbody tr:last-child td {
  border-bottom: none;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background: #e0e0e0;
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  animation: slideUp 0.3s ease-out;
}

.alert-error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

.alert-success {
  background: #efe;
  border: 1px solid #cfc;
  color: #3c3;
}

.alert-info {
  background: #eef;
  border: 1px solid #ccf;
  color: #33c;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.image-upload-wrapper {
  margin: 12px 0;
}

.image-upload-wrapper input[type="file"] {
  display: block;
  padding: 12px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.image-upload-wrapper input[type="file"]:hover {
  border-color: var(--primary);
  background: rgba(30, 58, 138, 0.05);
}

.image-preview {
  margin-top: 16px;
}

.preview-image {
  text-align: center;
}

.preview-image img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preview-image p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.admin-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-login-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

.admin-login-card .admin-logo {
  text-align: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.admin-login-card .admin-logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.admin-login-card .admin-logo p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


@media (max-width: 768px) {
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 24px;
    box-shadow: none;
    border-bottom: 2px solid #e0e0e0;
  }

  .admin-logo {
    margin-bottom: 16px;
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .admin-nav-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  .admin-main {
    margin-left: 0;
    padding: 20px;
  }

  .admin-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .contacts-table {
    font-size: 12px;
  }

  .contacts-table th,
  .contacts-table td {
    padding: 12px 8px;
  }

  .admin-login-card {
    padding: 32px 24px;
  }
}

/* Clients Section with White Background */
.clients-section {
  background: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.clients-section .section-header {
  color: var(--text-primary);
}

.clients-section .section-badge {
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary);
}

.clients-section .section-title {
  color: var(--text-primary);
}

.clients-section .section-description {
  color: var(--text-secondary);
}

/* Clients logos grid (simple, clean layout) */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 60px 50px;
  justify-items: center;
  align-items: center;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.client-logo-image {
  max-width: 140px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-item:hover .client-logo-image {
  transform: scale(1.1);
}

.client-name-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.client-item:hover .client-name-text {
  color: var(--primary);
}

@media (max-width: 992px) {
  .clients-section {
    padding: 80px 0;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px 32px;
    padding: 32px 15px;
  }

  .client-logo-image {
    max-width: 110px;
    max-height: 110px;
  }

  .client-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    padding: 24px 10px;
  }

  .client-logo-image {
    max-width: 80px;
    max-height: 80px;
  }

  .client-name-text {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .clients-logos-grid .circular-logo-container {
    width: 160px;
  }

  .clients-logos-grid .circular-logo {
    width: 140px;
    height: 140px;
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .clients-logos-grid {
    gap: 20px;
    padding: 24px 0;
  }

  .clients-logos-grid .circular-logo-container {
    width: 120px;
  }

  .clients-logos-grid .circular-logo {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
}

/* ===== ORGANIZATIONAL CHART ===== */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.org-level {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
}

.org-level-1 {
  margin-bottom: 10px;
  justify-content: center;
}

.org-level-2-pegg {
  margin: 40px 0;
  justify-content: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.org-level-3 {
  margin: 40px 0;
  justify-content: center;
  gap: 100px;
  align-items: stretch;
}

.org-level-4 {
  margin-top: 60px;
  justify-content: center;
  gap: 100px;
  width: 100%;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* Executive Cards */
.exec-card {
  max-width: 300px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.exec-card-secondary {
  max-width: 300px;
  padding: 40px 32px;
  border-width: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.exec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: var(--primary);
}

.exec-card-secondary:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: var(--primary);
}

.exec-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exec-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.exec-image:hover {
  transform: scale(1.05);
}

.exec-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.exec-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.exec-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Connector Lines */
.org-connector-vertical {
  width: 3px;
  height: 50px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
  box-shadow: 0 2px 6px rgba(30, 58, 138, 0.2);
}

.org-connector-vertical.small-connector {
  height: 30px;
}

/* Individual connector lines from department heads */
.connector-line {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
}

.finance-connector,
.civil-connector,
.it-connector {
  width: 2px;
  height: 40px;
  background: var(--primary);
}

/* Horizontal connector lines for subordinates */
.connector-horizontal {
  position: relative;
  height: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.civil-horizontal {
  width: 60%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.civil-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--primary);
}

.civil-horizontal::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.it-horizontal {
  width: 50%;
  max-width: 300px;
  margin: 0 auto 20px;
}

.it-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--primary);
}

.it-horizontal::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Branch connectors using SVG */
.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.branch-connector {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin-bottom: -40px;
  z-index: 0;
}

.org-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.org-connector-line {
  width: 2px;
  height: 30px;
  background: var(--primary);
  margin: 10px 0;
}

/* Connector lines from level 2 to level 3 */
.org-connectors-level-2 {
  width: 100%;
  height: 40px;
  position: relative;
  margin-bottom: 10px;
}

.connector-to-strategy,
.connector-to-finance,
.connector-to-civil,
.connector-to-it {
  position: absolute;
  width: 2px;
  height: 40px;
  background: var(--primary);
  top: 0;
}

.connector-to-strategy {
  left: calc(12.5% - 1px);
}

.connector-to-finance {
  left: calc(37.5% - 1px);
}

.connector-to-civil {
  left: calc(62.5% - 1px);
}

.connector-to-it {
  right: calc(12.5% - 1px);
}

/* Title Cards (Department Heads) */
.title-card {
  min-width: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d5aa8 100%);
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  cursor: default;
  position: relative;
}

.title-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.title-card-content {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* Organization Groups (for sub-roles) */
.org-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.org-group.empty-group {
  flex: 0 0 160px;
  height: 0;
  visibility: hidden;
}

.org-group.civil-group {
  flex: 1;
  min-width: 420px;
}

.org-group.it-group {
  flex: 1;
  min-width: 320px;
}

.org-spacer {
  flex: 0 0 160px;
  height: 0;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.branch-connector {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin-bottom: -40px;
  z-index: 0;
}

.org-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.org-cards-row.single-card {
  justify-content: center;
}

.org-cards-row.three-cards {
  gap: 30px;
  width: 100%;
  justify-content: center;
}

.org-cards-row.two-cards {
  gap: 40px;
  width: 100%;
  justify-content: center;
}

/* Sub Cards (Subordinate Roles) */
.sub-card {
  min-width: 150px;
  background: #f0f4ff;
  border: 2px solid #dde4ff;
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.sub-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: #e8ecff;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.sub-card-content {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}

.org-card {
  position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .org-level-3 {
    gap: 60px;
  }

  .org-level-4 {
    gap: 100px;
  }

  .org-connectors-svg {
    height: 100px;
  }

  .title-card {
    min-width: 140px;
    padding: 16px 18px;
  }

  .sub-card {
    min-width: 130px;
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .org-chart {
    gap: 20px;
    margin-top: 40px;
  }

  .org-level-1 {
    margin-bottom: 15px;
  }

  .org-level-2-pegg {
    margin: 30px 0;
  }

  .org-level-3 {
    gap: 30px;
    margin: 30px 0;
    flex-direction: column;
    align-items: center;
  }

  .org-level-4 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .exec-card {
    max-width: 100%;
    width: 90%;
  }

  .exec-card-secondary {
    max-width: 100%;
    width: 90%;
  }

  .title-card {
    min-width: 140px;
    width: 100%;
    max-width: 200px;
  }

  .org-group {
    width: 100%;
  }

  .org-cards-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .sub-card {
    min-width: 140px;
    width: 100%;
    max-width: 200px;
  }

  .org-connectors-svg {
    display: none;
  }

  .org-connector-vertical {
    display: none;
  }
}

@media (max-width: 480px) {
  .org-chart {
    gap: 16px;
    margin-top: 30px;
  }

  .exec-card {
    padding: 30px 20px;
  }

  .exec-card-secondary {
    padding: 24px 18px;
  }

  .exec-photo {
    width: 110px;
    height: 110px;
  }

  .exec-name {
    font-size: 16px;
  }

  .exec-title {
    font-size: 13px;
  }

  .exec-bio {
    font-size: 12px;
  }

  .title-card,
  .sub-card {
    min-width: 120px;
    padding: 14px 10px;
  }

  .title-card-content,
  .sub-card-content {
    font-size: 12px;
  }

  .org-level-2-pegg {
    margin: 20px 0;
  }

  .org-level-3 {
    gap: 20px;
    margin: 20px 0;
  }

  .org-level-4 {
    gap: 20px;
    margin-top: 20px;
  }
}

=======

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1E3A8A;
  --primary-dark: #1a2f6b;
  --primary-light: #0074D9;
  --accent: #FFA500;
  --accent-dark: #E89500;
  --accent-light: #FFB84D;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s;
  height: auto;
  min-height: 100px;
}

.navbar {
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-image {
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

main {
  padding-top: 120px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section.image-hero {
  background: #000;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.video-overlay, .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.image-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.product-card[data-aos='zoom-in']:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card[data-aos='zoom-in']:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card[data-aos='zoom-in']:nth-child(3) {
  animation-delay: 0.3s;
}

.aos-animate .product-card {
  opacity: 1;
  transform: translateY(0);
}

.product-card[data-aos='zoom-in']:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card[data-aos='zoom-in']:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card[data-aos='zoom-in']:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Small utility to tint specific words blue (primary brand color) */
.text-blue {
  color: var(--primary);
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Trusted By Section */
.trusted-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

/* Partners Section with Animated Marquee */
.partners-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.partners-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Partners Logos Grid */
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.circular-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 200px;
}

.circular-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.circular-logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1.05);
}

.circular-logo img[src$=".svg"] {
  width: 70%;
  height: 70%;
  filter: brightness(1) contrast(1.2);
}

.circular-logo-container:hover .circular-logo {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
  border-color: var(--accent);
}

.circular-logo-container:hover img {
  transform: scale(1.1);
}

.logo-caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.circular-logo-container:hover .logo-caption {
  color: var(--primary);
}

@media (max-width: 768px) {
  .partners-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
  }
  
  .circular-logo {
    width: 120px;
    height: 120px;
    padding: 15px;
  }
  
  .logo-caption {
    font-size: 12px;
  }
}

/* Features Showcase */
.features-showcase {
  padding: 120px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  z-index: 10;
}

.product-card.featured {
  background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xl);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.08);
  /* make all product icons visually uniform and match the featured card */
  border-radius: 16px;
  width: 280px; /* uniform visual size */
  max-width: 100%;
  padding: 24px;
  margin: 0 auto 24px;
  color: var(--accent);
  transition: all 0.3s;
  transform: scale(1);
}

.product-icon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.product-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-card.featured .product-icon {
  /* featured card mirrors the same dimensions so all logos look identical */
  width: 280px;
  padding: 24px;
  border-radius: 16px;
  animation: pulse 2s infinite;
}

@media (max-width: 992px) {
  .product-icon {
    width: 220px;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .product-icon {
    width: 160px;
    padding: 12px;
  }
}
.product-icon.brand-blue {
  background: rgba(28, 117, 188, 0.08);
  border: 2px solid rgba(28, 117, 188, 0.14);
  box-shadow: 0 6px 18px rgba(28,117,188,0.06);
}

.product-icon.brand-green {
  background: rgba(0, 148, 68, 0.08);
  border: 2px solid rgba(0, 148, 68, 0.14);
  box-shadow: 0 6px 18px rgba(0,148,68,0.06);
}

.product-icon.brand-red {
  background: rgba(176, 32, 38, 0.08);
  border: 2px solid rgba(176, 32, 38, 0.14);
  box-shadow: 0 6px 18px rgba(176,32,38,0.06);
}

.product-card.brand-blue {

  background: linear-gradient(180deg, rgba(28,117,188,0.08) 0%, rgba(28,117,188,0.04) 100%);
  border-color: rgba(28,117,188,0.22);
  box-shadow: inset 6px 0 0 rgba(28,117,188,0.08);
}

.product-card.brand-green {
  background: linear-gradient(180deg, rgba(0,148,68,0.08) 0%, rgba(0,148,68,0.04) 100%);
  border-color: rgba(0,148,68,0.22);
  box-shadow: inset 6px 0 0 rgba(0,148,68,0.08);
}

.product-card.brand-red {
  background: linear-gradient(180deg, rgba(176,32,38,0.08) 0%, rgba(176,32,38,0.04) 100%);
  border-color: rgba(176,32,38,0.22);
  box-shadow: inset 6px 0 0 rgba(176,32,38,0.08);
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--heading);
}

.product-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 80px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 0;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.2s;
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.product-features li:hover {
  color: var(--heading);
  background: rgba(0, 0, 0, 0.03);
  transform: translateX(4px);
}

.product-features svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.product-cta:hover {
  gap: 12px;
}

.product-video-preview {
  margin-top: 24px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.video-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Special Features Section */
.special-features-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.features-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-showcase-card {
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.feature-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-showcase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-showcase-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-showcase-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -2px;
}

/* Demo Section */
.demo-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.demo-feature {
  display: flex;
  gap: 16px;
}

.demo-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.demo-feature h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.demo-feature p {
  font-size: 15px;
  color: var(--text-secondary);
}

.demo-visual {
  position: relative;
}

.demo-window {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.demo-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.window-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-window-content {
  padding: 24px;
  background: var(--bg-secondary);
}

.demo-interface {
  display: flex;
  gap: 16px;
}

.demo-sidebar {
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-menu-item {
  padding: 12px;
  background: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.demo-menu-item.active {
  background: var(--primary);
  color: white;
}

.demo-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-stat-card {
  padding: 20px;
  background: white;
  border-radius: 8px;
}

.demo-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.demo-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.demo-stat-change {
  font-size: 13px;
  color: #10b981;
}

.demo-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
  padding: 20px;
  background: white;
  border-radius: 8px;
}

.chart-bar {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}

@keyframes growBar {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: 16px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-title {
  font-size: 14px;
  color: var(--text-secondary);
}


.services-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: flex;
  gap: 24px;
}

.service-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.2);
  line-height: 1;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.visual-card {
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.visual-card.card-1 {
  grid-column: 1 / -1;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.card-stat {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.card-label {
  font-size: 14px;
  color: var(--text-secondary);
}


.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-secondary);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cta-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}


.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 20px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .services-content,
  .demo-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-title {
    font-size: 36px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .partners-title {
    font-size: 28px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .marquee-content {
    gap: 30px;
    padding: 0 20px;
    animation: scroll-smooth 30s linear infinite;
  }

  .logo-card {
    height: 100px;
  }

  .logo-image {
    max-width: 140px;
    max-height: 100px;
  }

  .logos-marquee {
    padding: 30px 0;
  }

  .logos-marquee::before,
  .logos-marquee::after {
    width: 60px;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 25px 0;
  text-align: center;
  margin-top: 12px;
}

.page-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 8px;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}


.about-content {
  padding: 120px 0 60px;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-timeline {
  padding: 60px 0;
  background: transparent;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.products-showcase {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.showcase-item {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.showcase-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.showcase-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-icon img {
  transform: scale(1.1);
}

.showcase-details h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.showcase-details p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .showcase-icon img {
    width: 120px;
    height: 120px;
  }
  
  .showcase-item {
    padding: 30px;
  }
}

.values-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background-color: transparent;
}

.values-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.values-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  position: relative;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.value-card:hover .value-badge {
  background: var(--primary);
  color: white;
}

.mission-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.vision-roadmap {
  margin-top: 24px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.roadmap-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}

.roadmap-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.value-card:hover .roadmap-dot::before {
  opacity: 0.3;
  width: 32px;
  height: 32px;
}

.roadmap-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.values-list {
  margin-top: 24px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.value-icon-small {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 8px;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.value-card:hover .value-icon-small {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.value-text {
  display: flex;
  flex-direction: column;
}

.value-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.value-text span {
  font-size: 14px;
  color: var(--text-secondary);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.value-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.value-card:hover .value-icon svg path,
.value-card:hover .value-icon svg circle {
  stroke: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon .mission-point,
.value-card:hover .value-icon .vision-circle {
  fill: white;
}

.value-content {
  text-align: center;
}

.value-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.value-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.value-card:hover .value-content h3::after {
  width: 60px;
}

.value-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Mission Card Specifics */
.mission-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s ease;
}

.mission-circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s ease;
}

.value-card:hover .mission-path,
.value-card:hover .mission-circle {
  stroke-dashoffset: 0;
}

/* Vision Card Specifics */
.vision-path {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.8s ease;
}

.vision-beam {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.6s ease;
}

.value-card:hover .vision-path,
.value-card:hover .vision-beam {
  stroke-dashoffset: 0;
}

/* Values Card Specifics */
.values-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
}

.values-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.values-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.value-card:hover .values-list li::before {
  transform: translateX(4px);
}

.values-path-1 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1s ease;
}

.values-path-2 {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.8s ease;
}

.value-card:hover .values-path-1,
.value-card:hover .values-path-2 {
  stroke-dashoffset: 0;
}

.value-icon svg {
  width: 48px;
  height: 48px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}


.services-detail-section {
  padding: 120px 0;
  background: white;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
}

.service-detail-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.service-benefits li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

.service-detail-image {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.service-image-single {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 24px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}

.service-image:hover {
  transform: scale(1.05);
  background: white;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .service-image-single {
    padding: 20px;
  }
  
  .service-image {
    max-width: 240px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .service-image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-image {
    height: 120px;
  }
}


.team-section {
  padding: 120px 0;
  background: white;
}

.circular-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.circular-team-card {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.circular-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.circular-team-container {
  width: 280px;
  height: 280px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.circular-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  margin: 0;
  padding: 0;
}

.circular-team-card:hover .circular-team-image {
  transform: scale(1.1);
}

.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.team-member-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.team-member-bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* References Section Styles */
.references-section {
  padding: 80px 0;
  background: white;
}

.references-grid {
  margin-top: 60px;
}

.reference-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.reference-cards {
  display: grid;
  gap: 24px;
}

.reference-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reference-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.reference-content {
  flex: 1;
}

.reference-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.reference-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.reference-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.reference-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.download-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .reference-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .reference-meta {
    justify-content: center;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .circular-team-container {
    width: 160px;
    height: 160px;
  }
  
  .team-member-name {
    font-size: 20px;
  }
}

.team-card {
  text-align: center;
  transition: all 0.3s;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.team-image {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.team-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

/* Circular Team Design */
.circular-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
  margin-top: 60px;
}

/* Tree layout for team executives */
.team-tree {
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 12px;
}
.team-tree .tree-level {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  margin-bottom: 24px;
  align-items: flex-start;
}

/* subtle vertical connector from a node to the level below */
.team-tree .tree-level:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 2px;
  height: 20px;
  background: rgba(17,24,39,0.06);
  transform: translateX(-50%);
  z-index: 0;
}

/* horizontal branch above a level with multiple nodes */
.team-tree .tree-level-2::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -20px;
  height: 2px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
  border-radius: 2px;
}

.team-tree .tree-level-2 {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.team-tree .tree-node {
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* Make execs slightly larger and more prominent */
.tree-level-0 .tree-node,
.tree-level-1 .tree-node {
  width: 380px;
}
.tree-level-0 .circular-team-container,
.tree-level-1 .circular-team-container {
  width: 200px;
  height: 200px;
}

@media (max-width: 768px) {
  .team-tree .tree-node {
    max-width: 100%;
    width: 100%;
  }
  .team-tree .tree-level-2::before {
    left: 5%;
    right: 5%;
  }
  .tree-level-0 .circular-team-container,
  .tree-level-1 .circular-team-container {
    width: 140px;
    height: 140px;
  }
}

/* Branch-specific styles (children under a branch) */
.tree-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 8px;
}

.tree-branch {
  flex: 1 1 0;
  min-width: 220px;
}

.tree-branch::after {
  /* vertical connector from parent node down to children */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
}


.tree-children {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.tree-children::before {
  /* horizontal connector above children */
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  width: calc(100% - 40px);
  height: 2px;
  background: rgba(17,24,39,0.06);
  z-index: 0;
  border-radius: 2px;
}

.tree-children .child-node {
  width: 220px;
  max-width: 220px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .tree-branch::after {
    display: none;
  }
  .tree-children::before {
    display: none;
  }
  .tree-children {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
}

/* Role-only box used for structure-only nodes */

.role-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 120px;
  background: var(--bg-secondary);
  border: 1px solid rgba(17,24,39,0.04);
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.tree-node .role-box {
  height: 120px;
  width: 220px;
}

@media (max-width: 768px) {
  .role-box {
    width: 100%;
    height: 100px;
  }
}

.circular-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 32px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

.circular-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
  border-color: var(--primary);
}

.circular-team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.circular-team-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .circular-team-container {
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.25);
  transform: scale(1.1);
}

.circular-team-card:hover .circular-team-container::before {
  opacity: 1;
}

.circular-team-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.circular-team-card:hover .circular-team-image {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.05);
}

.team-member-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .team-member-name {
  color: var(--primary);
}

.team-member-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-team-card:hover .team-member-role {
  font-weight: 700;
}

.team-member-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* New team layout helpers */
.team-executives .exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.role-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Hierarchical role sections (parent + subordinates) */
.role-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 1;
}

.role-parent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-weight: 700;
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(30,58,138,0.15);
}

.role-subsection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 3px solid rgba(30,58,138,0.2);
}

@media (max-width: 768px) {
  .team-executives .exec-grid {
    grid-template-columns: 1fr;
  }

  .role-subsection {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.contact-section {
  padding: 120px 0;
  background: white;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 24px;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-secondary);
}

.careers-section {
  padding: 120px 0;
  background: white;
}

.news-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.news-page-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    flex: 1;
}

.news-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.site-footer.news-footer {
    margin-top: auto;
    width: 100%;
}

.careers-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.careers-intro h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.careers-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.jobs-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.job-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.job-type {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.job-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.job-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.clients-section {
  padding: 120px 0;
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: center;
}

.client-card {
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.client-logo {
  font-size: 48px;
  margin-bottom: 16px;
}

.client-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.client-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.client-quote {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Clients Logos Section with Circular Containers */
.clients-logos-section {
  padding: 120px 0;
  background: white;
}

.circular-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px 40px;
  align-items: center;
  justify-items: center;
  margin-top: 60px;
}

.circular-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover {
  transform: translateY(-8px);
}

.circular-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.circular-logo-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover .circular-logo-container {
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.25);
  transform: scale(1.1);
}

.circular-logo-card:hover .circular-logo-container::before {
  opacity: 1;
}

.circular-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.circular-logo-card:hover .circular-logo {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.05);
}

.circular-logo-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.circular-logo-card:hover h3 {
  color: var(--primary);
}

.products-page-section {
  padding: 120px 0;
  background: white;
}


.news-page-section {
  padding: 80px 0 0 0;
  background: white;
}

.news-page-section.no-bottom-space {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.news-article-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  animation: slideUp 0.5s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Social cards for external links (Facebook posts) */
.news-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.social-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(17,24,39,0.06);
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.08);
}

.social-card .social-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-card .social-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.social-card .social-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.news-article-card:hover {
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.2);
  transform: translateY(-10px);
  border-color: var(--primary);
}

.news-article-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.news-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.news-article-card:hover .news-article-image img {
  transform: scale(1.08);
}

.news-article-additional-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
  padding: 0 16px 16px;
}

.news-article-additional-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.news-article-additional-images img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.news-article-header {
  margin-bottom: 0;
  border-bottom: none;
  padding: 24px 24px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
  background: #fafafa;
}

.news-article-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
  word-break: break-word;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-article-date {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-article-videos-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 16px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.news-article-videos-indicator .video-icon {
  color: #dc3545;
  font-weight: bold;
  font-size: 16px;
}

.news-article-videos-indicator .video-count {
  color: #495057;
  font-size: 14px;
  font-weight: 500;
}

.news-article-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0;
  flex-grow: 1;
  word-wrap: break-word;
  white-space: pre-wrap;
  padding: 16px 24px;
  background: white;
}

.news-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid #e0e0e0;
}

.news-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(255, 107, 0, 0.15) 100%);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.no-news-message {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(255, 107, 0, 0.04) 100%);
  border-radius: 16px;
  margin: 40px 0;
}

.no-news-icon {
  font-size: 72px;
  margin-bottom: 24px;
  display: block;
  animation: bounce 2s infinite;
}

.no-news-message h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.no-news-message p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.no-news-subtext {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .no-news-message {
    padding: 80px 20px;
  }

  .no-news-icon {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .no-news-message h2 {
    font-size: 28px;
  }

  .no-news-message p {
    font-size: 14px;
  }

  .about-grid,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .circular-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .circular-team-container {
    width: 130px;
    height: 130px;
  }

  .team-member-name {
    font-size: 16px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .circular-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px 20px;
  }

  .circular-logo-container {
    width: 130px;
    height: 130px;
  }

  .circular-logo-card h3 {
    font-size: 14px;
  }

  .news-grid-page {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* News Modal Styles */
.news-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.news-modal-content {
  background-color: white;
  margin: auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.news-modal.active .news-modal-content {
  transform: translateY(0);
}

.news-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #eee;
}

.news-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
}

.news-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.news-modal-close:hover {
  background-color: #f0f0f0;
  color: #333;
}

.news-modal-body {
  padding: 24px;
}

.news-modal-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.news-modal-body p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  font-size: 16px;
}

.read-more-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 12px;
}

.read-more-link:hover {
  color: #ff6b00;
}

/* News Modal Slideshow Styles */
.news-modal-slideshow {
  position: relative;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  margin: auto;
}

.slide {
  display: none;
  animation-name: fade;
  animation-duration: 1.5s;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slideshow-dots {
  text-align: center;
  padding: 16px 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: var(--primary);
}

.news-modal-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 70vh;
  object-fit: contain;
}

.news-modal-video {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
  .slide img {
    max-height: 250px;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slide img {
    max-height: 200px;
  }
  
  .prev, .next {
    padding: 8px;
    font-size: 14px;
  }
  
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 2px;
  }
}

.admin-body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

.admin-container {
  display: flex;
  min-height: 100vh;
  gap: 0;
}


.admin-sidebar {
  width: 280px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 40px 24px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.admin-logo {
  margin-bottom: 48px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 24px;
}

.admin-logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.admin-logo p {
  font-size: 12px;
  color: #999;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-nav-item {
  display: block;
  padding: 14px 16px;
  color: #ccc;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 18px;
}


.admin-main {
  margin-left: 280px;
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}


.admin-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.4s ease-out;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.admin-section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.4s ease-out;
}

.news-card:hover {
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  word-break: break-word;
}

.news-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.news-meta span {
  font-size: 12px;
  color: #999;
}

.news-actions {
  display: flex;
  gap: 12px;
}

.btn-icon {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: rgba(255, 107, 0, 0.1);
  color: darken(#ff6b00, 10%);
}

.contacts-table {
  width: 100%;
  border-collapse: collapse;
}

.contacts-table thead {
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}

.contacts-table th {
  padding: 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.contacts-table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.contacts-table tbody tr {
  transition: all 0.2s ease;
}

.contacts-table tbody tr:hover {
  background: #f9f9f9;
}

.contacts-table tbody tr:last-child td {
  border-bottom: none;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background: #e0e0e0;
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  animation: slideUp 0.3s ease-out;
}

.alert-error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

.alert-success {
  background: #efe;
  border: 1px solid #cfc;
  color: #3c3;
}

.alert-info {
  background: #eef;
  border: 1px solid #ccf;
  color: #33c;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.image-upload-wrapper {
  margin: 12px 0;
}

.image-upload-wrapper input[type="file"] {
  display: block;
  padding: 12px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.image-upload-wrapper input[type="file"]:hover {
  border-color: var(--primary);
  background: rgba(30, 58, 138, 0.05);
}

.image-preview {
  margin-top: 16px;
}

.preview-image {
  text-align: center;
}

.preview-image img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preview-image p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.admin-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-login-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

.admin-login-card .admin-logo {
  text-align: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.admin-login-card .admin-logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.admin-login-card .admin-logo p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


@media (max-width: 768px) {
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 24px;
    box-shadow: none;
    border-bottom: 2px solid #e0e0e0;
  }

  .admin-logo {
    margin-bottom: 16px;
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .admin-nav-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  .admin-main {
    margin-left: 0;
    padding: 20px;
  }

  .admin-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .contacts-table {
    font-size: 12px;
  }

  .contacts-table th,
  .contacts-table td {
    padding: 12px 8px;
  }

  .admin-login-card {
    padding: 32px 24px;
  }
}

/* Clients Section with White Background */
.clients-section {
  background: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.clients-section .section-header {
  color: var(--text-primary);
}

.clients-section .section-badge {
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary);
}

.clients-section .section-title {
  color: var(--text-primary);
}

.clients-section .section-description {
  color: var(--text-secondary);
}

/* Clients logos grid (simple, clean layout) */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 60px 50px;
  justify-items: center;
  align-items: center;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.client-logo-image {
  max-width: 140px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-item:hover .client-logo-image {
  transform: scale(1.1);
}

.client-name-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.client-item:hover .client-name-text {
  color: var(--primary);
}

@media (max-width: 992px) {
  .clients-section {
    padding: 80px 0;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px 32px;
    padding: 32px 15px;
  }

  .client-logo-image {
    max-width: 110px;
    max-height: 110px;
  }

  .client-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    padding: 24px 10px;
  }

  .client-logo-image {
    max-width: 80px;
    max-height: 80px;
  }

  .client-name-text {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .clients-logos-grid .circular-logo-container {
    width: 160px;
  }

  .clients-logos-grid .circular-logo {
    width: 140px;
    height: 140px;
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .clients-logos-grid {
    gap: 20px;
    padding: 24px 0;
  }

  .clients-logos-grid .circular-logo-container {
    width: 120px;
  }

  .clients-logos-grid .circular-logo {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
}

/* ===== ORGANIZATIONAL CHART ===== */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.org-level {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
}

.org-level-1 {
  margin-bottom: 10px;
  justify-content: center;
}

.org-level-2-pegg {
  margin: 40px 0;
  justify-content: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.org-level-3 {
  margin: 40px 0;
  justify-content: center;
  gap: 100px;
  align-items: stretch;
}

.org-level-4 {
  margin-top: 60px;
  justify-content: center;
  gap: 100px;
  width: 100%;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* Executive Cards */
.exec-card {
  max-width: 300px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.exec-card-secondary {
  max-width: 300px;
  padding: 40px 32px;
  border-width: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.exec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: var(--primary);
}

.exec-card-secondary:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
  border-color: var(--primary);
}

.exec-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exec-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.exec-image:hover {
  transform: scale(1.05);
}

.exec-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.exec-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.exec-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Connector Lines */
.org-connector-vertical {
  width: 3px;
  height: 50px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
  box-shadow: 0 2px 6px rgba(30, 58, 138, 0.2);
}

.org-connector-vertical.small-connector {
  height: 30px;
}

/* Individual connector lines from department heads */
.connector-line {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
}

.finance-connector,
.civil-connector,
.it-connector {
  width: 2px;
  height: 40px;
  background: var(--primary);
}

/* Horizontal connector lines for subordinates */
.connector-horizontal {
  position: relative;
  height: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.civil-horizontal {
  width: 60%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.civil-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--primary);
}

.civil-horizontal::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.it-horizontal {
  width: 50%;
  max-width: 300px;
  margin: 0 auto 20px;
}

.it-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--primary);
}

.it-horizontal::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Branch connectors using SVG */
.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.branch-connector {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin-bottom: -40px;
  z-index: 0;
}

.org-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.org-connector-line {
  width: 2px;
  height: 30px;
  background: var(--primary);
  margin: 10px 0;
}

/* Connector lines from level 2 to level 3 */
.org-connectors-level-2 {
  width: 100%;
  height: 40px;
  position: relative;
  margin-bottom: 10px;
}

.connector-to-strategy,
.connector-to-finance,
.connector-to-civil,
.connector-to-it {
  position: absolute;
  width: 2px;
  height: 40px;
  background: var(--primary);
  top: 0;
}

.connector-to-strategy {
  left: calc(12.5% - 1px);
}

.connector-to-finance {
  left: calc(37.5% - 1px);
}

.connector-to-civil {
  left: calc(62.5% - 1px);
}

.connector-to-it {
  right: calc(12.5% - 1px);
}

/* Title Cards (Department Heads) */
.title-card {
  min-width: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d5aa8 100%);
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
  cursor: default;
  position: relative;
}

.title-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.title-card-content {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* Organization Groups (for sub-roles) */
.org-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.org-group.empty-group {
  flex: 0 0 160px;
  height: 0;
  visibility: hidden;
}

.org-group.civil-group {
  flex: 1;
  min-width: 420px;
}

.org-group.it-group {
  flex: 1;
  min-width: 320px;
}

.org-spacer {
  flex: 0 0 160px;
  height: 0;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.branch-connector {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin-bottom: -40px;
  z-index: 0;
}

.org-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.org-cards-row.single-card {
  justify-content: center;
}

.org-cards-row.three-cards {
  gap: 30px;
  width: 100%;
  justify-content: center;
}

.org-cards-row.two-cards {
  gap: 40px;
  width: 100%;
  justify-content: center;
}

/* Sub Cards (Subordinate Roles) */
.sub-card {
  min-width: 150px;
  background: #f0f4ff;
  border: 2px solid #dde4ff;
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.sub-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: #e8ecff;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.sub-card-content {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}

.org-card {
  position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .org-level-3 {
    gap: 60px;
  }

  .org-level-4 {
    gap: 100px;
  }

  .org-connectors-svg {
    height: 100px;
  }

  .title-card {
    min-width: 140px;
    padding: 16px 18px;
  }

  .sub-card {
    min-width: 130px;
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .org-chart {
    gap: 20px;
    margin-top: 40px;
  }

  .org-level-1 {
    margin-bottom: 15px;
  }

  .org-level-2-pegg {
    margin: 30px 0;
  }

  .org-level-3 {
    gap: 30px;
    margin: 30px 0;
    flex-direction: column;
    align-items: center;
  }

  .org-level-4 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .exec-card {
    max-width: 100%;
    width: 90%;
  }

  .exec-card-secondary {
    max-width: 100%;
    width: 90%;
  }

  .title-card {
    min-width: 140px;
    width: 100%;
    max-width: 200px;
  }

  .org-group {
    width: 100%;
  }

  .org-cards-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .sub-card {
    min-width: 140px;
    width: 100%;
    max-width: 200px;
  }

  .org-connectors-svg {
    display: none;
  }

  .org-connector-vertical {
    display: none;
  }
}

@media (max-width: 480px) {
  .org-chart {
    gap: 16px;
    margin-top: 30px;
  }

  .exec-card {
    padding: 30px 20px;
  }

  .exec-card-secondary {
    padding: 24px 18px;
  }

  .exec-photo {
    width: 110px;
    height: 110px;
  }

  .exec-name {
    font-size: 16px;
  }

  .exec-title {
    font-size: 13px;
  }

  .exec-bio {
    font-size: 12px;
  }

  .title-card,
  .sub-card {
    min-width: 120px;
    padding: 14px 10px;
  }

  .title-card-content,
  .sub-card-content {
    font-size: 12px;
  }

  .org-level-2-pegg {
    margin: 20px 0;
  }

  .org-level-3 {
    gap: 20px;
    margin: 20px 0;
  }

  .org-level-4 {
    gap: 20px;
    margin-top: 20px;
  }
}

/ *   N e w s   M o d a l   S t y l e s   * / 
 . n e w s - m o d a l   { 
     d i s p l a y :   n o n e ; 
     p o s i t i o n :   f i x e d ; 
     t o p :   0 ; 
     l e f t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ; 
     z - i n d e x :   1 0 0 0 ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     o p a c i t y :   0 ; 
     t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 } 
 
 . n e w s - m o d a l . a c t i v e   { 
     d i s p l a y :   f l e x ; 
     o p a c i t y :   1 ; 
 } 
 
 . n e w s - m o d a l - c o n t e n t   { 
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r - r a d i u s :   1 6 p x ; 
     w i d t h :   9 0 % ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a x - h e i g h t :   9 0 v h ; 
     o v e r f l o w :   h i d d e n ; 
     p o s i t i o n :   r e l a t i v e ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
     b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 } 
 
 . n e w s - m o d a l . a c t i v e   . n e w s - m o d a l - c o n t e n t   { 
     t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 } 
 
 . n e w s - m o d a l - h e a d e r   { 
     p a d d i n g :   2 4 p x ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # e 0 e 0 e 0 ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     b a c k g r o u n d :   # f 8 f 9 f a ; 
 } 
 
 . n e w s - m o d a l - h e a d e r   h 2   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   2 4 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   # 1 a 1 a 1 a ; 
 } 
 
 . n e w s - m o d a l - c l o s e   { 
     b a c k g r o u n d :   n o n e ; 
     b o r d e r :   n o n e ; 
     f o n t - s i z e :   2 8 p x ; 
     c u r s o r :   p o i n t e r ; 
     c o l o r :   # 9 9 9 ; 
     w i d t h :   4 0 p x ; 
     h e i g h t :   4 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b o r d e r - r a d i u s :   8 p x ; 
     t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . n e w s - m o d a l - c l o s e : h o v e r   { 
     b a c k g r o u n d :   # e 0 e 0 e 0 ; 
     c o l o r :   # 3 3 3 ; 
 } 
 
 . n e w s - m o d a l - b o d y   { 
     p a d d i n g :   2 4 p x ; 
     m a x - h e i g h t :   7 0 v h ; 
     o v e r f l o w - y :   a u t o ; 
 } 
 
 . n e w s - m o d a l - i m a g e   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   3 0 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     m a r g i n - b o t t o m :   2 4 p x ; 
 } 
 
 . n e w s - m o d a l - i m a g e   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 
 . n e w s - m o d a l - a d d i t i o n a l - i m a g e s   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 1 5 0 p x ,   1 f r ) ) ; 
     g a p :   1 6 p x ; 
     m a r g i n - t o p :   2 4 p x ; 
 } 
 
 . n e w s - m o d a l - a d d i t i o n a l - i m a g e s   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 2 0 p x ; 
     o b j e c t - f i t :   c o v e r ; 
     b o r d e r - r a d i u s :   8 p x ; 
     b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . n e w s - m o d a l - a d d i t i o n a l - i m a g e s   i m g : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
     b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 } 
 
 . n e w s - m o d a l - c o n t e n t   p   { 
     f o n t - s i z e :   1 6 p x ; 
     l i n e - h e i g h t :   1 . 8 ; 
     c o l o r :   # 5 5 5 ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
 } 
 
 . n e w s - m o d a l - d a t e   { 
     c o l o r :   # 9 9 9 ; 
     f o n t - s i z e :   1 4 p x ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
     d i s p l a y :   b l o c k ; 
 } 
 
 . r e a d - m o r e - l i n k   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c u r s o r :   p o i n t e r ; 
     b o r d e r :   n o n e ; 
     b a c k g r o u n d :   n o n e ; 
     p a d d i n g :   0 ; 
     f o n t - s i z e :   i n h e r i t ; 
 } 
 
 . r e a d - m o r e - l i n k : h o v e r   { 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . n e w s - m o d a l - c o n t e n t   { 
         w i d t h :   9 5 % ; 
         m a r g i n :   1 0 p x ; 
     } 
     
     . n e w s - m o d a l - h e a d e r   h 2   { 
         f o n t - s i z e :   2 0 p x ; 
     } 
     
     . n e w s - m o d a l - i m a g e   { 
         h e i g h t :   2 0 0 p x ; 
     } 
     
     . n e w s - m o d a l - a d d i t i o n a l - i m a g e s   { 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 1 2 0 p x ,   1 f r ) ) ; 
     } 
     
     . n e w s - m o d a l - a d d i t i o n a l - i m a g e s   i m g   { 
         h e i g h t :   1 0 0 p x ; 
     } 
 } 
 
 
>>>>>>> 2f83ac7bbba141f9cc19c92f7c648bde5ae39dce
/ *   E n h a n c e d   N e w s   C a r d   S t y l e s   * / 
 
 . n e w s - a r t i c l e - c a r d . e n h a n c e d   { 
 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   # f a f a f a   1 0 0 % ) ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 3 0 ,   5 8 ,   1 3 8 ,   0 . 1 ) ; 
 
     b o x - s h a d o w :   0   8 p x   2 4 p x   r g b a ( 3 0 ,   5 8 ,   1 3 8 ,   0 . 1 ) ; 
 
     t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 1 ) ; 
 
 } 
 
 
 
 . n e w s - a r t i c l e - c a r d . e n h a n c e d : h o v e r   { 
 
     b o x - s h a d o w :   0   1 6 p x   4 0 p x   r g b a ( 3 0 ,   5 8 ,   1 3 8 ,   0 . 2 ) ; 
 
     t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x ) ; 
 
 } 
 
 
 
 . n e w s - a r t i c l e - i m a g e . e n h a n c e d   { 
 
     h e i g h t :   2 0 0 p x ; 
 
     b o r d e r - r a d i u s :   1 6 p x   1 6 p x   0   0 ; 
 
 } 
 
 
 
 . n e w s - a r t i c l e - c o n t e n t . e n h a n c e d   { 
 
     p a d d i n g :   2 0 p x   2 4 p x ; 
 
     l i n e - h e i g h t :   1 . 7 ; 
 
 } 
 
 
 
 . n e w s - a r t i c l e - h e a d e r . e n h a n c e d   { 
 
     p a d d i n g :   2 0 p x   2 4 p x   1 6 p x ; 
 
     b a c k g r o u n d :   r g b a ( 3 0 ,   5 8 ,   1 3 8 ,   0 . 0 2 ) ; 
 
 } 
 
 
 
 . n e w s - a r t i c l e - f o o t e r . e n h a n c e d   { 
 
     p a d d i n g :   1 6 p x   2 4 p x   2 0 p x ; 
 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   1 0 7 ,   0 ,   0 . 0 2 ) ; 
 
 } 
 
 