/* WinSoft Organization Limited - Modern Software Development Company Website */

:root {
  /* Primary Colors - Based on WinSoft Logo Blue */
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;

  /* Secondary Colors */
  --secondary-color: #1e293b;
  --secondary-dark: #0f172a;
  --secondary-light: #334155;

  /* Accent Colors */
  --accent-color: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-light: #38bdf8;

  /* Success & Status Colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
  --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
  --gradient-cta: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);

  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-colored: 0 10px 15px -3px rgba(30, 64, 175, 0.1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --section-padding: 50px;
  --container-padding: 20px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  background: var(--bg-white);
  padding-top: 40px; /* Account for top bar */
}

.font-roboto {
  font-family: "Roboto", sans-serif;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  text-align: center;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--bg-gray);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Top Bar Styles */
.top-bar {
  background: var(--secondary-dark);
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-item i {
  color: var(--accent-light);
  font-size: 0.8rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.social-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.top-bar .social-links {
  display: flex;
  gap: 0.5rem;
}

.top-bar .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-size: 0.8rem;
}

.top-bar .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.1);
  transition: all var(--transition-normal);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  top: 40px; /* Position below top bar */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.navbar-logo {
  height: 45px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background: rgba(30, 64, 175, 0.1);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--gradient-primary);
  color: white !important;
  border-radius: var(--radius-xl);
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
  box-shadow: var(--shadow-colored);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px; /* Account for top bar + navbar */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.text-gradient {
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-showcase {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}

.tech-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.scroll-arrow:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Page Header */
.page-header {
  background: var(--gradient-hero);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--accent-light);
}

/* Section Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(30, 64, 175, 0.2);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 4rem;
}

/* Services Section */
.services-section,
.services-overview {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-colored);
}

.service-card h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-features i {
  color: var(--success-color);
  font-size: 0.8rem;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Service Detail Sections */
.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail.bg-light {
  background: var(--bg-light);
}

.service-features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.service-detail.bg-light .feature-item {
  background: var(--bg-white);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-colored);
}

.feature-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  margin: 0;
}

.visual-placeholder {
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-2xl);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-normal);
}

.visual-placeholder:hover {
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(30, 64, 175, 0.1) 100%);
  border-color: var(--primary-light);
  color: var(--primary-color);
}

