/* Telious Master Style Guide — Premium, Modern, AI-Themed */

/* ==================== CSS Variables ==================== */
:root {
  --primary-gold: #E8CE1D;
  --primary-olive: #5E650B;
  --light-beige: #DAD9BE;
  --dark-brown: #1a1410;
  --darker-brown: #2d2416;
  --nav-light: rgba(255, 255, 255, 0.92);
  --dark-blue: #1e1b4b;
  --darker: #0f0a1f;
  --light: #f8fafc;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gradient: linear-gradient(135deg, var(--primary-gold), var(--primary-olive));
  --gradient-dark: linear-gradient(135deg, #1a1410 0%, #2d2416 100%);
  --gradient-light: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(232, 206, 29, 0.15);
  --shadow-glow: 0 0 40px rgba(232, 206, 29, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Typography Scaling */
  --font-main: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;

  /* Spacing System */
  --space-unit: 1rem;
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: var(--space-unit);
  --space-lg: calc(1.5 * var(--space-unit));
  --space-xl: calc(2 * var(--space-unit));
  --space-2xl: calc(3 * var(--space-unit));
  --section-padding: 80px;
}

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--light);
  color: var(--gray-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', var(--font-main);
  color: var(--dark-brown);
  line-height: 1.3;
  letter-spacing: var(--tracking-tight);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ==================== Navigation Bar ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: var(--nav-light);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--nav-light);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding: 0 var(--space-lg);
  height: 70px;
  /* Reduced specific navbar height for mobile/desktop balance */
}

/* Logo container and image sizing */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  height: 100%;
  min-width: 100px;
}

.logo-img {
  height: auto;
  max-height: 103px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.5px;
  display: inline-block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
    /* Increase visible size */
    width: auto;
    max-width: 160px;
  }

  .footer-brand img {
    height: 60px;
    width: 60px;
  }
}

.nav-right-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  flex: 1;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-800);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ==================== Dropdown Menu Styling ==================== */
.nav-links .dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links .dropdown-toggle::after {
  content: '▼';
  font-size: 0.45rem;
  margin-left: 4px;
  transition: var(--transition);
  display: inline;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav-links .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  padding: 12px 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  height: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--gray-800);
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  height: auto;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--gray-100);
  padding-left: 24px;
  color: var(--primary-gold);
}

/* Support Number in Navbar */
.nav-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid var(--gray-200);
  height: 100%;
}

.navbar.scrolled .nav-support {
  border-left-color: var(--gray-200);
}

.nav-support svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-800);
  flex-shrink: 0;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1.2;
}

.support-label {
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.support-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  line-height: 1.1;
}

.support-number:hover {
  color: var(--primary-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--gray-800);
}



/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding-top: 70px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(232, 206, 29, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% 80%, rgba(94, 101, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(232, 206, 29, 0.05) 0%, transparent 70%);
  animation: gradientPulse 8s ease-in-out infinite alternate;
}

@keyframes gradientPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 206, 29, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 206, 29, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  opacity: 0.5;
}

.grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(232, 206, 29, 0.18), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero:hover .grid-lines::before {
  opacity: 1;
}

.grid-lines::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(232, 206, 29, 0.15) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

/* Professional SVG Waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 200px;
  z-index: 1;
  pointer-events: none;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.slider {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
}

.slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide-text {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.slide-text h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  text-shadow: 0 2px 15px rgba(232, 206, 29, 0.2);
}

.slide-text p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(232, 206, 29, 0.1);
}



/* ==================== Slide Animations ==================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(50px);
  }
}



/* Word-by-word animation */
.word-anim {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, clip-path;
  white-space: pre-wrap;
}

.slide.active .slide-text .word-anim {
  animation: wordReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--word-index) * 0.4s);
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    clip-path: inset(0 100% 0 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--dark-brown);
  box-shadow: 0 4px 20px rgba(232, 206, 29, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 206, 29, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-brown);
  transform: translateY(-3px);
}

.btn-card {
  background: var(--gradient);
  color: var(--dark-brown);
  padding: 0.875rem 1.75rem;
  font-size: 0.9rem;
  border-radius: 50px;
}

.btn-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ==================== Section Styles ==================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.25rem;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-wrap: balance;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* ==================== Services Section ==================== */
.services-section {
  padding: 80px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==================== Service Card Styles ==================== */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: var(--gradient);
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .card-icon svg {
  stroke: var(--white);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: left;
}

.service-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ==================== Technology Grid Styles ==================== */
.tech-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tech-box-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.tech-box-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.tech-box-card h4 {
  color: var(--primary-olive);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tech-box-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .tech-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-box-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== About Section ==================== */
.about-section {
  padding: 80px 0;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.image-wrapper-jainy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jainy-frame {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 15px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  filter: grayscale(100%);
  transition: none;
  border-radius: var(--radius-md);
}

.jainy-frame:hover {
  filter: grayscale(100%);
  /* Ensure no color on hover */
}



.ring-1 {
  width: 160px;
  height: 160px;
  border-color: var(--primary-gold);
  animation: rotate 8s linear infinite;
}

.ring-2 {
  width: 220px;
  height: 220px;
  border-color: var(--primary-olive);
  animation: rotate 12s linear infinite reverse;
}

.ring-3 {
  width: 280px;
  height: 280px;
  border-color: var(--primary-gold);
  animation: rotate 16s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ai-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-olive);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.ai-particles span:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.ai-particles span:nth-child(2) {
  top: 10%;
  left: 50%;
  animation-delay: 0.5s;
}

.ai-particles span:nth-child(3) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.ai-particles span:nth-child(4) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.ai-particles span:nth-child(5) {
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.ai-particles span:nth-child(6) {
  bottom: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.ai-particles span:nth-child(7) {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.ai-particles span:nth-child(8) {
  top: 50%;
  left: 10%;
  animation-delay: 3.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==================== Contact Section ==================== */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: var(--gray-100);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.contact-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: center;
}

.contact-card p a {
  color: var(--primary-gold);
}

.contact-card p a:hover {
  text-decoration: underline;
}

.contact-card .phone {
  margin-top: 1rem;
  font-weight: 600;
}

/* ==================== Service Hero Section ==================== */
.service-hero {
  position: relative;
  min-height: 50vh;
  padding: 180px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-hero .gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(232, 206, 29, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% 80%, rgba(94, 101, 11, 0.08) 0%, transparent 50%);
  animation: gradientPulse 8s ease-in-out infinite alternate;
}

.service-hero .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 206, 29, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 206, 29, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  opacity: 0.4;
}

.service-hero .grid-lines::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 206, 29, 0.12) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  opacity: 0.6;
}

/* Floating particles for all hero sections */
.hero-bg .particles,
.service-hero .particles,
.services-hero .particles,
.career-hero .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(232, 206, 29, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(232, 206, 29, 0.9), 0 0 30px rgba(232, 206, 29, 0.5);
  animation: floatParticle 15s linear infinite;
  animation-delay: calc(var(--i) * -1.5s);
  bottom: -10px;
  left: calc(var(--i) * 7%);
}

.particles span:nth-child(even) {
  background: rgba(94, 101, 11, 0.6);
  box-shadow: 0 0 12px rgba(94, 101, 11, 0.8), 0 0 25px rgba(94, 101, 11, 0.4);
  animation-duration: 18s;
  width: 3px;
  height: 3px;
}

.particles span:nth-child(3n) {
  animation-duration: 12s;
  width: 5px;
  height: 5px;
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-hero-left {
  max-width: 600px;
}

.service-hero-left h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.service-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-wrap: pretty;
}

.service-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual-service {
  position: relative;
  width: 320px;
  height: 320px;
}

.ai-visual-service .ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: pulse 2.5s ease-in-out infinite;
}

.ai-visual-service .ai-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.4;
}

.ai-visual-service .ring-1 {
  width: 180px;
  height: 180px;
  border-color: var(--primary-gold);
  animation: rotate 8s linear infinite;
}

.ai-visual-service .ring-2 {
  width: 260px;
  height: 260px;
  border-color: var(--primary-olive);
  animation: rotate 12s linear infinite reverse;
}

.ai-visual-service .ai-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-olive);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.ai-visual-service .particle-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.ai-visual-service .particle-2 {
  top: 10%;
  right: 25%;
  animation-delay: 1s;
}

