
:root {
  --cyan: #00C2D4;
  --cyan-light: #00E5F9;
  --cyan-dark: #00A3B3;
  --cyan-glow: rgba(0, 194, 212, 0.5);
  --black: #0A0A0A;
  --black-light: #121212;
  --black-lighter: #1a1a1a;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #444444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
::selection { background: var(--cyan); color: var(--black); }



/* =================== NAVBAR =================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  height: 60px;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  height: 55px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent);
  animation: rotate 3s linear infinite;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--black);
  border-radius: 50%;
}

.nav-logo-icon svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.nav-logo-text {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cyan); }
.nav-links a.active::after { width: 100%; }

@media (min-width: 1024px) {
  .nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-time {
  font-size: 0.65rem;
  color: var(--gray);
  text-align: right;
  line-height: 1.3;
}

.nav-time span {
  display: block;
  color: var(--cyan);
  font-weight: 600;
}

.btn-primary {
  padding: 0.6rem 1.25rem;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cyan-glow);
}

.btn-secondary {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 194, 212, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  background: transparent;
  border: none;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }

.mobile-submenu {
  width: 100%;
  margin-top: 1rem;
  border: none;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
}

.mobile-submenu summary {
  list-style: none;
  padding: 0;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-submenu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu summary::after {
  content: '+';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.mobile-submenu[open] summary::after {
  transform: rotate(45deg);
}

.mobile-submenu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0 1rem;
  align-items: center;
}

.mobile-submenu-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  outline: none;
  background: transparent !important;
  -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-links a:focus,
.mobile-submenu-links a:active {
  outline: none;
  background: transparent !important;
  color: var(--white);
}

/* =================== DROPDOWN =================== */
.nav-links li.dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .dropdown-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-links li.dropdown:hover .dropdown-arrow,
.nav-links li.dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  /* left: 70%; */
  transform: translateX(-50%) translateY(10px);
  width: min(550px, calc(100vw - 3rem));
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.dropdown-panel::before {
  content: none;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dropdown-panel.industries-panel {
  left: 96%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
     grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dropdown-panel.services-panel {
  left: -40%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Only enable hover dropdown on desktop (laptop/desktop) */
@media (min-width: 1025px) {
  .nav-links li.dropdown:hover .dropdown-panel,
  .nav-links li.dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.dropdown-column {
  display: grid;
  gap: 0.75rem;
}

.dropdown-column h4 {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.dropdown-column a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.75;
  transition: color 0.2s;
}

.dropdown-column a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .dropdown-panel {
    display: none;
  }
}

/* =================== ABOUT HERO - UNIQUE SPLIT DESIGN =================== */
#about-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;

      background: url("/assets/about-hero-img.jpg") center/cover no-repeat;


}

/* Dark overlay for better text visibility */
#about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* adjust 0.3 - 0.7 */
  z-index: 1;
}

/* Ensure content stays above overlay */
#about-hero > * {
  position: relative;
  z-index: 2;
}
@media (min-width:2560px) {
    #about-hero {
        min-height:60vh;
    }
    .about-hero-left{
      position: relative;
      left: 550px;
    }
}

.about-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 80px 8%;
  position: relative;
  z-index: 10;
}

.about-hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.about-breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.about-breadcrumb a:hover { color: var(--cyan); }

.about-breadcrumb span {
  color: var(--gray-dark);
  font-size: 0.7rem;
}

