/* public/css/style.css */
:root {
  --primary: #0056b3;
  --primary-light: #3a86ff;
  --accent: #ff9f1c;
  --text: #1e293b;
  --text-muted: #475569;
  --bg-color-dark: #0f172a;
  --card-bg: rgba(255, 255, 255, 0.801);
  --card-border: rgba(0, 0, 0, 0.05);
  --shadow: 0 20px 60px rgba(0, 86, 179, 0.08);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.95);
  --border: rgba(0, 0, 0, 0.06);
}

body.dark {
  --primary: #60a5fa;
  --primary-light: #3b82f6;
  --text: #f1f5f9;
  --text-muted: #cbd5e1;
  --card-bg: rgba(15, 23, 42, 0.8);
  --card-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --nav-bg-scrolled: rgba(15, 23, 42, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  background: var(--bg-color-dark);
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background: linear-gradient(to left, #f9f9f9, #ffffff);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: color 0.5s ease;
  will-change: background-position;
}

body.locked {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}
p {
  font-weight: 400;
}

#splash {
  position: fixed;
  inset: 0;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: 1s ease-in-out;
  will-change: opacity, visibility;
}
#splash-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
}
.splash-content {
  z-index: 2;
  text-align: center;
}
#company-name {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
  background: linear-gradient(to right, #fff, #a5d8ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  will-change: opacity, transform;
}
#greeting {
  margin-top: 15px;
  font-size: clamp(2rem, 6vw, 3.5rem);
  opacity: 0;
  transition: opacity 0.4s ease;
  color: whitesmoke;
  font-weight: 800;
}
#splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  transform: translateZ(0);
  will-change: background, height, box-shadow;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  text-decoration: none;
  color: inherit;
  margin-right: auto;
  letter-spacing: -0.5px;
  white-space: nowrap;
  max-width: calc(100vw - 180px);
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.3s ease;
}
.logo span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .logo img {
    height: 55px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
  color: inherit;
  opacity: 0.9;
}
.nav-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.theme-toggle {
  background: transparent;
  border: 1px solid currentColor;
  color: currentColor;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 0.85rem;
  cursor: pointer;
}
nav.scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  height: 70px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
  width: 30px;
  height: 24px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease,
    background-color 0.4s ease;
}
nav.scrolled .hamburger span {
  background-color: var(--text);
}
body.dark nav.scrolled .hamburger span {
  background-color: white;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .logo img {
    height: 42px;
  }
  .theme-toggle {
    margin-left: auto;
    margin-right: 15px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  body.dark .nav-links {
    background: rgba(15, 23, 42, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
  }
  body.dark .nav-links a {
    color: #f1f5f9;
  }
}
@media (max-width: 576px) {
  .logo img {
    height: 36px;
  }
  .logo {
    max-width: calc(100vw - 120px);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px) brightness(0.9);
  transform: scale(1.05);
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 25px;
  color: whitesmoke;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
@media (max-width: 480px) {
  .hero p span {
    white-space: normal !important;
    display: block;
    margin-top: 5px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 5%;
  margin: -60px 5% 0;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  text-align: center;
  transform: translateZ(0);
}
@media (max-width: 992px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }
}
@media (max-width: 576px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}
.stat h3 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 5px;
}
.stat p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.tilt-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  transition:
    transform 0.1s ease-out,
    box-shadow 0.3s ease;
  transform-style: preserve-3d;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  perspective: 1000px;
  will-change: transform;
  transform: translateZ(0);
  cursor: pointer;
}
.tilt-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.tilt-card-content {
  transform: translateZ(30px);
  padding: 40px;
  pointer-events: none;
}

.section {
  padding: 60px 5% 45px;
}
#technology {
  padding-bottom: 30px;
}
#csr {
  padding-top: 30px;
  padding-bottom: 15px;
}
#products {
  padding-top: 15px;
  padding-bottom: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 30px auto 15px;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  bottom: 0;
  left: 21px;
  margin-left: -1px;
}
body.dark .timeline::before {
  background-color: rgba(255, 255, 255, 0.1);
}
.timeline-progress {
  position: absolute;
  width: 2px;
  background: var(--primary);
  top: 0;
  left: 21px;
  margin-left: -1px;
  height: 0;
  z-index: 1;
  will-change: height;
  transition: height 0.3s ease-out;
}
.timeline-item {
  padding: 15px 0 15px 50px;
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}
.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 14px;
  background-color: var(--card-bg);
  border: 3px solid #cbd5e1;
  top: 20px;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s ease;
}
.timeline-item.active .timeline-dot {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 0 10px rgba(58, 134, 255, 0.4);
  transform: scale(1.1);
}
.timeline-card {
  background: transparent;
  padding: 5px 0 5px 20px;
  border: none;
  box-shadow: none;
}
.timeline-date {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  display: inline-block;
  font-size: 1.1rem;
  position: relative;
}
.timeline-item.active .timeline-date::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: slideLine 0.6s ease forwards 0.3s;
}
@keyframes slideLine {
  to {
    transform: scaleX(1);
  }
}
.tech-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-weight: 500;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow:
    0 15px 35px rgba(0, 86, 179, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.6s ease,
    border-color 0.6s ease;
  transform: translateZ(0);
}
body.dark .glass-card {
  background: rgba(15, 23, 42, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.pinterest-grid {
  column-count: 4;
  column-gap: 8px;
  width: 100%;
}
@media (max-width: 900px) {
  .pinterest-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .pinterest-grid {
    column-count: 1;
  }
}
.gallery-item-premium {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
  transform: translateZ(0);
  margin-bottom: 8px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  will-change: transform, box-shadow;
  cursor: pointer;
}
body.dark .gallery-item-premium {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.gallery-item-premium:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 86, 179, 0.15);
  z-index: 2;
}
body.dark .gallery-item-premium:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.gallery-item-premium img,
.gallery-item-premium video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1;
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.gallery-item-premium:hover .video-play-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}
.glass-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.gallery-item-premium:hover .glass-caption {
  transform: translateY(0);
  opacity: 1;
}
.glass-caption h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.glass-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  margin: 0;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
#lightbox-media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#lightbox-media-wrapper img,
#lightbox-media-wrapper video {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: 0.4s;
  object-fit: contain;
}
.lightbox.active #lightbox-media-wrapper img,
.lightbox.active #lightbox-media-wrapper video {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  transition: 0.3s;
  z-index: 10;
  font-weight: 300;
  cursor: pointer;
}
.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}
.lightbox-cap {
  position: absolute;
  bottom: 40px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 35px 0;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  transform: translateZ(0);
}
.marquee-content {
  display: flex;
  gap: 80px;
  padding-right: 80px;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.client-item {
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0.6;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: 0.3s;
}
.client-item:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.05);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  color: var(--text);
  border-radius: 24px 24px 0 0;
  margin-top: 20px;
  padding: 45px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