.ai-visual-service .particle-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.ai-visual-service .ring-3 {
  width: 300px;
  height: 300px;
  border-color: var(--primary-gold);
  animation: rotate 16s linear infinite;
}

.ai-visual-service .ai-dots {
  position: absolute;
  inset: 0;
  animation: rotate 20s linear infinite;
}

.ai-visual-service .ai-dots span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--primary-olive);
  border-radius: 50%;
}

.ai-visual-service .ai-dots span:nth-child(1) {
  top: 0;
  left: 50%;
}

.ai-visual-service .ai-dots span:nth-child(2) {
  top: 50%;
  right: 0;
}

.ai-visual-service .ai-dots span:nth-child(3) {
  bottom: 0;
  left: 50%;
}

.ai-visual-service .ai-dots span:nth-child(4) {
  top: 50%;
  left: 0;
}

/* ==================== Service Details Section ==================== */
.service-details {
  padding: 80px 0;
  background: var(--light);
}

/* ==================== Service Tech Section ==================== */
.service-tech {
  padding: 80px 0;
  background: var(--white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tech-item {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.tech-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: center;
}

.tech-item p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: center;
}

.tech-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-item ul li {
  font-size: 1rem;
  color: var(--gray-600);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.tech-item ul li:last-child {
  border-bottom: none;
}

/* ==================== AI Enhancement Section ==================== */
.service-ai-enhancement {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ai-enhancement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.ai-enhancement-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ai-enhancement-card .ai-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.ai-enhancement-card .ai-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 2;
}

.ai-enhancement-card:hover .ai-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(232, 206, 29, 0.3);
}

.ai-enhancement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.ai-enhancement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ai-enhancement-card:hover::before {
  opacity: 1;
}

.ai-enhancement-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  text-align: left;
}

.ai-enhancement-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: left;
}

/* ==================== Service Benefits Section ==================== */
.service-benefits {
  padding: 80px 0;
  background: var(--white);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.benefit-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: left;
}

/* ==================== Service CTA Section ==================== */
.service-cta {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
}