.about-breadcrumb .current {
  color: var(--cyan);
  font-weight: 600;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 194, 212, 0.08);
  border: 1px solid rgba(0, 194, 212, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.about-hero-badge-icon {
  width: 24px;
  height: 24px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.about-hero-title .line {
  display: block;
  overflow: hidden;
}

.about-hero-title .line span {
  display: inline-block;
}

.about-hero-title .highlight {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.about-hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-hero-stat {
  position: relative;
}

.about-hero-stat::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.about-hero-stat:last-child::after { display: none; }

.about-hero-stat-value {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-hero-stat-label {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Hero Right - 3D Canvas */
.about-hero-right {
  position: relative;
  /* background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%); */
  overflow: hidden;
}

.counter::after {
  content: "+";
}

/* .hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 194, 212, 0.2);
} */

.global-stat-value {
  transition: transform 0.3s ease;
}

.hover-scale:hover .global-stat-value {
  transform: scale(1.15);
}

#about-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-visual-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Floating Elements */
.about-hero-float {
  position: absolute;
  z-index: 10;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  pointer-events: auto;
}

.about-hero-float-1 {
  top: 20%;
  left: 10%;
  animation: floatAbout1 6s ease-in-out infinite;
}

.about-hero-float-2 {
  top: 55%;
  right: 8%;
  animation: floatAbout2 7s ease-in-out infinite;
}

.about-hero-float-3 {
  bottom: 18%;
  left: 15%;
  animation: floatAbout3 5s ease-in-out infinite;
}

@keyframes floatAbout1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatAbout2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes floatAbout3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.float-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.float-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.float-content p {
  font-size: 0.7rem;
  color: var(--gray);
}

/* Scroll CTA */
.about-scroll-cta {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 20px; }
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.video-section {
  padding: 80px 20px;
  background: #000;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 1100px; /* width control */
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 600px; /* height control */
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Play button */
.play-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #facc15;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* =================== OUR STORY SECTION =================== */
#our-story {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.story-bg-text {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-size: clamp(15vw, 25vw, 30rem);
  font-weight: 900;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.story-header-left .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.story-header-left .section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.story-header-left h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.story-header-left h2 .highlight { color: var(--cyan); }

.story-header-right p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--gray-light);
  line-height: 1.9;
}

/* Story Timeline */
.story-timeline {
  position: relative;
  padding-left: 80px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0, 194, 212, 0.1));
}

.story-item {
  position: relative;
  padding: 0 0 4rem 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.story-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.story-item:last-child { padding-bottom: 0; }

.story-year {
  position: absolute;
  left: -80px;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--black);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.05em;
  z-index: 2;
  transition: all 0.4s;
}

.story-year:hover {
  -webkit-text-fill-color: white;

}

.story-item:hover .story-year {
  background: var(--cyan);
  color: var(--black);
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.story-content {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.story-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.story-item:hover .story-content {
  border-color: rgba(0, 194, 212, 0.2);
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(0, 194, 212, 0.08);
}

.story-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.story-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.story-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 194, 212, 0.1);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* =================== MISSION & VISION =================== */
#mission-vision {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.mv-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mv-glow-1 { top: -200px; right: -200px; }
.mv-glow-2 { bottom: -200px; left: -200px; }

.mv-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  position: relative;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transition: transform 0.5s;
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 194, 212, 0.3);
  box-shadow: 0 30px 60px rgba(0, 194, 212, 0.1);
}

.mv-card-bg-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  opacity: 0.03;
}

.mv-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.mv-card-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(0, 194, 212, 0.3);
  border-radius: 30px;
  animation: rotate 20s linear infinite;
}

.mv-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mv-list {
  list-style: none;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.mv-list li svg {
  flex-shrink: 0;
  color: var(--cyan);
}

/* =================== CORE VALUES =================== */
#core-values {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.values-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  justify-content: center;
}

.values-header .section-label::before,
.values-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.values-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.values-header h2 .highlight { color: var(--cyan); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 194, 212, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.value-card:hover::before { opacity: 1; }

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 212, 0.25);
  box-shadow: 0 20px 50px rgba(0, 194, 212, 0.1);
}

.value-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 194, 212, 0.05);
  line-height: 1;
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.15), rgba(0, 194, 212, 0.05));
  border: 1px solid rgba(0, 194, 212, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px var(--cyan-glow);
}

.value-card:hover .value-icon svg { stroke: var(--black); }