body.dark .contact-section {
  background: linear-gradient(to bottom, var(--bg-color-dark), #0b1121);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.contact-header {
  text-align: center;
  margin-bottom: 30px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}
.contact-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
  transform: translateZ(0);
  cursor: pointer;
}
.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.contact-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #1e293b;
  font-size: 1.1rem;
}
.contact-box p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-box a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.contact-box a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.contact-box a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.contact-box a:hover::after {
  width: 100%;
}
body.dark .contact-box a {
  color: #cbd5e1;
}
body.dark .contact-box a:hover {
  color: var(--primary-light);
}
body.dark .contact-box a::after {
  background-color: var(--primary-light);
}
.contact-address-link {
  text-decoration: none;
  color: inherit !important;
  display: block !important;
  transition:
    transform 0.3s ease,
    color 0.3s ease !important;
  position: relative;
}
.contact-address-link::after {
  display: none;
}
.contact-address-link:hover {
  transform: translateY(-2px) !important;
  color: var(--primary) !important;
}
body.dark .contact-address-link:hover {
  color: var(--primary-light) !important;
}
body.dark .contact-box {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
body.dark .contact-box h4 {
  color: #f1f5f9;
}
body.dark .contact-box p {
  color: #cbd5e1;
}
.contact-box.premium-box {
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.03),
    rgba(58, 134, 255, 0.08)
  );
  border: 1px solid rgba(0, 86, 179, 0.1);
  grid-column: 1 / -1;
}
body.dark .contact-box.premium-box {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(0, 0, 0, 0)
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.contact-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
body.dark .contact-icon {
  stroke: var(--primary-light);
}
.map-container {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transform: translateZ(0);
  cursor: pointer;
}
.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
body.dark .map-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.4);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