.service-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1.1rem;
  color: var(--dark-brown);
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta .btn-primary {
  background: var(--dark-brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-cta .btn-primary:hover {
  background: var(--darker-brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-cta .btn-secondary {
  background: transparent;
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
}

.service-cta .btn-secondary:hover {
  background: var(--dark-brown);
  color: var(--white);
}

/* ==================== Footer ==================== */
.footer {
  background: linear-gradient(135deg, #f1f5f9 0%, #e8ecf1 100%);
  color: var(--dark-brown);
  padding: 80px 0 40px;
  /* Reduced from 80px 0 40px */
  border-top: 1px solid rgba(232, 206, 29, 0.2);
  margin-top: auto;
}

.footer-text {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  letter-spacing: 0.4px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-text:hover {
  color: var(--primary-gold);
}

/* ==================== Footer Grid ==================== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 80px;
  /* Reduced from 168px for professional footer feel */
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Reduced from 1.5rem */
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.footer-brand p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 300px;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 1.5rem;
  /* Reduced from 2rem */
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ==================== Animations ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation for service cards */
.services-grid .service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.contact-grid .contact-card:nth-child(1) {
  transition-delay: 0.1s;
}

.contact-grid .contact-card:nth-child(2) {
  transition-delay: 0.2s;
}

.contact-grid .contact-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-right-section {
    gap: 0.75rem;
    /* Tighter spacing */
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
    order: 2;
    /* Move to far right */
    margin-left: 0.5rem;
  }

  .nav-support {
    order: 1;
    /* Move before toggle */
    border-left: none;
    /* Remove divider for cleaner look */
    padding-left: 0;
    margin-left: 0;
    gap: 8px;
  }

  /* Compact Support Info for Mobile */
  .support-label {
    display: none;
    /* Hide label to save space */
  }

  .support-number {
    font-size: 0.9rem;
  }

  .nav-support svg {
    width: 20px;
    height: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 280px;
    /* PROFESSIONAL DRAWER WIDTH */
    height: 100vh;
    background: rgba(15, 10, 31, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 1.5rem 2rem;
    /* TOP PADDING TO CLEAR CLOSE BUTTON */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    /* DEPTH SHADOW */
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    /* COMPACT SPACING */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* SEPARATOR */
  }

  /* Remove li border to avoid double borders */
  .nav-links li {
    border-bottom: none;
    width: 100%;
    display: block;
  }

  /* Force pure white text and reduced spacing */
  .nav-links a {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 1;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    /* Reduced spacing */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:hover {
    color: var(--primary-gold) !important;
    opacity: 1;
    transform: translateX(10px);
  }

  .nav-toggle.active span {
    background: var(--white);
    /* Make hamburger white on dark background */
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile Dropdown Styling */
  /* PROFESSIONAL MOBILE SUBMENU (Accordion Style) */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: none;
    background: transparent;
    margin-top: 0;
    padding: 0;
    width: 100%;
    border-left: 2px solid var(--primary-gold);
    /* Vertical Accent Line */
    margin-left: 10px;
    /* Indent */
  }

  .nav-links .dropdown:hover .dropdown-menu {
    display: block;
    /* Ensure it exists in DOM but controlled by height opacity */
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 40vh;
    /* Limit height for scroll */
    overflow-y: auto;
    /* enable internal scroll */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
    padding-bottom: 0;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgba(232, 206, 29, 0.5) transparent;
  }

  /* Custom Scrollbar for Chrome/Safari/Edge */
  .dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }

  .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(232, 206, 29, 0.5);
    border-radius: 4px;
  }

  .dropdown-menu a {
    color: #e2e8f0 !important;
    padding: 0.8rem 0.5rem 0.8rem 0.8rem;
    /* Optimized spacing */
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    white-space: normal;
    /* Allow text wrapping */
    line-height: 1.4;
    /* Better readability for wrapped text */
    height: auto;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle highlight */
    color: var(--primary-gold) !important;
    padding-left: 1.5rem;
    transform: none;
  }

  .nav-links .dropdown-toggle::after {
    float: right;
  }

  .slider {
    min-height: 180px;
  }

  .slide-text h1 {
    font-size: 1.5rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .ai-visual {
    width: 250px;
    height: 250px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand p {
    max-width: none;
  }

  .social-icons {
    justify-content: center;
  }

  /* Service Hero Responsive */
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .service-hero-left {
    max-width: 100%;
  }

  .service-hero-right {
    order: -1;
  }

  .ai-visual-service {
    width: 250px;
    height: 250px;
  }

  /* Tech Grid Responsive */
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* AI Enhancement Grid Responsive */
  .ai-enhancement-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  /* Benefits List Responsive */
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 1rem;
  }

  .slider {
    min-height: 200px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    padding: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* ==================== Services Page Styles ==================== */

/* Services Hero Section */
.services-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(232, 206, 29, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(94, 101, 11, 0.06) 0%, transparent 50%);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-hero-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}

.tech-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-circle {
  width: 200px;
  height: 200px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: pulse 3s ease-in-out infinite;
}

.tech-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  stroke: var(--white);
  z-index: 2;
}

.tech-lines span {
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
  opacity: 0.5;
}

.tech-lines span:nth-child(1) {
  top: 10%;
  left: 30%;
  transform: rotate(30deg);
}

.tech-lines span:nth-child(2) {
  top: 5%;
  right: 35%;
  transform: rotate(-20deg);
}

.tech-lines span:nth-child(3) {
  bottom: 15%;
  left: 25%;
  transform: rotate(-40deg);
}

.tech-lines span:nth-child(4) {
  bottom: 10%;
  right: 30%;
  transform: rotate(25deg);
}

.tech-lines span:nth-child(5) {
  top: 40%;
  left: 10%;
  transform: rotate(60deg);
}

.tech-dots span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-olive);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.tech-dots span:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.tech-dots span:nth-child(2) {
  top: 10%;
  right: 20%;
  animation-delay: 0.5s;
}

.tech-dots span:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

.tech-dots span:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
}

.tech-dots span:nth-child(5) {
  top: 35%;
  left: 5%;
  animation-delay: 2s;
}

.tech-dots span:nth-child(6) {
  top: 30%;
  right: 8%;
  animation-delay: 2.5s;
}

.tech-dots span:nth-child(7) {
  bottom: 35%;
  left: 8%;
  animation-delay: 3s;
}

.tech-dots span:nth-child(8) {
  bottom: 40%;
  right: 5%;
  animation-delay: 3.5s;
}

.services-hero-content {
  color: var(--gray-800);
}

.services-hero-content .section-tag {
  background: rgba(232, 206, 29, 0.1);
  color: var(--primary-gold);
}

.services-hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--dark-brown);
}

.hero-paragraphs p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--white);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Stagger animation for feature cards */
.features-grid .feature-card:nth-child(1) {
  transition-delay: 0.05s;
}

.features-grid .feature-card:nth-child(2) {
  transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(3) {
  transition-delay: 0.15s;
}

.features-grid .feature-card:nth-child(4) {
  transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(5) {
  transition-delay: 0.25s;
}

.features-grid .feature-card:nth-child(6) {
  transition-delay: 0.3s;
}

.features-grid .feature-card:nth-child(7) {
  transition-delay: 0.35s;
}

.features-grid .feature-card:nth-child(8) {
  transition-delay: 0.4s;
}

.features-grid .feature-card:nth-child(9) {
  transition-delay: 0.45s;
}

.features-grid .feature-card:nth-child(10) {
  transition-delay: 0.5s;
}

.features-grid .feature-card:nth-child(11) {
  transition-delay: 0.55s;
}

.features-grid .feature-card:nth-child(12) {
  transition-delay: 0.6s;
}

/* Service Blocks Section */
.services-blocks-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

.service-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block:hover {
  box-shadow: var(--shadow-md);
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.service-block-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-block-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.service-block-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.service-item:hover {
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  transform: translateX(5px);
}

.service-item:hover .item-dot {
  background: var(--gradient);
  transform: scale(1.3);
}

.item-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-item span:last-child {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 206, 29, 0.08) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-800);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .services-hero-image {
    order: -1;
  }

  .image-placeholder {
    max-width: 350px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-items-grid {
    grid-template-columns: 1fr;
  }

  .service-block-header h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .service-block {
    padding: 1.5rem;
  }

  .service-block-header {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== Careers Page Styles ==================== */

/* Career Hero Section */
.career-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.career-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%),
    url('../assets/career-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.career-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(232, 206, 29, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(94, 101, 11, 0.06) 0%, transparent 50%);
}

.career-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.career-hero-content {
  color: var(--gray-800);
}

.career-hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: var(--dark-brown);
}

.career-hero-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.career-hero-content .btn {
  margin-top: 1rem;
}

.career-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-visual {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-circle {
  width: 180px;
  height: 180px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: pulse 3s ease-in-out infinite;
}

.career-icons {
  position: absolute;
  inset: 0;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.floating-icon.icon-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 5%;
  right: 20%;
  animation-delay: 1s;
}

.floating-icon.icon-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.floating-icon.icon-4 {
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.career-dots span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-olive);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.career-dots span:nth-child(1) {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.career-dots span:nth-child(2) {
  top: 15%;
  right: 30%;
  animation-delay: 0.5s;
}

.career-dots span:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 1s;
}

.career-dots span:nth-child(4) {
  bottom: 20%;
  right: 25%;
  animation-delay: 1.5s;
}

.career-dots span:nth-child(5) {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

.career-dots span:nth-child(6) {
  top: 35%;
  right: 5%;
  animation-delay: 2.5s;
}

.career-dots span:nth-child(7) {
  bottom: 40%;
  left: 8%;
  animation-delay: 3s;
}

.career-dots span:nth-child(8) {
  bottom: 35%;
  right: 10%;
  animation-delay: 3.5s;
}

/* Positions Section */
.positions-section {
  padding: 80px 0;
  background: var(--light);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.position-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.position-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.position-card:hover .position-icon {
  background: var(--gradient);
  transform: scale(1.1);
}

.position-card:hover .position-icon svg {
  stroke: var(--white);
}

.position-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.position-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.position-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.position-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Stagger animation for position cards */
.positions-grid .position-card:nth-child(1) {
  transition-delay: 0.05s;
}

.positions-grid .position-card:nth-child(2) {
  transition-delay: 0.1s;
}

.positions-grid .position-card:nth-child(3) {
  transition-delay: 0.15s;
}

.positions-grid .position-card:nth-child(4) {
  transition-delay: 0.2s;
}

.positions-grid .position-card:nth-child(5) {
  transition-delay: 0.25s;
}

.positions-grid .position-card:nth-child(6) {
  transition-delay: 0.3s;
}

/* Openings Section */
.openings-section {
  padding: 80px 0;
  background: var(--white);
}

.openings-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.openings-sidebar {
  background: var(--gradient);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.openings-sidebar h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sidebar-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.opening-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.opening-item:hover {
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  padding-left: 2.5rem;
}

.opening-item:hover .opening-dot {
  background: var(--gradient);
  transform: scale(1.3);
}

.opening-item:hover .opening-title {
  color: var(--primary-gold);
}

.opening-item:hover svg {
  transform: translateX(5px);
  stroke: var(--primary-gold);
}

.opening-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.opening-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  flex-grow: 1;
  transition: var(--transition);
}

.opening-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-600);
  transition: var(--transition);
}

/* AI Career Section */
.ai-career-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.ai-career-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DAD9BE 0%, #f1f5f9 100%);
}

.ai-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.ai-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ai-career-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-800);
}

.ai-career-content h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--dark-brown);
}