.value-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =================== GLOBAL PRESENCE =================== */
#global {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.global-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.global-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.global-content .section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.global-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.global-content h2 .highlight { color: var(--cyan); }

.global-content > p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.global-stat {
  padding: 1.5rem;
  background: rgba(0, 194, 212, 0.05);
  border: 1px solid rgba(0, 194, 212, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.global-stat:hover {
  background: rgba(0, 194, 212, 0.1);
  transform: translateY(-3px);
}

.global-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.global-stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Globe Visualization */
.global-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.global-visual {
  display: flex;
  justify-content: center;
}

.image-box {
  width: 100%;
  max-width: 400px; /* size control */
  aspect-ratio: 1/1; /* perfect square */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111; /* fallback */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .global-visual {
  position: relative;
  height: 500px;
}

#globe-canvas {
  position: absolute;
  inset: 0;
}

.globe-location {
  position: absolute;
  z-index: 10;
}

.globe-location-dot {
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  position: relative;
  animation: locationPulse 2s ease-in-out infinite;
}

.globe-location-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  opacity: 0.3;
  animation: locationRing 2s ease-in-out infinite;
}

@keyframes locationPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--cyan-glow); }
  50% { transform: scale(1.2); box-shadow: 0 0 20px var(--cyan-glow); }
}

@keyframes locationRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.globe-location-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
}

.globe-location-label h5 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.globe-location-label span {
  font-size: 0.6rem;
  color: var(--gray);
}

.globe-location-1 { top: 30%; left: 25%; }
.globe-location-2 { top: 45%; right: 30%; }
.globe-location-3 { bottom: 30%; left: 40%; } */

/* =================== AWARDS SECTION =================== */
#awards {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.awards-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.awards-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  justify-content: center;
}

.awards-header .section-label::before,
.awards-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.awards-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.awards-header h2 .highlight { color: var(--cyan); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.award-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  animation: rotate 4s linear infinite;
}

.award-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--black);
  border-radius: 18px;
  z-index: 1;
}

.award-card:hover::before { opacity: 0.3; }

.award-card:hover {
  transform: translateY(-8px);
}

.award-card-content {
  position: relative;
  z-index: 2;
}

.award-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.1), rgba(0, 194, 212, 0.05));
  border: 1px solid rgba(0, 194, 212, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.4s;
}

.award-card:hover .award-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  transform: scale(1.1);
}

.award-card:hover .award-icon svg { stroke: var(--black); }

.award-year {
  font-size: 0.65rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.award-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.award-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* =================== PARTNERS/CLIENTS LOGO =================== */
#partners {
  padding: clamp(60px, 10vw, 100px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.partners-track {
  display: flex;
  gap: 5rem;
  animation: partnersSlide 25s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnersSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 60px;
  opacity: 0.4;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* =================== CTA SECTION =================== */
#about-cta {
  padding: clamp(100px, 18vw, 180px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 194, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 50% -20%, rgba(0, 194, 212, 0.1), transparent);
}

.about-cta-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 194, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 212, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.about-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.about-cta-content .section-label::before,
.about-cta-content .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.about-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-cta-content h2 .highlight { color: var(--cyan); }

.about-cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-buttons .btn-primary {
  padding: 1rem 2rem;
  font-size: 0.8rem;
}

.about-cta-buttons .btn-secondary {
  padding: 1rem 2rem;
  font-size: 0.8rem;
}

/* =================== FOOTER =================== */
footer {
  padding: clamp(40px, 8vw, 60px) clamp(1rem, 4vw, 3rem) clamp(25px, 4vw, 35px);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  min-height: 32px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--cyan);
  width: 20px;
  height: 20px;
  overflow: visible;
  min-width: 20px;
  min-height: 20px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.7rem; color: var(--gray); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--cyan); }

/* =================== RESPONSIVE =================== */