footer {
  background: linear-gradient(to bottom, #ffffff, #f1f5f9);
  padding: 15px 5%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
footer p {
  margin: 0;
  transition: color 0.3s ease;
}
footer p:hover {
  color: var(--primary);
}
body.dark footer {
  background: linear-gradient(to bottom, var(--bg-color-dark), #0b1121);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
  footer {
    padding: 15px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.iso-premium-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.25),
    rgba(58, 134, 255, 0.05)
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  margin: 20px auto 0;
  max-width: 900px;
  transform: translateZ(0);
}
body.dark .iso-premium-wrapper {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.3),
    rgba(15, 23, 42, 0.2)
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.iso-glow-blob-1,
.iso-glow-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: isoFloatGlow 12s infinite alternate ease-in-out;
  pointer-events: none;
}
.iso-glow-blob-1 {
  top: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(0, 86, 179, 0.15) 0%,
    transparent 70%
  );
}
.iso-glow-blob-2 {
  bottom: -20%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(58, 134, 255, 0.1) 0%,
    transparent 70%
  );
  animation-delay: -6s;
}
body.dark .iso-glow-blob-1 {
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.15) 0%,
    transparent 70%
  );
}
body.dark .iso-glow-blob-2 {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
}
@keyframes isoFloatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 20px) scale(1.1);
  }
}
.iso-glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: 23px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}
.iso-split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .iso-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .iso-glass-panel {
    padding: 30px 25px;
  }
}
.iso-dual-cards-container {
  position: relative;
  width: 75%;
  margin: 0 auto;
  aspect-ratio: 4/5;
  z-index: 2;
  perspective: 1000px;
  outline: none;
  touch-action: pan-y;
}
.iso-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform, opacity;
}
.iso-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
}
body.dark .iso-slide {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
body.dark .iso-slide.active {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.active-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(58, 134, 255, 0);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow 0.8s ease;
}
.iso-slide.active .active-glow {
  box-shadow: inset 0 0 40px rgba(58, 134, 255, 0.15);
}
body.dark .iso-slide.active .active-glow {
  box-shadow: inset 0 0 40px rgba(96, 165, 250, 0.1);
}
.iso-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
.iso-toggle-btn {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 86, 179, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateZ(0);
  cursor: pointer;
}
body.dark .iso-toggle-btn {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}
.iso-toggle-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.08);
}
body.dark .iso-toggle-btn:hover {
  color: var(--primary-light);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.iso-toggle-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
  transform: scale(1.05);
}
body.dark .iso-toggle-btn.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  color: #0f172a;
}
.iso-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.iso-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0, 86, 179, 0.1);
  z-index: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
body.dark .iso-badge {
  background: rgba(15, 23, 42, 0.9);
  color: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.iso-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iso-badge-inline {
  display: inline-block;
  background: rgba(0, 86, 179, 0.06);
  color: var(--primary);
  border: 1px solid rgba(0, 86, 179, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  width: fit-content;
}
body.dark .iso-badge-inline {
  background: rgba(96, 165, 250, 0.1);
  color: var(--primary-light);
  border-color: rgba(96, 165, 250, 0.2);
}
.iso-subtitle {
  text-align: left !important;
  margin-bottom: 0.5rem;
  display: block;
}
.iso-title {
  text-align: left !important;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}
.iso-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.iso-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.iso-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.3s ease;
}
.iso-list li:hover {
  transform: translateX(6px);
}
.iso-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  background: rgba(0, 86, 179, 0.06);
  padding: 8px;
  border-radius: 50px;
  box-sizing: content-box;
  flex-shrink: 0;
  border: 1px solid rgba(0, 86, 179, 0.1);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
body.dark .iso-icon {
  color: var(--primary-light);
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
}
.iso-list li:hover .iso-icon {
  background: var(--primary);
  color: #ffffff;
}
.iso-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: linear-gradient(to right, rgba(0, 86, 179, 0.05), transparent);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  width: fit-content;
}
body.dark .iso-trust-badge {
  background: linear-gradient(to right, rgba(96, 165, 250, 0.08), transparent);
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: trustPulse 2s infinite;
}
body.dark .trust-dot {
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-light);
}
@keyframes trustPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ganesh-premium-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
  max-width: 850px;
  transform: translateZ(0);
}
body.dark .ganesh-premium-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.ganesh-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.08);
}
body.dark .ganesh-premium-card:hover {
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.12);
}
.ganesh-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(34, 197, 94, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.ganesh-card-content {
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.ganesh-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  width: fit-content;
}
body.dark .ganesh-badge {
  color: #4ade80;
}
.ganesh-heading {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}
.ganesh-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ganesh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.ganesh-tags span {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
body.dark .ganesh-tags span {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.ganesh-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #16a34a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
  cursor: pointer;
}
.ganesh-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
  background: #15803d;
}
.ganesh-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.ganesh-cta-btn:hover svg {
  transform: translateX(6px);
}
.ganesh-card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 100%;
}
.ganesh-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--card-bg) 0%, transparent 40%);
  z-index: 1;
}
body.dark .ganesh-image-glow {
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.6) 0%,
    transparent 40%
  );
}
.ganesh-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ganesh-premium-card:hover .ganesh-card-image img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .ganesh-premium-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .ganesh-card-content {
    padding: 25px 20px;
    order: 2;
  }
  .ganesh-card-image {
    min-height: 220px;
    order: 1;
  }
  .ganesh-image-glow {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--card-bg) 100%
    );
  }
  body.dark .ganesh-image-glow {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      rgba(15, 23, 42, 0.6) 100%
    );
  }
}