.ai-career-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ai-career-content p:last-of-type {
  margin-bottom: 2.5rem;
}

/* Shine Button Effect */
.btn-shine {
  background: var(--gradient);
  color: var(--dark-brown);
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(232, 206, 29, 0.3);
  transition: var(--transition);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 206, 29, 0.2), transparent);
  transition: 0.5s;
}

.btn-shine:hover::before {
  left: 100%;
}

.btn-shine:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 40px rgba(232, 206, 29, 0.4);
}

/* Why Telious Section */
.why-telious-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient);
}

.benefit-card:hover .benefit-icon svg {
  stroke: var(--white);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* Stagger animation for benefit cards */
.benefits-grid .benefit-card:nth-child(1) {
  transition-delay: 0.05s;
}

.benefits-grid .benefit-card:nth-child(2) {
  transition-delay: 0.1s;
}

.benefits-grid .benefit-card:nth-child(3) {
  transition-delay: 0.15s;
}

.benefits-grid .benefit-card:nth-child(4) {
  transition-delay: 0.2s;
}

.benefits-grid .benefit-card:nth-child(5) {
  transition-delay: 0.25s;
}

.benefits-grid .benefit-card:nth-child(6) {
  transition-delay: 0.3s;
}

/* Careers Page Responsive */
@media (max-width: 1024px) {
  .career-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .career-hero-image {
    order: -1;
  }

  .career-visual {
    width: 300px;
    height: 300px;
  }

  .positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .openings-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .openings-sidebar {
    text-align: center;
  }

  .openings-sidebar h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .career-hero {
    padding: 120px 0 80px;
  }

  .career-visual {
    width: 250px;
    height: 250px;
  }

  .career-circle {
    width: 140px;
    height: 140px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
  }

  .floating-icon svg {
    width: 20px;
    height: 20px;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .opening-item {
    padding: 1.25rem 1.5rem;
  }

  .ai-career-content {
    padding: 0 1rem;
  }
}

/* ==================== Job Modal Styles ==================== */
.job-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.job-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.job-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.job-modal-content {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary-gold);
  /* Visible color */
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-modal-close:hover {
  background: var(--dark-brown);
  transform: rotate(90deg) scale(1.1);
  border-color: var(--primary-gold);
}

.job-modal-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark-brown);
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.job-modal-close:hover svg {
  stroke: var(--primary-gold);
}

.job-modal-body {
  padding: 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
}

/* Custom scrollbar for modal */
.job-modal-body::-webkit-scrollbar {
  width: 8px;
}

.job-modal-body::-webkit-scrollbar-track {
  background: var(--gray-100);
}

.job-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

.job-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.job-header h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.job-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.job-meta svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-gold);
}

.job-section {
  margin-bottom: 2rem;
}

.job-section h3 {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-weight: 600;
}

.job-section p {
  color: var(--gray-600);
  line-height: 1.7;
}

.job-section ul,
.job-section ol {
  list-style-position: outside;
  padding-left: 1.5rem;
  color: var(--gray-600);
}

.job-section ul li,
.job-section ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.job-section ul {
  list-style-type: disc;
}

.recruitment-process {
  list-style-type: decimal;
}

.job-apply-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-100);
}

.job-apply-section h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.job-application-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(232, 206, 29, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.file-upload-group input[type="file"] {
  padding: 0.5rem;
  cursor: pointer;
}

.file-name {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-olive);
  font-weight: 500;
  min-height: 1.2rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-gold);
}