.visual-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.visual-placeholder span {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-card .feature-icon {
  margin: 0 auto 1.5rem;
}

.feature-card h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Recent Projects Section */
.recent-projects {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.project-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 64, 175, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.project-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.project-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: white;
}

.project-content {
  padding: 2rem;
}

.project-category {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.project-content h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.project-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Core Values Section */
.core-values {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-colored);
}

.value-letter {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2em;
}

/* About Page Sections */
.company-overview {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.overview-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.highlight-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.mission-statement {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.mission-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.core-values-detailed {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.value-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.value-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.value-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.value-header h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.why-choose-detailed {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.feature-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  text-align: center;
}

.feature-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

/* About Preview Section */
.about-preview {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.stats-showcase {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 64, 175, 0.1);
  height: fit-content;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--bg-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-details a:hover {
  color: var(--primary-dark);
}

.social-contact {
  margin-top: 2rem;
}

.social-contact h5 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.map-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.map-placeholder h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-section h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--accent-light);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--accent-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.slide-right {
  animation: slideRight 0.8s ease-out;
}

.slide-left {
  animation: slideLeft 0.8s ease-out;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .top-bar-info {
    gap: 1rem;
  }

  .info-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  body {
    padding-top: 80px; /* Account for stacked top bar and navbar */
  }

  .hero-title {
    font-size: 2.rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .top-bar {
    padding: 0.4rem 0;
  }

  .top-bar-info {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .info-item {
    font-size: 0.75rem;
  }

  .info-item span {
    display: none;
  }

  .info-item i {
    font-size: 0.9rem;
  }

  .social-text {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 40px;
    --container-padding: 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-card,
  .feature-card,
  .value-card,
  .project-card {
    padding: 1.5rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .top-bar-info {
    justify-content: center;
  }

  .top-bar-social {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .cta-section,
  .footer,
  .top-bar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .page-header {
    padding: 2rem 0;
  }

  * {
    box-shadow: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-shapes {
    display: none;
  }
}

/* Team Page Styles */
.team-intro {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.leadership-team {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.management-team {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.development-team {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.team-values {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.join-team-cta {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-team-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.join-team-cta .container {
  position: relative;
  z-index: 2;
}

/* Team Card Styles */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.leadership-card {
  border-top: 4px solid var(--primary-color);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 64, 175, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: white;
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-content h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
}

.team-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.skill-tag {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(30, 64, 175, 0.2);
}

/* Team Values Styles */
.values-list {
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-colored);
}

.value-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.value-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.values-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.team-stats .stat-item {
  text-align: center;
}

.team-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}

.team-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Responsive Design for Team Page */
@media (max-width: 992px) {
  .team-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .leadership-card .team-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-image {
    height: 250px;
  }

  .team-content {
    padding: 1.5rem;
  }

  .team-content h4 {
    font-size: 1.1rem;
  }

  .team-position {
    font-size: 0.9rem;
  }

  .team-description {
    font-size: 0.85rem;
  }

  .value-item {
    padding: 1rem;
  }

  .values-list {
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .team-stats {
    padding: 1.5rem;
  }

  .team-stats .stat-number {
    font-size: 2rem;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .team-social {
    gap: 0.75rem;
  }
}

/* Enhanced Team Page Styles */
.team-intro {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  position: relative;
}

.team-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(14, 165, 233, 0.02) 100%);
  z-index: 1;
}

.team-intro .container {
  position: relative;
  z-index: 2;
}

.leadership-team {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
  position: relative;
}

.leadership-team::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.leadership-team .container {
  position: relative;
  z-index: 2;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.management-team {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  position: relative;
}

.development-team {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
  position: relative;
}

.team-values {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  position: relative;
}

.join-team-cta {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-team-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  animation: float 15s ease-in-out infinite;
}

.join-team-cta .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Team Card Styles */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  position: relative;
  transform-style: preserve-3d;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
  z-index: 3;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: var(--shadow-2xl), 0 0 30px rgba(30, 64, 175, 0.2);
}

.leadership-card {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient-primary) border-box;
  position: relative;
}

.leadership-card::after {
  content: "👑";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  z-index: 4;
  opacity: 0.8;
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

.team-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 64, 175, 0.1) 50%, transparent 100%);
  z-index: 2;
  transition: opacity var(--transition-normal);
}

.team-card:hover .team-image::before {
  opacity: 0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
  filter: grayscale(20%) brightness(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(14, 165, 233, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .team-image img {
  transform: scale(1.15);
  filter: grayscale(0%) brightness(1.2);
}

.team-social {
  display: flex;
  gap: 1rem;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.social-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all var(--transition-normal);
  transform: translate(-50%, -50%);
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2) rotate(360deg);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.team-content {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.team-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: var(--radius-lg);
}

.team-content h4 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.team-content h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.team-card:hover .team-content h4::after {
  width: 100%;
}

.team-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.team-position::before {
  content: "▶";
  margin-right: 0.5rem;
  color: var(--accent-light);
  font-size: 0.8rem;
}

.team-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-style: italic;
  position: relative;
  padding: 1rem;
  background: rgba(30, 64, 175, 0.02);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent-light);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.skill-tag {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid rgba(30, 64, 175, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.skill-tag:hover::before {
  left: 100%;
}

.skill-tag:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Team Values Enhanced Styles */
.values-list {
  margin-top: 3rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(248, 250, 252, 0.8) 100%);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
  border: 2px solid rgba(30, 64, 175, 0.1);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-normal);
}

.value-item:hover::before {
  transform: scaleY(1);
}

.value-item:hover {
  transform: translateX(15px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(30, 64, 175, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-colored);
  position: relative;
  overflow: hidden;
}

.value-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all var(--transition-normal);
  transform: translate(-50%, -50%);
}

.value-item:hover .value-icon::before {
  width: 120%;
  height: 120%;
}

.value-content h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
}

.value-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

.values-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(30, 64, 175, 0.1);
  position: relative;
  overflow: hidden;
}

.team-stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.team-stats .stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.team-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.team-stats .stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.team-stats .stat-number::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.5rem;
  font-size: 1.5rem;
  color: var(--accent-light);
}

.team-stats .stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Headers Enhancement */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(30, 64, 175, 0.2);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.section-badge:hover::before {
  left: 100%;
}

.section-badge i {
  font-size: 1.2rem;
  color: var(--accent-light);
}

/* Responsive Enhancements */
@media (max-width: 992px) {
  .team-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .leadership-card .team-content {
    padding: 2rem;
  }

  .team-image {
    height: 280px;
  }

  .value-item {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-image {
    height: 250px;
  }

  .team-content {
    padding: 2rem;
  }

  .team-content h4 {
    font-size: 1.2rem;
  }

  .team-position {
    font-size: 1rem;
  }

  .team-description {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .value-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .value-icon {
    margin: 0 auto 1rem;
  }

  .values-list {
    margin-top: 2rem;
  }

  .team-stats .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .team-stats {
    padding: 1.5rem;
  }

  .team-stats .stat-number {
    font-size: 2rem;
  }

  .social-btn {
    width: 45px;
    height: 45px;
  }

  .team-social {
    gap: 0.75rem;
  }

  .skill-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .team-content {
    padding: 1.5rem;
  }

  .value-item {
    padding: 1rem;
  }
}

/* Special Effects */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.team-card:hover .team-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 1s ease-in-out;
}

/* Print Styles for Team Page */
@media print {
  .team-overlay,
  .social-btn,
  .join-team-cta {
    display: none;
  }

  .team-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .team-image {
    height: 200px;
  }
}

/* Client Page Styles */
.client-intro {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  position: relative;
}

.client-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(14, 165, 233, 0.02) 100%);
  z-index: 1;
}

.client-intro .container {
  position: relative;
  z-index: 2;
}

.featured-clients {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
  position: relative;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 2px solid rgba(30, 64, 175, 0.1);
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(30, 64, 175, 0.2);
}

.client-logo {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.client-img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all var(--transition-normal);
  filter: grayscale(20%) brightness(1.1);
}

.client-card:hover .client-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.2);
}

.client-info {
  text-align: center;
}

.client-info h4 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
}

.client-category {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.client-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.service-tag {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(30, 64, 175, 0.2);
  transition: all var(--transition-normal);
}

.service-tag:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

/* Client Statistics Section */
.client-statistics {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.stats-content {
  padding-right: 2rem;
}

.impact-list {
  margin-top: 2rem;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.impact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-colored);
}

.impact-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.impact-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 2px solid rgba(30, 64, 175, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Industries Section */
.industries-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.industry-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-colored);
}

.industry-card h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.industry-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Client Testimonials Section */
.client-testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(30, 64, 175, 0.1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h5 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info span {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Partnership CTA Section */
.partnership-cta {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.partnership-cta .container {
  position: relative;
  z-index: 2;
}

/* Responsive Design for Client Page */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .client-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .impact-item {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    padding: 2rem;
  }

  .client-img {
    max-width: 150px;
    max-height: 80px;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .impact-item {
    flex-direction: column;
    text-align: center;
  }

  .impact-icon {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 576px) {
  .client-card {
    padding: 1.5rem;
  }

  .client-img {
    max-width: 120px;
    max-height: 60px;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .industry-card {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Special Effects for Client Page */
@keyframes clientFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.client-card:hover .client-img {
  animation: clientFloat 2s ease-in-out infinite;
}

/* Print Styles for Client Page */
@media print {
  .client-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .partnership-cta {
    display: none;
  }
}