.legacy-premium-section {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.legacy-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(58, 134, 255, 0.04) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
body.dark .legacy-bg-glow {
  background: radial-gradient(
    circle,
    rgba(58, 134, 255, 0.08) 0%,
    transparent 70%
  );
}
.relative-z {
  position: relative;
  z-index: 2;
}
.legacy-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .legacy-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.legacy-text-side {
  max-width: 550px;
}
.legacy-subtitle {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.legacy-title {
  text-align: left;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
.legacy-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.legacy-quote {
  border-left: 3px solid var(--primary);
  padding-left: 25px;
  margin-bottom: 2rem;
  position: relative;
}
.legacy-quote p {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.quote-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legacy-visual-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.founder-card-premium {
  transform-origin: center bottom;
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
}
.founder-card-premium:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow:
    0 25px 50px rgba(0, 86, 179, 0.12),
    inset 0 0 20px rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}
body.dark .founder-card-premium:hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.secondary-leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 0;
  width: 100%;
  max-width: 650px;
  align-items: stretch;
}
@media (max-width: 600px) {
  .secondary-leaders-grid {
    grid-template-columns: 1fr;
  }
  .founder-card-premium {
    max-width: 100%;
  }
  .md-card,
  .exec-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.secondary-leaders-grid .director-card-premium {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateZ(0);
}
body.dark .secondary-leaders-grid .director-card-premium {
  background: #1e293b !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}
.secondary-leaders-grid .director-card-premium:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.dark .secondary-leaders-grid .director-card-premium:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.md-card {
  max-width: 260px;
  margin: 0 auto;
}
.exec-card {
  max-width: 220px;
  margin: 0 auto;
}
.portrait-img-wrapper {
  position: relative;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0;
  width: 100%;
  max-width: 100% !important;
  border-radius: 24px 24px 0 0 !important;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}
.portrait-img-wrapper.large {
  aspect-ratio: 1.25 / 1;
}
.secondary-leaders-grid .portrait-img-wrapper {
  border-radius: 12px 12px 0 0 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.secondary-leaders-grid .portrait-img-wrapper.small {
  aspect-ratio: 1 / 1.1;
  flex-shrink: 0;
}
.leader-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.8s ease;
}
.founder-card-premium .tilt-card-content,
.secondary-leaders-grid .director-card-premium .tilt-card-content {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  flex: 1;
}
.founder-card-premium:hover .leader-img {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}
.secondary-leaders-grid .director-card-premium:hover .leader-img {
  transform: scale(1.03) translateY(-3px);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
}
.premium-name-large {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #1e293b, var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
body.dark .premium-name-large {
  background: linear-gradient(135deg, #f8fafc, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.premium-name-small {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
body.dark .premium-name-small {
  color: #f8fafc;
}
@media (max-width: 768px) {
  .premium-name-large {
    font-size: 1.6rem;
  }
  .premium-name-small {
    font-size: 1rem;
  }
  .secondary-leaders-grid .premium-name-small {
    font-size: 0.85rem;
  }
  .secondary-leaders-grid .leader-designation-list li {
    font-size: 0.55rem;
    padding: 3px 6px;
  }
}
.secondary-leaders-grid .premium-name-small {
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.1;
}
.leader-designation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.leader-designation-list li {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(0, 86, 179, 0.04);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin: 3px auto;
  width: fit-content;
  border: 1px solid rgba(0, 86, 179, 0.1);
  backdrop-filter: blur(4px);
}
body.dark .leader-designation-list li {
  background: rgba(59, 130, 246, 0.05);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.secondary-leaders-grid .leader-designation-list li {
  font-size: 0.65rem;
  padding: 4px 8px;
  margin: 2px auto;
  letter-spacing: 0.05em;
}
.founder-card-premium .card-text-container {
  padding: 0 20px 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -15px;
  position: relative;
  z-index: 2;
}
.secondary-leaders-grid .card-text-container {
  margin-top: 0 !important;
  padding: 12px 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}
.legacy-mini-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.mini-tl-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.mini-tl-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(58, 134, 255, 0.4);
  position: relative;
}
.mini-tl-dot::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
}
.mini-tl-year {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.mini-tl-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .legacy-mini-timeline {
    flex-direction: column;
    gap: 20px;
    border-top: none;
    border-left: 2px solid var(--border);
    padding-top: 0;
    padding-left: 20px;
    margin-left: 10px;
  }
}
.reveal-stagger-1 {
  transition-delay: 0.1s;
}
.reveal-stagger-2 {
  transition-delay: 0.3s;
}
.reveal-stagger-3 {
  transition-delay: 0.5s;
}
.reveal-stagger-4 {
  transition-delay: 0.7s;
}
.reveal-stagger-5 {
  transition-delay: 0.9s;
}

.csr-premium-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 2px;
  background:
    linear-gradient(rgba(10, 40, 20, 0.35), rgba(10, 40, 20, 0.35)),
    url("/images/CSR&SUSTAINABILITY.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(31, 111, 80, 0.15);
  transform: translateZ(0);
  will-change: transform;
}
body.dark .csr-premium-wrapper {
  background:
    linear-gradient(rgba(5, 20, 10, 0.5), rgba(5, 20, 10, 0.5)),
    url("/images/CSR&SUSTAINABILITY.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.csr-glow-green {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(46, 139, 87, 0.12) 0%,
    transparent 70%
  );
  z-index: 0;
  transform: translateZ(0);
  pointer-events: none;
}
body.dark .csr-glow-green {
  background: radial-gradient(
    circle,
    rgba(63, 174, 106, 0.15) 0%,
    transparent 70%
  );
}
.csr-glow-blue {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
  transform: translateZ(0);
  pointer-events: none;
}
body.dark .csr-glow-blue {
  background: radial-gradient(
    circle,
    rgba(46, 139, 87, 0.1) 0%,
    transparent 70%
  );
}
.csr-glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(110%);
  -webkit-backdrop-filter: blur(6px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}
body.dark .csr-glass-panel {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.csr-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .csr-content-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .csr-glass-panel {
    padding: 30px 20px;
  }
}
.csr-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.csr-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.csr-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.csr-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  will-change: transform, background, box-shadow;
  transform: translateZ(0);
  backdrop-filter: blur(8px);
}
body.dark .csr-list li {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}
.csr-list li:hover {
  transform: translateX(10px) translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
body.dark .csr-list li:hover {
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
.csr-list-icon {
  width: 28px;
  height: 28px;
  color: #4caf50;
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
  filter: drop-shadow(0 0 6px rgba(76, 175, 80, 0.35));
}
.csr-list li:hover .csr-list-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.6));
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.venture-card {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.05),
    rgba(14, 165, 233, 0.05)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transform: translateZ(0);
}
body.dark .venture-card {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  border-color: rgba(255, 255, 255, 0.1);
}
.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.08),
    rgba(14, 165, 233, 0.08)
  );
}
body.dark .venture-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
}
.venture-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}
.venture-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.venture-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.venture-desc {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
}