.checkbox-group span {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.application-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-olive));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPop 0.6s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 3;
}

.application-success h4 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.application-success p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .job-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .job-modal-body {
    padding: 2rem 1.5rem;
  }

  .job-header h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .job-modal-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .job-modal-body {
    padding: 1.5rem 1rem;
  }

  .job-header h2 {
    font-size: 1.25rem;
  }

  .job-section h3 {
    font-size: 1.1rem;
  }

  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==================== Company Pages Styles ==================== */
/* Methodology Timeline */
.methodology-timeline-section {
  padding: 80px 0;
  background: var(--white);
}

.timeline-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 5rem;
  position: relative;
}

.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), var(--primary-olive), transparent);
  opacity: 0.3;
  z-index: 1;
}

.timeline-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  border: 3px solid var(--primary-gold);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(232, 206, 29, 0.15);
}

.timeline-item:hover .timeline-icon {
  background: var(--gradient);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(232, 206, 29, 0.3);
}

.timeline-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.timeline-item:hover .timeline-icon svg {
  stroke: var(--white);
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.ai-tooltip {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.timeline-item:hover .ai-tooltip {
  opacity: 1;
  bottom: -50px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

/* R&D Dashboard */
.rd-focus-section {
  padding: 80px 0;
  background: var(--white);
}

.rd-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.rd-tile {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.rd-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.rd-tile-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.rd-tile-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.rd-tile h3 {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.rd-tile p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rd-demo-preview {
  margin-top: 1.5rem;
}

.demo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-olive));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* R&D Output Section */
.rd-output-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.output-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.output-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.output-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.output-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-gold);
}

.output-card h3 {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.output-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* QA Practices */
.qa-practices-section {
  padding: 80px 0;
  background: var(--white);
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.practice-card {
  background: var(--gradient-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.practice-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.practice-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.practice-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.practice-card h3 {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* AI Enhancements */
.ai-enhancements-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

.enhancements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.enhancement-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.enhancement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.enhancement-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.enhancement-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.enhancement-card h3 {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.enhancement-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* QA Dashboard */
.qa-dashboard-section {
  padding: 80px 0;
  background: var(--white);
}

.qa-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.qa-metric {
  background: var(--gradient-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.qa-metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.metric-tooltip {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.qa-metric:hover .metric-tooltip {
  opacity: 1;
  bottom: -40px;
}

/* Process Flow */
.process-flow-section {
  padding: 80px 0;
  background: var(--white);
}

.process-flow {
  max-width: 900px;
  margin: 4rem auto 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(232, 206, 29, 0.4);
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
}

.step-content {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.process-step:hover .step-content {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
  transform: translateX(10px);
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.step-connector {
  position: absolute;
  left: 28px;
  top: 60px;
  width: 4px;
  height: calc(100% + 1rem);
  background: linear-gradient(180deg, var(--primary-gold), rgba(232, 206, 29, 0.1));
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

/* Process Value */
.process-value-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-gold);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Company Pages Responsive */
@media (max-width: 1024px) {
  .timeline-horizontal {
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 3rem;
  }

  .timeline-connector {
    display: none;
  }

  .rd-dashboard {
    grid-template-columns: 1fr;
  }

  .practices-grid {
    grid-template-columns: 1fr;
  }

  .enhancements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .timeline-item {
    flex: 0 0 100%;
  }

  .output-grid {
    grid-template-columns: 1fr;
  }

  .enhancements-grid {
    grid-template-columns: 1fr;
  }

  .qa-dashboard {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-connector {
    left: 38px;
  }
}

/* ==================== Team Page Styles ==================== */

/* Team Hero Section */
.team-hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.team-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
}

.team-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1) 0%, rgba(94, 101, 11, 0.08) 40%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
}

.team-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.team-particles span:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.team-particles span:nth-child(2) {
  top: 25%;
  left: 85%;
  animation-delay: 0.5s;
}

.team-particles span:nth-child(3) {
  top: 45%;
  left: 5%;
  animation-delay: 1s;
}

.team-particles span:nth-child(4) {
  top: 65%;
  left: 90%;
  animation-delay: 1.5s;
}

.team-particles span:nth-child(5) {
  top: 75%;
  left: 15%;
  animation-delay: 2s;
}

.team-particles span:nth-child(6) {
  top: 85%;
  left: 80%;
  animation-delay: 2.5s;
}

.team-particles span:nth-child(7) {
  top: 35%;
  left: 95%;
  animation-delay: 3s;
}

.team-particles span:nth-child(8) {
  top: 55%;
  left: 8%;
  animation-delay: 3.5s;
}

.team-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.team-hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.team-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.leadership-section {
  padding: 80px 0;
  background: var(--light);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Leader Card */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.leader-card:hover::before {
  transform: scaleX(1);
}

.leader-card:hover .leader-glow {
  opacity: 1;
}

.leader-card:hover .leader-placeholder {
  background: var(--gradient);
  transform: scale(1.05);
}

.leader-card:hover .leader-placeholder svg {
  stroke: var(--white);
}

.leader-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.leader-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.leader-placeholder svg {
  width: 50px;
  height: 50px;
  stroke: var(--primary-gold);
  transition: var(--transition);
}

.leader-glow {
  position: absolute;
  inset: -10px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transition: var(--transition);
  z-index: -1;
}

.leader-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.leader-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1), rgba(94, 101, 11, 0.1));
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.leader-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.leader-social {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.leader-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  transition: var(--transition);
}

.leader-social a:hover {
  background: var(--gradient);
}

.leader-social a:hover svg {
  stroke: var(--white);
}

.leader-social svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-600);
  transition: var(--transition);
}

/* Stagger animation for leader cards */
.leadership-grid .leader-card:nth-child(1) {
  transition-delay: 0.05s;
}

.leadership-grid .leader-card:nth-child(2) {
  transition-delay: 0.1s;
}

.leadership-grid .leader-card:nth-child(3) {
  transition-delay: 0.15s;
}

.leadership-grid .leader-card:nth-child(4) {
  transition-delay: 0.2s;
}

.leadership-grid .leader-card:nth-child(5) {
  transition-delay: 0.25s;
}

.leadership-grid .leader-card:nth-child(6) {
  transition-delay: 0.3s;
}

.leadership-grid .leader-card:nth-child(7) {
  transition-delay: 0.35s;
}

.leadership-grid .leader-card:nth-child(8) {
  transition-delay: 0.4s;
}

/* Join Team Section */
.join-team-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.join-team-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
}

.join-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.join-team-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-team-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.join-team-content>p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.join-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.join-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.join-feature svg {
  width: 22px;
  height: 22px;
  stroke: #4ADE80;
  stroke-width: 3;
}

/* Neon Button */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--primary-olive);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.btn-neon span {
  position: relative;
  z-index: 1;
}

.btn-neon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.btn-neon:hover {
  border-color: transparent;
  box-shadow: 0 0 30px rgba(232, 206, 29, 0.4), 0 0 60px rgba(232, 206, 29, 0.2);
  transform: translateY(-3px);
}

.btn-neon:hover::before {
  opacity: 1;
}

.btn-neon:hover svg {
  transform: translateX(5px);
}

/* Team Page Responsive */
@media (max-width: 1200px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .team-hero {
    padding: 140px 0 100px;
    min-height: auto;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: 120px 0 80px;
  }

  .team-hero-content h1 {
    font-size: 2rem;
  }

  .team-hero-content p {
    font-size: 1rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .join-features {
    align-items: flex-start;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .leader-card {
    padding: 1.5rem 1rem;
  }

  .leader-image {
    width: 100px;
    height: 100px;
  }

  .leader-placeholder svg {
    width: 40px;
    height: 40px;
  }
}

/* ==================== New Team Page (team.html) ==================== */

/* Hero Section */
.service-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  background: var(--light);
}

.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  margin-top: 0;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: var(--light);
}

.hero-section .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-section .orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-section .orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(94, 101, 11, 0.08), transparent);
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}

.hero-section .ai-particles {
  position: absolute;
  inset: 0;
}

.hero-section .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.6;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-section .particle:nth-child(2) {
  top: 35%;
  right: 20%;
  animation-delay: 1s;
}

.hero-section .particle:nth-child(3) {
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}

.hero-section .particle:nth-child(4) {
  bottom: 35%;
  right: 25%;
  animation-delay: 3s;
}

.hero-section .particle:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: var(--gray-800);
}

.hero-section .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-section .hero-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .hero-content h1 {
  animation-delay: 0.2s;
}

.hero-section .hero-content p {
  animation-delay: 0.4s;
}

/* Team Grid Section */
.leadership-section {
  padding: 80px 0;
  background: var(--light);
}

.leadership-section .section-padding {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.leadership-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leadership-section .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 2.5rem;
}

.leadership-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Profile Cards */
.leadership-section .profile-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.leadership-section .profile-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-gold);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.leadership-section .profile-card:hover .profile-glow {
  opacity: 1;
  transform: scale(1.2);
}

.leadership-section .profile-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.leadership-section .image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.leadership-section .profile-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1), transparent);
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transition: var(--transition);
}