/* Large Desktop */
@media (min-width: 2560px) {
  html { font-size: 18px; }
  nav { padding: 1rem 5rem; height: 70px; }
  nav.scrolled { height: 65px; }
}

@media (max-width: 1400px) {
  nav { padding: 0.75rem 2rem; }
  .about-hero-left { padding: 120px 4% 80px 5%; }
  .global-container { gap: 2rem; }
}

@media (max-width: 1200px) {
  nav { padding: 0.6rem 1.5rem; height: 55px; }
  nav.scrolled { height: 50px; }
  .nav-links { gap: 1.5rem; }
  .nav-time { display: none; }
  
  #about-hero { grid-template-columns: 1fr; min-height: auto; }
  
  .about-hero-left { 
    padding: 120px 5% 60px;
    text-align: center;
    align-items: center;
  }
  
  .about-hero-desc { margin: 0 auto 2rem; }
  .about-hero-stats { justify-content: center; }
  .about-hero-badge { margin: 0 auto 1.5rem; }
  .about-breadcrumb { justify-content: center; }
  
  .about-hero-right {
    height: 400px;
    display: block;
  }
  
  .story-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .global-container { grid-template-columns: 1fr; }
  .global-visual { height: 350px; margin-top: 2rem; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none !important; }
  .mobile-menu-btn { display: flex; }
  
  nav { padding: 0.5rem 1.25rem; height: 52px; }
  nav.scrolled { height: 48px; }
  
  .story-timeline { padding-left: 60px; }
  .story-timeline::before { left: 20px; }
  .story-year { left: -60px; width: 50px; height: 50px; font-size: 0.65rem; }
  
  .about-hero-float { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0.5rem 1rem; height: 50px; }
  nav.scrolled { height: 46px; }
  
  .nav-logo-icon { width: 32px; height: 32px; }
  .nav-logo-icon svg { width: 12px; height: 12px; }
  .nav-logo-text { font-size: 0.75rem; letter-spacing: 0.08em; }
  
  .btn-primary { padding: 0.5rem 1rem; font-size: 0.65rem; }
  
  .about-hero-left { padding: 90px 1.25rem 40px; }
  .about-hero-stats { flex-direction: column; gap: 1.5rem; }
  .about-hero-stat::after { display: none; }
  
  .story-timeline { padding-left: 0; }
  .story-timeline::before { display: none; }
  .story-year { 
    position: relative; 
    left: 0; 
    margin-bottom: 1rem;
  }
  .story-item { padding-left: 0; }
  
  .values-grid,
  .team-grid,
  .awards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 0.4rem 0.75rem; height: 48px; }
  nav.scrolled { height: 44px; }
  
  .nav-logo-icon { width: 28px; height: 28px; }
  .nav-logo-text { font-size: 0.65rem; }
  
  .mobile-menu-btn { width: 35px; height: 35px; padding: 6px; }
  .mobile-menu-btn span { width: 18px; }
  
  .mobile-menu a { font-size: 1rem; }
  
  .btn-primary { padding: 0.45rem 0.85rem; font-size: 0.6rem; }
  
  .about-cta-buttons { flex-direction: column; align-items: center; }
  .about-cta-buttons .btn-primary,
  .about-cta-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  
  .global-stats { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  #about-hero {
    min-height: auto;
    height: auto;
  }
  
  .about-hero-right {
    height: auto;
    min-height: 300px;
    display: none; 
  }
  
  .about-hero-left {
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  #about-hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  
  .about-hero-right {
    height: auto;
    min-height: 400px;
  }
}

#our-story {
  padding-top: 60px; /* Yeh bhi add kar */
}

@media (max-width: 360px) {
  .about-hero-title { font-size: 2rem; }
  .nav-logo-text img { width: 130px; }
  
}


@media (max-width:380px) {
  .global-stat{width: 320px}
  .image-box{width: 330px}
}
@media (width:768px) {
  .myBtn{
    display: none;
  }
}