.leadership-section .profile-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
  position: relative;
  z-index: 1;
}

.leadership-section .profile-card .position {
  color: var(--primary-gold);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.leadership-section .profile-card .description {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.leadership-section .profile-card:nth-child(1) {
  animation-delay: 0.1s;
}

.leadership-section .profile-card:nth-child(2) {
  animation-delay: 0.2s;
}

.leadership-section .profile-card:nth-child(3) {
  animation-delay: 0.3s;
}

.leadership-section .profile-card:nth-child(4) {
  animation-delay: 0.4s;
}

.leadership-section .profile-card:nth-child(5) {
  animation-delay: 0.5s;
}

.leadership-section .profile-card:nth-child(6) {
  animation-delay: 0.6s;
}

.leadership-section .profile-card:nth-child(7) {
  animation-delay: 0.7s;
}

.leadership-section .profile-card:nth-child(8) {
  animation-delay: 0.8s;
}

/* Join Section */
.join-section {
  padding: 120px 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
}

.join-section .join-bg {
  position: absolute;
  inset: 0;
}

.join-section .orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(94, 101, 11, 0.08), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 1s;
}

.join-section .orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.1), transparent);
  bottom: -50px;
  right: -50px;
  animation-delay: 3s;
}

.join-section>.section-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.join-section .join-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.join-section .join-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation-delay: 0.6s;
}

/* Join Button */
.join-section .join-btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient);
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation-delay: 0.8s;
  box-shadow: var(--shadow-lg);
}

.join-section .join-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-olive), var(--primary-gold));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.join-section .join-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.join-section .join-btn:hover::before {
  opacity: 1;
}

/* Responsive Team Page */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 70vh;
    padding: 100px 2rem 60px;
  }

  .leadership-section .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 1rem 60px;
  }

  .hero-section .hero-content h1 {
    font-size: 2rem;
  }

  .hero-section .hero-content p {
    font-size: 1rem;
  }

  .leadership-section .section-title {
    font-size: 2rem;
  }

  .leadership-section .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .leadership-section .profile-card {
    padding: 1.5rem;
  }

  .leadership-section {
    padding: 80px 0;
  }

  .join-section {
    padding: 80px 1rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 1rem 40px;
  }

  .hero-section .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-section .hero-content p {
    font-size: 0.95rem;
  }

  .leadership-section .section-title {
    font-size: 1.5rem;
  }

  .leadership-section .team-grid {
    grid-template-columns: 1fr;
  }

  .leadership-section .profile-card {
    padding: 1rem;
  }

  .join-section .join-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

/* ==================== Light Themed Background Animation for Sections ==================== */
section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(400px 200px at 10% 20%, rgba(232, 206, 29, 0.06), transparent 60%),
    radial-gradient(300px 150px at 90% 80%, rgba(94, 101, 11, 0.05), transparent 60%);
  opacity: 0.6;
}

.gradient-orb {
  animation: glowPulse 10s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(10px, -10px) scale(1.05);
    opacity: 0.6;
  }
}

/* ==================== Contact Page Styles (Minimal Dark Theme) ==================== */

/* Contact Page Body */
.contact-page-body {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}

/* Background Wrapper */
.contact-bg-wrapper {
  position: relative;
  min-height: 100vh;
}

.contact-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}

/* Gradient Blobs */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 206, 29, 0.12), transparent);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(94, 101, 11, 0.08), transparent);
  bottom: 10%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(30px, 30px) scale(0.95);
  }

  75% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

/* Starfield Animation */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(232, 206, 29, 0.3);
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.star:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.star:nth-child(2) {
  top: 25%;
  left: 80%;
  animation-delay: 0.5s;
}

.star:nth-child(3) {
  top: 45%;
  left: 15%;
  animation-delay: 1s;
}

.star:nth-child(4) {
  top: 60%;
  left: 85%;
  animation-delay: 1.5s;
}

.star:nth-child(5) {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
}

.star:nth-child(6) {
  top: 35%;
  left: 60%;
  animation-delay: 0.3s;
}

.star:nth-child(7) {
  top: 55%;
  left: 30%;
  animation-delay: 0.8s;
}

.star:nth-child(8) {
  top: 75%;
  left: 70%;
  animation-delay: 1.2s;
}

.star:nth-child(9) {
  top: 20%;
  left: 50%;
  animation-delay: 1.8s;
}

.star:nth-child(10) {
  top: 50%;
  left: 65%;
  animation-delay: 2.5s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Section Styling */
section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

/* Contact Header Section */
.contact-header-section {
  padding: 80px 0;
  text-align: center;
}

.contact-header {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.contact-page-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  letter-spacing: 0.3px;
  font-weight: 400;
}

/* Unified Contact Banner */
.contact-banner-unified {
  padding: 80px 0;
  text-align: center;
}

.banner-content {
  max-width: 900px;
  margin: 0 auto;
}

.banner-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.banner-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--primary-olive);
  line-height: 1.8;
  letter-spacing: 0.3px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.banner-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.9;
  letter-spacing: 0.3px;
  font-weight: 400;
  margin: 0;
}

/* Section Styling (Contact Page) */
section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

/* Section 1: Introduction Minimal */
.contact-intro-minimal {
  display: none;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 206, 29, 0.3), transparent);
  margin: 50px auto;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

/* Section 2: Contact Details Minimal */
.contact-details-minimal {
  padding: 80px 0;
}

.contact-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-box {
  background: rgba(232, 206, 29, 0.05);
  border: 1px solid rgba(232, 206, 29, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-box:hover {
  background: rgba(232, 206, 29, 0.1);
  border-color: #E8CE1D;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(232, 206, 29, 0.15);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.divider-small {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, #E8CE1D, #5E650B);
  margin-bottom: 1.5rem;
}

.contact-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.contact-address {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

/* Fade In Animations */
.fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.fade-in-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section 3: Maps Minimal */
.contact-maps-minimal {
  padding: 100px 0 100px;
}

.maps-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.map-card-minimal {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-card-minimal:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 206, 29, 0.5);
  box-shadow: 0 20px 40px rgba(232, 206, 29, 0.15);
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.map-container iframe {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.map-card-minimal:hover .map-container iframe {
  filter: brightness(1.1);
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-grid-minimal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .maps-grid-minimal {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 0;
  }

  .contact-intro-minimal {
    padding: 120px 0 80px;
  }
}

@media (max-width: 768px) {
  .contact-box {
    padding: 2rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .section-divider {
    margin: 60px auto;
  }

  section {
    padding: 80px 0;
  }

  .contact-intro-minimal {
    padding: 100px 0 50px;
  }

  .contact-maps-minimal {
    padding: 100px 0 80px;
  }
}

.contact-details {
  padding: 80px 0;
}

.contact-details .section-header h2 {
  font-size: 1.5rem;
}

.contact-card {
  padding: 1rem;
}

.office-icon {
  width: 50px;
  height: 50px;
}

.office-icon svg {
  width: 28px;
  height: 28px;
}

/* ==================== NEW HOME PAGE SECTIONS ==================== */

/* Support Banner */
.support-banner {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-olive) 100%);
  padding: 2rem 0;
  text-align: center;
}

.support-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.support-banner-content h3 {
  color: var(--dark-gray);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-gray);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.support-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Services Showcase */
.services-showcase {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-showcase-card {
  background: var(--off-white);
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-slow);
  cursor: pointer;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-olive);
  box-shadow: 0 12px 40px rgba(232, 206, 29, 0.25);
}

.service-showcase-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.15) 0%, rgba(94, 101, 11, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
}

.service-showcase-card h3 {
  color: var(--dark-gray);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-subtitle {
  color: var(--primary-olive);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-showcase-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.btn-service {
  display: inline-block;
  background: var(--gradient);
  color: var(--dark-gray);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 1rem;
}

/* About Showcase */
.about-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.about-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-showcase-text h2 {
  color: var(--dark-gray);
  font-size: 2.5rem;
  margin: 1rem 0 1.5rem;
}

.about-showcase-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ai-visual-large {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.ai-core-large {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(232, 206, 29, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* Timeline */
.how-it-works {
  padding: 6rem 0;
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: -10px;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-gray);
  box-shadow: 0 4px 15px rgba(232, 206, 29, 0.3);
}

.timeline-content h3 {
  color: var(--dark-gray);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Core Services */
.core-services {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.core-services-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-slow);
}

.capability-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 8px 30px rgba(232, 206, 29, 0.2);
  transform: translateY(-5px);
}

.capability-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.15) 0%, rgba(94, 101, 11, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
}

.capability-icon svg {
  width: 40px;
  height: 40px;
}

.capability-card h3 {
  color: var(--dark-gray);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Mail Section */
.mail-section {
  padding: 3rem 0;
  background: var(--white);
  text-align: center;
  border-top: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

.mail-content {
  font-size: 1.25rem;
  color: var(--dark-gray);
}

.mail-link {
  color: var(--primary-olive);
  font-weight: 600;
  text-decoration: underline;
}

.mail-link:hover {
  color: var(--primary-gold);
}

/* Contact Showcase */
.contact-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-cards-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card-showcase {
  background: var(--white);
  border: 2px solid var(--light-beige);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-slow);
}

.contact-card-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(232, 206, 29, 0.25);
  border-color: var(--primary-gold);
}

.contact-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card-showcase h3 {
  color: var(--dark-gray);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-card-showcase p {
  color: var(--gray-600);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.contact-phone {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary-olive);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: rgba(232, 206, 29, 0.1);
  border-radius: var(--radius-md);
}

.contact-phone:hover {
  background: var(--primary-gold);
  color: var(--dark-gray);
}

.contact-email {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(232, 206, 29, 0.1) 0%, rgba(94, 101, 11, 0.05) 100%);
  border-radius: var(--radius-lg);
}

.contact-email p {
  color: var(--gray-800);
  font-size: 1.1rem;
}

.contact-email a {
  color: var(--primary-olive);
  font-weight: 600;
  text-decoration: underline;
}

.contact-email a:hover {
  color: var(--primary-gold);
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(232, 206, 29, 0.5);
  }

  50% {
    box-shadow: 0 0 60px rgba(232, 206, 29, 0.8);
  }
}

.reveal {
  opacity: 0;
  animation: revealUp 0.8s ease forwards;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-left {
  opacity: 0;
  animation: revealLeft 0.8s ease forwards;
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal-right {
  opacity: 0;
  animation: revealRight 0.8s ease forwards;
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .about-showcase-content {
    grid-template-columns: 1fr;
  }

  .ai-visual-large {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .support-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* ==================== Technology Page Styles ==================== */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tech-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.tech-category:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tech-category h3 {
  color: var(--dark-brown);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-list {
  list-style: none;
  padding: 0;
}

.tech-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tech-list li:last-child {
  border-bottom: none;
}

.tech-list strong {
  color: var(--dark-brown);
  font-weight: 600;
}

/* ==================== Domains Page Styles ==================== */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.domain-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.domain-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary-gold);
}

.domain-card:hover::before {
  transform: scaleX(1);
}

.domain-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 206, 29, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.domain-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-gold);
}

.domain-card h3 {
  color: var(--dark-brown);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.domain-card>p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.domain-features {
  list-style: none;
  padding: 0;
}

.domain-features li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.domain-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* ==================== Company Page Styles ==================== */
.company-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0 4rem;
}

.company-link {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.company-link:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.company-link h3 {
  color: var(--dark-brown);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.company-link p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.company-overview {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 2rem;
}

.company-overview h2 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.company-overview h3 {
  color: var(--dark-brown);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.values-list,
.benefits-list {
  list-style: none;
  padding: 0;
}

.values-list li,
.benefits-list li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: var(--white);
  border-left: 4px solid var(--primary-gold);
  border-radius: var(--radius-sm);
  color: var(--gray-600);
}

.values-list li strong,
.benefits-list li strong {
  color: var(--dark-brown);
}

/* ==================== Process Steps Styles ==================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 1rem;
}

.step h3 {
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

/* ==================== Unified Contact Wrapper ==================== */
.contact-unified-wrapper {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%),
    url('../assets/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0 2rem;
  /* Reduced padding */
  position: relative;
}

.banner-section {
  text-align: center;
  margin-bottom: 1.5rem;
  /* Reduced margin */
}

.section-divider-internal {
  height: 1px;
  background: var(--gray-200);
  width: 60%;
  margin: 0 auto 2rem;
  /* Reduced margin */
}

.structure-section {
  position: relative;
}

/* ==================== Reorganized Careers Page ==================== */
.openings-section-top {
  padding: 2rem 0 6rem;
  /* Reduced top padding */
  background: var(--light);
  margin-top: -2rem;
  /* Pull up to reduce gap from hero */
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.banner-content p {
  text-align: center;
}

.banner-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  /* Reduced margin */
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-size: 1.25rem;
  color: var(--primary-olive);
  font-weight: 600;
  margin-bottom: 1rem;
  /* Reduced margin */
  letter-spacing: 0.5px;
}

.banner-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  /* Adjusted line height */
}

.contact-details-minimal {
  padding: 4rem 0;
  background: var(--white);
}

.contact-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.contact-box:hover::before {
  opacity: 1;
}

.contact-title {
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider-small {
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.contact-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-olive);
  margin-bottom: 1rem;
}

.contact-address {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-maps-minimal {
  padding: 0 0 4rem;
  background: var(--white);
}

.maps-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.map-card-minimal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--gray-100);
  height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.map-card-minimal:hover iframe {
  filter: grayscale(0%);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  width: 80%;
  margin: 0 auto;
}

/* ==================== Reorganized Careers Page ==================== */
.openings-section-top {
  padding: 6rem 0;
  background: var(--light);
}

.openings-top-header {
  text-align: center;
  margin-bottom: 3rem;
  /* Reduced margin */
}

.openings-top-header h2 {
  font-size: 2.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.openings-top-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  text-align: center;
}

.career-hero-reorganized {
  padding: 6rem 0 2rem;
  background: var(--gradient-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.career-hero-reorganized h1 {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
}

.career-hero-reorganized p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.opening-card-new {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.opening-card-new:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  background: #fffdf0;
}

.job-info h4 {
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.job-tags {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-600);
}

.apply-arrow {
  color: var(--primary-gold);
  transition: var(--transition);
}

.opening-card-new:hover .apply-arrow {
  transform: translateX(5px);
}



/* ==================== Integrated Contact Structure ==================== */
.structure-section-integrated {
  padding: 0 0 2rem;
  /* Reduced padding */
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.office-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 206, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive);
  flex-shrink: 0;
}

.office-icon svg {
  width: 28px;
  height: 28px;
}

.office-header h3 {
  font-size: 1.5rem;
  color: var(--dark-brown);
  font-weight: 700;
  margin: 0;
}

.office-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  align-items: flex-start;
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  font-weight: 600;
}

.detail-row p {
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.detail-row a {
  color: var(--primary-olive);
  font-weight: 600;
  text-decoration: none;
}

.detail-row a:hover {
  text-decoration: underline;
  color: var(--primary-gold);
}

.office-map {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.office-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.office-card:hover .office-map iframe {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }

  .office-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



.phone-item {
  font-size: 1.2rem;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-item span {
  font-weight: 600;
  color: var(--primary-olive);
}

.phone-item a {
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 500;
}

.phone-item a:hover {
  color: var(--primary-gold);
}

/* ==================== About Text Styles ==================== */
.about-text {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.about-text:hover {
  box-shadow: var(--shadow-md);
}

.about-text h3 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* WhatsApp Highlight Utility */
.whatsapp-highlight {
  display: inline-block;
  background: rgba(37, 211, 102, 0.1);
  /* WhatsApp green with transparency */
  color: #075e54;
  /* WhatsApp dark green */
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-weight: 700;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin: 1.5rem auto 0;
}

.whatsapp-highlight:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon-mini {
  width: 24px;
  height: 24px;
  fill: #25d366;
}