/* ============================================
   Professional Freelancer Portfolio Styles
   ============================================ */

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #0f172a;
  --accent-color: #10b981;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ===================
   Typography
   =================== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary-color); }

p {
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* ===================
   Top Bar - Modern Minimal
   =================== */
.top-bar.v2 {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar.v2 .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar.v2 .info-link ul,
.top-bar.v2 .social-link ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.top-bar.v2 .info-link li,
.top-bar.v2 .social-link li {
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar.v2 .info-link p,
.top-bar.v2 .social-link p {
  white-space: nowrap;
  margin: 0;
}

.top-bar.v2 .info-link a,
.top-bar.v2 .social-link a {
  white-space: nowrap;
  word-break: keep-all;
}

.top-bar.v2 .info-link li,
.top-bar.v2 .social-link li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar.v2 .my-icon {
  color: var(--primary-color);
  font-size: 1rem;
}

.top-bar.v2 p {
  margin: 0;
  color: var(--text-secondary);
}

.top-bar.v2 a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar.v2 a:hover {
  color: var(--primary-color);
}

/* ===================
   Menu Bar - Sleek Navigation
   =================== */
.menu-bar.v2 {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.menu-bar.v2.sticky-header {
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.menu-bar.v2 .menu-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-bar.v2 .menu-logo h1 {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.02em;
}

.menu-bar.v2 .main-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-bar.v2 .main-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.menu-bar.v2 .main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.menu-bar.v2 .main-menu a:hover,
.menu-bar.v2 .main-menu a.active {
  color: var(--primary-color);
}

.menu-bar.v2 .main-menu a:hover::after,
.menu-bar.v2 .main-menu a.active::after {
  width: 100%;
}

/* ===================
   Banner - Hero Section
   =================== */
.banner.v2 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner.v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
  z-index: 1;
}

.banner.v2 .container {
  position: relative;
  z-index: 2;
}

.banner.v2 .banner-content {
  max-width: 800px;
}

.banner.v2 h6 {
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.banner.v2 h2 {
  color: var(--bg-white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.banner.v2 p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.banner.v2 .banner-actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner.v2 .banner-actions li {
  margin: 0;
  padding: 0;
}

.banner.v2 .link-anime.v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  min-height: 48px;
}

.banner.v2 .link-anime.v2:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--bg-white);
}

.banner.v2 .link-anime.v2:active {
  transform: translateY(0);
}

/* ===================
   Section Titles
   =================== */
.section-title h6 {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

.section-title p + p {
  margin-top: 1rem;
}

.section-title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-title-center h6 {
  margin-bottom: 0.5rem;
}

.section-title-center h2 {
  margin-bottom: 0.75rem;
}

.section-title-center p {
  margin-bottom: 0;
}

/* ===================
   About Me Section - Redesigned
   =================== */
.who-we-are {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.who-we-are .container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.who-we-are .section-title {
  margin-bottom: 3rem;
}

.who-we-are .section-title h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.who-we-are .section-title p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-main-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-white);
  padding: 0.5rem;
}

.about-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image img {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-image-wrapper:hover .image-overlay {
  opacity: 1;
}

/* Stats Card */
.about-stats-card {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 200px;
  max-width: 280px;
  z-index: 10;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.about-stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.stats-icon .my-icon {
  font-size: 1.75rem;
  color: var(--bg-white);
}

.stats-content {
  flex: 1;
}

.stats-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0.25rem 0 0 0;
  font-weight: 500;
}

/* Content Wrapper */
.about-content-wrapper {
  padding-left: 3rem;
}

.about-intro .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 0;
  font-weight: 400;
}

/* Expertise Tabs */
.about-expertise {
  margin-top: 2.5rem;
}

.expertise-tabs {
  display: flex;
  gap: 0.75rem;
  border: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.expertise-tabs .nav-item {
  margin: 0;
}

.expertise-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.expertise-tabs .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.expertise-tabs .nav-link:hover::before {
  left: 100%;
}

.expertise-tabs .nav-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.expertise-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.expertise-tabs .nav-link.active .tab-icon .my-icon {
  color: var(--bg-white);
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.tab-icon .my-icon {
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.expertise-tabs .nav-link.active .tab-icon .my-icon {
  color: var(--bg-white);
}

.tab-text {
  white-space: nowrap;
}

/* Expertise Content */
.expertise-content {
  min-height: 280px;
}

.expertise-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.expertise-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.expertise-title::before {
  content: '';
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 2px;
}

.expertise-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.875rem;
}

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.expertise-list li:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateX(5px);
}

.list-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.expertise-list li span:last-child {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Button */
.about-cta {
  margin-top: 2rem;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: var(--bg-white);
  gap: 1rem;
}

.btn-primary-custom .btn-icon {
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

.btn-primary-custom:hover .btn-icon {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .about-content-wrapper {
    padding-left: 2rem;
  }
  
  .about-stats-card {
    min-width: 180px;
    padding: 1.25rem 1.5rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
}

/* ===================
   Portfolio Section - Redesigned
   =================== */
.portfolio-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

/* Image Wrapper */
.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-light);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Image Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(16, 185, 129, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: var(--bg-white);
}

.overlay-icon {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.overlay-icon .my-icon {
  font-size: 2rem;
  color: var(--bg-white);
}

.overlay-text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* Portfolio Badge */
.portfolio-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

.portfolio-badge.badge-success {
  background: var(--accent-color);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.portfolio-badge.badge-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

/* Portfolio Content */
.portfolio-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.portfolio-icon.icon-ecommerce {
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.portfolio-icon.icon-frontend {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.portfolio-icon .my-icon {
  font-size: 1.5rem;
  color: var(--bg-white);
}

.portfolio-title-section {
  flex: 1;
}

.portfolio-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.portfolio-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.portfolio-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

/* Technology Badges */
.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tech-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--bg-light);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-card:hover .tech-badge {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Portfolio Metrics */
.portfolio-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Portfolio Section - Additional Enhancements */
.portfolio-section .row.g-4 {
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
  .portfolio-section .row.g-4 {
    --bs-gutter-y: 2rem;
  }
}

/* Portfolio Card Animation */
@keyframes portfolioFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-card {
  animation: portfolioFadeIn 0.6s ease-out;
}

/* Portfolio Badge Animation */
.portfolio-card:hover .portfolio-badge {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Enhanced Hover States */
.portfolio-card:hover .portfolio-icon {
  transform: rotate(5deg) scale(1.1);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .metric-value {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* ===================
   Company Benefits - Redesigned
   =================== */
.company-benefits {
  padding: 6rem 0 !important;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.company-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.company-benefits .container {
  position: relative;
  z-index: 1;
}

.company-benefits .section-title-center {
  margin-bottom: 3.5rem;
}

.company-benefits .section-title-center h2 {
  color: var(--secondary-color) !important;
  font-weight: 800;
}

.company-benefits .section-title-center p {
  color: var(--text-primary) !important;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefit Card */
.benefit-card {
  background: var(--bg-white);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

/* Benefit Icon Wrapper */
.benefit-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon.icon-expertise {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.benefit-icon.icon-security {
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
}

.benefit-icon.icon-architecture {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.benefit-icon.icon-communication {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.benefit-icon.icon-seo {
  background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
}

.benefit-icon.icon-support {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.benefit-icon .my-icon {
  font-size: 2rem;
  color: var(--bg-white);
}

.benefit-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--bg-light);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  z-index: 3;
}

/* Benefit Content */
.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 0.875rem 0;
  line-height: 1.3;
}

.benefit-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.benefit-highlight {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.highlight-text {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.benefit-card:hover .highlight-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Benefits CTA */
.benefits-cta {
  margin-top: 3rem;
}

.benefits-cta .btn-primary-custom {
  display: inline-flex;
}

/* Benefits Section - Additional Enhancements */
.company-benefits .row.g-4 {
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
  .company-benefits .row.g-4 {
    --bs-gutter-y: 2rem;
  }
}

/* Benefit Card Stagger Animation */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Hover Effects */
.benefit-card:hover .benefit-number {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1) rotate(360deg);
  transition: all 0.5s ease;
}

/* Gradient Background on Hover */
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-content {
  position: relative;
  z-index: 1;
}

/* ===================
   Process Steps - Redesigned
   =================== */
.our-simple-step.v2 {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.our-simple-step.v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.our-simple-step.v2 .container {
  position: relative;
  z-index: 1;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin-top: 3rem;
}

.process-timeline .row {
  position: relative;
  display: flex;
  align-items: stretch;
}

.process-timeline .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Timeline Connector (Desktop) */
.process-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.process-connector::before,
.process-connector::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px var(--bg-white), 0 0 0 6px var(--primary-color);
}

.process-connector::before {
  left: 16.666%;
}

.process-connector::after {
  right: 16.666%;
}

/* Process Card Wrapper */
.process-card-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
}

.process-timeline .row {
  display: flex;
  align-items: stretch;
}

.process-timeline .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Process Card */
.process-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.process-card:hover::before {
  transform: scaleX(1);
}

/* Step Badge */
.process-step-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.process-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

/* Process Icon Wrapper */
.process-icon-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

.process-card:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.process-icon.icon-discovery {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.process-icon.icon-development {
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
}

.process-icon.icon-launch {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.process-icon .my-icon {
  font-size: 2.5rem;
  color: var(--bg-white);
}

/* Process Content */
.process-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.process-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
  flex: 1;
}

/* Process Details */
.process-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  border-left: 3px solid var(--primary-color);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.detail-content {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.detail-content strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.detail-content span {
  color: var(--text-secondary);
  display: block;
}

/* Process Outcome */
.process-outcome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  margin-top: auto;
}

.outcome-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.outcome-text {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* Process Tech Tags */
.process-tech {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.tech-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.process-card:hover .tech-tag {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* Process Footer */
.process-footer {
  margin-top: 3rem;
}

.process-note {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* Process Section - Additional Enhancements */
.process-timeline .row.g-4 {
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
  .process-timeline .row.g-4 {
    --bs-gutter-y: 2rem;
  }
}

/* Process Card Animation */
@keyframes processFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card {
  animation: processFadeIn 0.6s ease-out;
}

/* Enhanced Hover States */
.process-card:hover .process-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1.1) rotate(5deg);
  }
  50% {
    transform: scale(1.15) rotate(8deg);
  }
}

/* Process Card Gradient Overlay */
.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 1.5rem;
}

.process-card:hover::after {
  opacity: 1;
}

.process-content {
  position: relative;
  z-index: 1;
}

/* Timeline Connector Responsive */
@media (max-width: 1199px) {
  .process-connector {
    display: none;
  }
}

/* ===================
   Clients Review - Redesigned
   =================== */
.clients-review.v2 {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.clients-review.v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.clients-review.v2 .container {
  position: relative;
  z-index: 1;
}

.clients-review.v2 .section-title-center {
  margin-bottom: 3.5rem;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Quote Icon */
.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  z-index: 0;
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
}

/* Rating Stars */
.testimonial-rating {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-rating .star-mark {
  display: flex;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonial-rating .star-mark .my-icon {
  color: #fbbf24;
  font-size: 1.375rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  margin-left: 0;
  border-left: none;
  border-top: 3px solid var(--primary-color);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Testimonial Profile */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.profile-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .profile-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.profile-avatar.avatar-2 {
  background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.profile-avatar.avatar-3 {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.avatar-initials {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 0.05em;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.profile-role {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.profile-verified {
  display: inline-block;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: var(--accent-color);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verified-badge::before {
  content: '✓';
  font-size: 0.875rem;
}

/* Navigation Controls */
.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.testimonial-nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

.testimonial-nav-btn .my-icon {
  font-size: 1.25rem;
}

.testimonials-pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--border-color);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 2rem;
  border-radius: 0.375rem;
}

/* Testimonials Section - Additional Enhancements */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 1.5rem;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-rating,
.testimonial-text,
.testimonial-profile {
  position: relative;
  z-index: 1;
}

/* Enhanced Quote Styling */
.testimonial-text {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-top: 3px solid var(--primary-color);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
}

/* Profile Avatar Hover Effect */
.testimonial-card:hover .profile-avatar {
  animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Swiper Slider Enhancements */
.testimonials-slider .swiper-slide {
  height: auto;
}

.testimonials-slider .swiper-wrapper {
  align-items: stretch;
}

/* Testimonial Card Animation */
@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: testimonialFadeIn 0.6s ease-out;
}

/* ===================
   Contact Section
   =================== */
.talk-to-us.v1 {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  position: relative;
}

.talk-to-us.v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.talk-to-us.v1 .container {
  position: relative;
  z-index: 1;
}

.talk-to-us.v1 .left-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}

.talk-to-us.v1 .left-img img {
  width: 100%;
  height: auto;
  display: block;
}

.talk-to-us.v1 .left-numbber {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.talk-to-us.v1 .left-numbber .my-icon {
  font-size: 3rem;
  color: var(--accent-color);
}

.talk-to-us.v1 .left-numbber h4 {
  color: var(--bg-white);
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.talk-to-us.v1 .left-numbber h3 {
  margin: 0;
  font-size: 1.5rem;
}

.talk-to-us.v1 .left-numbber a {
  color: var(--bg-white);
  text-decoration: none;
}

.talk-to-us.v1 .section-title h6 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.talk-to-us.v1 .section-title h2 {
  margin-bottom: 0.75rem;
}

.talk-to-us.v1 .section-title p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.talk-to-us.v1 .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.talk-to-us.v1 .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-light);
  color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.talk-to-us.v1 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.talk-to-us.v1 .d-label {
  color: var(--bg-white);
  display: block;
  margin-bottom: 0.5rem;
}

.talk-to-us.v1 .btn-anime.v2 {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.talk-to-us.v1 .btn-anime.v2:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ===================
   Footer
   =================== */
.footer-main.v2 {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 2.5rem 0;
}

.footer-main.v2 .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-main.v2 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-main.v2 a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main.v2 a:hover {
  color: var(--bg-white);
}

/* ===================
   Link Animations
   =================== */
.link-anime.v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-anime.v2:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

/* ===================
   Responsive Design
   =================== */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .who-we-are .right-content {
    padding-left: 1.5rem;
  }
}

/* Desktop Menu Display (992px and above) */
@media (min-width: 992px) {
  .menu-bar.v2 .main-menu {
    display: flex !important;
  }
  
  .menu-bar.v2 .mobile-menu-btn {
    display: none !important;
  }
}

/* Tablet Large (992px - 1199px) */
@media (max-width: 1199px) {
  .banner.v2 h2 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .who-we-are .right-content {
    padding-left: 1.25rem;
  }
  
  .who-we-are .count-user {
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.25rem;
    min-width: 160px;
  }
  
  .services-card,
  .process-card {
    margin-bottom: 2rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .banner.v2 {
    min-height: 75vh;
    background-attachment: scroll;
  }
  
  .banner.v2 h2 {
    font-size: 2.5rem;
  }
  
  .banner.v2 p {
    font-size: 1.0625rem;
  }
  
  .who-we-are {
    padding: 4rem 0;
  }
  
  .who-we-are .row {
    flex-direction: column;
  }
  
  .who-we-are .left-images {
    margin-bottom: 2rem;
  }
  
  .who-we-are .right-content {
    padding-left: 0;
    margin-top: 0;
  }
  
  .who-we-are .count-user {
    position: static;
    margin-top: 1.5rem;
    right: auto;
    bottom: auto;
    max-width: 100%;
    width: 100%;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title-center {
    margin-bottom: 2.5rem;
  }
  
  .services.v2,
  .company-benefits,
  .our-simple-step.v2,
  .clients-review.v2 {
    padding: 4rem 0;
  }
  
  .clients-review .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .who-we-tabs {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .who-we-tabs .btn-anime {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .process-card {
    padding: 2rem;
  }
  
  .talk-to-us.v1 {
    padding: 4rem 0;
  }
  
  .talk-to-us.v1 .left-img-numbber {
    margin-bottom: 2rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  /* Improved Container Padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero Banner - Enhanced Mobile */
  .banner.v2 {
    min-height: 60vh;
    padding: 3rem 0;
    background-attachment: scroll !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .banner.v2 .banner-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .banner.v2 h6 {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
  
  .banner.v2 h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  
  .banner.v2 p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .banner.v2 .link-anime.v2 {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  /* Top Bar - Mobile Optimized */
  .top-bar.v2 {
    padding: 0.625rem 0;
    font-size: 0.8125rem;
  }
  
  .top-bar.v2 .top-bar-content {
    flex-direction: column;
    gap: 0.625rem;
    text-align: center;
  }
  
  .top-bar.v2 .info-link ul,
  .top-bar.v2 .social-link ul {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .top-bar.v2 .info-link li,
  .top-bar.v2 .social-link li {
    font-size: 0.8125rem;
  }
  
  /* Show email on mobile - override default hide */
  .top-bar.v2 .social-link {
    display: block !important;
  }
  
  /* Ensure email is visible in mobile menu */
  .mobile-menu .socials-links {
    display: block !important;
  }
  
  .mobile-menu .socials-links ul {
    display: flex !important;
  }
  
  .mobile-menu .socials-links li {
    display: flex !important;
  }
  
  /* Menu Bar - Mobile Enhanced */
  .menu-bar.v2 {
    padding: 0.875rem 0;
  }
  
  .menu-bar.v2 .menu-logo h1 {
    font-size: 1.5rem;
  }
  
  .menu-bar.v2 .main-menu {
    display: none !important;
  }
  
  .menu-bar.v2 .mobile-menu-btn {
    display: flex !important;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }
  
  /* About Section - Mobile Layout */
  .who-we-are {
    padding: 3.5rem 0;
  }
  
  .who-we-are .section-title {
    margin-bottom: 2rem;
  }
  
  .who-we-are .section-title h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .who-we-are .section-title p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-content-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .about-intro .lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Stats Card - Mobile */
  .about-stats-card {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
  }
  
  .stats-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .stats-icon .my-icon {
    font-size: 1.5rem;
  }
  
  .stats-number {
    font-size: 1.75rem;
  }
  
  .stats-label {
    font-size: 0.8125rem;
  }
  
  /* Expertise Tabs - Mobile */
  .about-expertise {
    margin-top: 2rem;
  }
  
  .expertise-tabs {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .expertise-tabs .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  .expertise-content {
    min-height: auto;
  }
  
  .expertise-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .expertise-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
  
  .expertise-description {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .expertise-list {
    gap: 0.75rem;
  }
  
  .expertise-list li {
    padding: 0.625rem;
    border-radius: 0.5rem;
  }
  
  .expertise-list li:hover {
    transform: translateX(3px);
  }
  
  .list-icon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.6875rem;
  }
  
  .expertise-list li span:last-child {
    font-size: 0.875rem;
  }
  
  /* CTA Button - Mobile */
  .about-cta {
    margin-top: 1.5rem;
  }
  
  .btn-primary-custom {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
  
  /* Section Titles - Mobile */
  .section-title h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .section-title h6 {
    font-size: 0.8125rem;
  }
  
  .section-title p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section-title-center {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .section-title-center h2 {
    font-size: 1.75rem;
  }
  
  /* Services Section - Mobile */
  .portfolio-section {
    padding: 3.5rem 0;
  }
  
  .portfolio-card {
    margin-bottom: 1.5rem;
  }
  
  .portfolio-image {
    height: 200px;
  }
  
  .portfolio-content {
    padding: 1.5rem;
  }
  
  .portfolio-header {
    margin-bottom: 0.875rem;
  }
  
  .portfolio-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .portfolio-icon .my-icon {
    font-size: 1.25rem;
  }
  
  .portfolio-title {
    font-size: 1.25rem;
  }
  
  .portfolio-subtitle {
    font-size: 0.8125rem;
  }
  
  .portfolio-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .portfolio-tech {
    margin-bottom: 1rem;
  }
  
  .tech-badge {
    font-size: 0.75rem;
    padding: 0.3125rem 0.75rem;
  }
  
  .portfolio-metrics {
    gap: 1rem;
    padding-top: 1rem;
  }
  
  .metric-value {
    font-size: 1.25rem;
  }
  
  .metric-label {
    font-size: 0.6875rem;
  }
  
  /* Backward compatibility */
  .services.v2 {
    padding: 3.5rem 0;
  }
  
  .services-card {
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
  }
  
  .services-card .services-header {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .services-card .my-icon {
    font-size: 2rem;
  }
  
  .services-card .services-text h4 {
    font-size: 1.125rem;
  }
  
  .services-card .services-text p {
    font-size: 0.875rem;
  }
  
  .services-card .services-img {
    padding: 1rem;
  }
  
  /* Benefits Section - Mobile */
  .company-benefits {
    padding: 3.5rem 0 !important;
  }
  
  .company-benefits .section-title-center {
    margin-bottom: 2.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .benefit-icon .my-icon {
    font-size: 1.75rem;
  }
  
  .benefit-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.6875rem;
  }
  
  .benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .benefit-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .benefit-highlight {
    padding-top: 0.875rem;
  }
  
  .highlight-text {
    font-size: 0.75rem;
    padding: 0.3125rem 0.75rem;
  }
  
  .benefits-cta {
    margin-top: 2rem;
  }
  
  /* Backward compatibility */
  .benefits-list ul {
    margin: 1.5rem 0;
  }
  
  .benefits-list ul li {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .benefits-list .my-icon {
    font-size: 1.5rem;
    align-self: flex-start;
  }
  
  .benefits-list .list-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .benefits-list .list-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  
  /* Process Section - Mobile */
  .our-simple-step.v2 {
    padding: 3.5rem 0;
  }
  
  .process-timeline {
    margin-top: 2rem;
  }
  
  .process-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
  }
  
  .process-step-badge {
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
  }
  
  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
  
  .step-label {
    font-size: 0.8125rem;
  }
  
  .process-icon-wrapper {
    margin-bottom: 1.25rem;
  }
  
  .process-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }
  
  .process-icon .my-icon {
    font-size: 2rem;
  }
  
  .process-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
  
  .process-description {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .process-details {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .detail-item {
    gap: 0.625rem;
  }
  
  .detail-icon {
    font-size: 1.125rem;
  }
  
  .detail-content {
    font-size: 0.875rem;
  }
  
  .process-outcome {
    padding: 0.875rem;
    margin-top: 0.875rem;
  }
  
  .outcome-icon {
    font-size: 1.25rem;
  }
  
  .outcome-text {
    font-size: 0.875rem;
  }
  
  .process-tech {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }
  
  .tech-label {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
  
  .tech-tag {
    font-size: 0.75rem;
    padding: 0.3125rem 0.75rem;
  }
  
  .process-note {
    font-size: 0.9375rem;
  }
  
  /* Backward compatibility */
  .process-card-header {
    margin-bottom: 1rem;
  }
  
  .process-card-header .my-icon {
    font-size: 2rem;
  }
  
  .process-card-header h4 {
    font-size: 2.5rem;
  }
  
  .process-card h4 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .process-card > p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .process-card ul {
    margin: 1rem 0;
  }
  
  .process-card ul li {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
  }
  
  /* Testimonials - Mobile */
  .clients-review.v2 {
    padding: 3.5rem 0;
  }
  
  .clients-review.v2 .section-title-center {
    margin-bottom: 2.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
    border-radius: 1.25rem;
  }
  
  .testimonial-quote-icon {
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  
  .testimonial-rating .star-mark .my-icon {
    font-size: 1.125rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
  }
  
  .testimonial-text::before {
    font-size: 3rem;
    top: -0.25rem;
    left: 0.25rem;
  }
  
  .testimonial-profile {
    padding-top: 1.25rem;
    gap: 1rem;
  }
  
  .profile-avatar {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .avatar-initials {
    font-size: 1.125rem;
  }
  
  .profile-name {
    font-size: 1rem;
  }
  
  .profile-role {
    font-size: 0.875rem;
  }
  
  .verified-badge {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.625rem;
  }
  
  .testimonials-navigation {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .testimonial-nav-btn {
    width: 3rem;
    height: 3rem;
  }
  
  .testimonial-nav-btn .my-icon {
    font-size: 1.125rem;
  }
  
  /* Backward compatibility */
  .clients-review .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .clients-review .section-title .left-content h2 {
    font-size: 1.75rem;
  }
  
  .clients-review .right-content {
    display: flex;
    gap: 0.75rem;
    align-self: flex-start;
  }
  
  .clients-review .prev-btn,
  .clients-review .next-btn {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.875rem;
  }
  
  .client-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }
  
  .client-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .client-card .profile h6 {
    font-size: 0.9375rem;
  }
  
  /* Contact Section - Mobile */
  .talk-to-us.v1 {
    padding: 3.5rem 0;
  }
  
  .talk-to-us.v1 .row {
    gap: 2rem;
  }
  
  .talk-to-us.v1 .left-img {
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
  }
  
  .talk-to-us.v1 .left-img img {
    width: 100%;
    height: auto;
  }
  
  .talk-to-us.v1 .left-numbber {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    border-radius: 0.75rem;
  }
  
  .talk-to-us.v1 .left-numbber .my-icon {
    font-size: 2.5rem;
  }
  
  .talk-to-us.v1 .left-numbber h4 {
    font-size: 1.125rem;
  }
  
  .talk-to-us.v1 .left-numbber h3 {
    font-size: 1.25rem;
  }
  
  .talk-to-us.v1 .left-numbber a {
    font-size: 1.125rem;
  }
  
  .talk-to-us.v1 .section-title {
    margin-bottom: 1.5rem;
  }
  
  .talk-to-us.v1 .section-title h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .talk-to-us.v1 .section-title p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  
  .talk-to-us.v1 .form-control {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
  
  .talk-to-us.v1 .d-label {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }
  
  .talk-to-us.v1 .btn-anime.v2 {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .talk-to-us.v1 .row.gx-4 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .talk-to-us.v1 .row.gx-4 > * {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Footer - Mobile */
  .footer-main.v2 {
    padding: 2rem 0;
  }
  
  .footer-main.v2 p {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  /* Container - Extra Small */
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  
  /* Hero Banner - Extra Small */
  .banner.v2 {
    min-height: 50vh;
    padding: 2.5rem 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .banner.v2 h6 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
  
  .banner.v2 h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.875rem;
  }
  
  .banner.v2 p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .banner.v2 .link-anime.v2 {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    width: 100%;
    max-width: 100%;
  }
  
  /* Top Bar - Extra Small */
  .top-bar.v2 {
    padding: 0.5rem 0;
    font-size: 0.75rem;
  }
  
  .top-bar.v2 .info-link ul,
  .top-bar.v2 .social-link ul {
    gap: 0.75rem;
  }
  
  .top-bar.v2 .info-link li,
  .top-bar.v2 .social-link li {
    font-size: 0.75rem;
  }
  
  /* Show email on extra small mobile - override default hide */
  .top-bar.v2 .social-link {
    display: block !important;
  }
  
  /* Menu Bar - Extra Small */
  .menu-bar.v2 {
    padding: 0.75rem 0;
  }
  
  .menu-bar.v2 .menu-logo h1 {
    font-size: 1.375rem;
  }
  
  /* Section Titles - Extra Small */
  .section-title h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .section-title h6 {
    font-size: 0.75rem;
  }
  
  .section-title p {
    font-size: 0.9375rem;
  }
  
  .section-title-center {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .section-title-center h2 {
    font-size: 1.5rem;
  }
  
  /* About Section - Extra Small */
  .who-we-are {
    padding: 3rem 0;
  }
  
  .who-we-are .section-title h2 {
    font-size: 1.5rem;
  }
  
  .who-we-are .section-title p {
    font-size: 0.9375rem;
  }
  
  .about-intro .lead {
    font-size: 0.9375rem;
  }
  
  .about-stats-card {
    padding: 1rem 1.25rem;
  }
  
  .stats-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .stats-icon .my-icon {
    font-size: 1.25rem;
  }
  
  .stats-number {
    font-size: 1.5rem;
  }
  
  .stats-label {
    font-size: 0.75rem;
  }
  
  .expertise-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .expertise-card {
    padding: 1.25rem;
  }
  
  .expertise-title {
    font-size: 1.125rem;
  }
  
  .expertise-description {
    font-size: 0.875rem;
  }
  
  .expertise-list li span:last-child {
    font-size: 0.8125rem;
  }
  
  .btn-primary-custom {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
  }
  
  /* Services - Extra Small */
  .portfolio-section {
    padding: 3rem 0;
  }
  
  .portfolio-image {
    height: 180px;
  }
  
  .portfolio-content {
    padding: 1.25rem;
  }
  
  .portfolio-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .portfolio-icon .my-icon {
    font-size: 1.125rem;
  }
  
  .portfolio-title {
    font-size: 1.125rem;
  }
  
  .portfolio-subtitle {
    font-size: 0.75rem;
  }
  
  .portfolio-description {
    font-size: 0.8125rem;
  }
  
  .tech-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }
  
  .portfolio-metrics {
    gap: 0.75rem;
    flex-direction: column;
  }
  
  .metric-value {
    font-size: 1.125rem;
  }
  
  .metric-label {
    font-size: 0.625rem;
  }
  
  /* Backward compatibility */
  .services.v2 {
    padding: 3rem 0;
  }
  
  .services-card {
    margin-bottom: 1.25rem;
  }
  
  .services-card .services-header {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  
  .services-card .my-icon {
    font-size: 1.75rem;
  }
  
  .services-card .services-text h4 {
    font-size: 1.125rem;
  }
  
  .services-card .services-text p {
    font-size: 0.8125rem;
  }
  
  .services-card .services-img {
    padding: 0.875rem;
  }
  
  /* Benefits - Extra Small */
  .company-benefits {
    padding: 3rem 0 !important;
  }
  
  .company-benefits .section-title-center {
    margin-bottom: 2rem;
  }
  
  .benefit-card {
    padding: 1.25rem;
  }
  
  .benefit-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .benefit-icon .my-icon {
    font-size: 1.5rem;
  }
  
  .benefit-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
  }
  
  .benefit-title {
    font-size: 1.125rem;
  }
  
  .benefit-description {
    font-size: 0.8125rem;
  }
  
  .highlight-text {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }
  
  /* Backward compatibility */
  .benefits-list ul li {
    padding: 1rem 0;
  }
  
  .benefits-list .my-icon {
    font-size: 1.25rem;
  }
  
  .benefits-list .list-content h4 {
    font-size: 1.125rem;
  }
  
  .benefits-list .list-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  /* Process - Extra Small */
  .our-simple-step.v2 {
    padding: 3rem 0;
  }
  
  .process-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .process-step-badge {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  
  .step-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8125rem;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
  
  .process-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
  }
  
  .process-icon .my-icon {
    font-size: 1.75rem;
  }
  
  .process-title {
    font-size: 1.125rem;
  }
  
  .process-description {
    font-size: 0.875rem;
  }
  
  .process-details {
    padding: 0.875rem;
  }
  
  .detail-content {
    font-size: 0.8125rem;
  }
  
  .process-outcome {
    padding: 0.75rem;
  }
  
  .outcome-text {
    font-size: 0.8125rem;
  }
  
  .tech-tag {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }
  
  .process-note {
    font-size: 0.875rem;
  }
  
  /* Backward compatibility */
  .process-card-header {
    margin-bottom: 0.875rem;
  }
  
  .process-card-header .my-icon {
    font-size: 1.75rem;
  }
  
  .process-card-header h4 {
    font-size: 2rem;
  }
  
  .process-card h4 {
    font-size: 1.125rem;
  }
  
  .process-card > p {
    font-size: 0.8125rem;
  }
  
  .process-card ul li {
    font-size: 0.8125rem;
    padding-left: 1rem;
  }
  
  /* Testimonials - Extra Small */
  .clients-review.v2 {
    padding: 3rem 0;
  }
  
  .clients-review.v2 .section-title-center {
    margin-bottom: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .testimonial-rating .star-mark .my-icon {
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1.25rem;
  }
  
  .testimonial-text::before {
    font-size: 2.5rem;
  }
  
  .testimonial-profile {
    padding-top: 1rem;
    gap: 0.875rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .profile-avatar {
    width: 3rem;
    height: 3rem;
  }
  
  .avatar-initials {
    font-size: 1rem;
  }
  
  .profile-name {
    font-size: 0.9375rem;
  }
  
  .profile-role {
    font-size: 0.8125rem;
  }
  
  .verified-badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
  
  .testimonial-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
  
  .testimonial-nav-btn .my-icon {
    font-size: 1rem;
  }
  
  /* Backward compatibility */
  .clients-review .section-title .left-content h2 {
    font-size: 1.5rem;
  }
  
  .clients-review .prev-btn,
  .clients-review .next-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .client-card {
    padding: 1.25rem;
  }
  
  .client-card p {
    font-size: 0.9375rem;
  }
  
  .client-card .profile h6 {
    font-size: 0.875rem;
  }
  
  /* Contact - Extra Small */
  .talk-to-us.v1 {
    padding: 3rem 0;
  }
  
  .talk-to-us.v1 .section-title h2 {
    font-size: 1.5rem;
  }
  
  .talk-to-us.v1 .section-title p {
    font-size: 0.875rem;
  }
  
  .talk-to-us.v1 .left-numbber {
    padding: 1.25rem;
  }
  
  .talk-to-us.v1 .left-numbber .my-icon {
    font-size: 2rem;
  }
  
  .talk-to-us.v1 .left-numbber h4 {
    font-size: 1rem;
  }
  
  .talk-to-us.v1 .left-numbber h3 {
    font-size: 1.125rem;
  }
  
  .talk-to-us.v1 .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
  }
  
  .talk-to-us.v1 .d-label {
    font-size: 0.875rem;
  }
  
  .talk-to-us.v1 .btn-anime.v2 {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
  
  /* Footer - Extra Small */
  .footer-main.v2 {
    padding: 1.5rem 0;
  }
  
  .footer-main.v2 p {
    font-size: 0.75rem;
    padding: 0 0.875rem;
  }
}

/* ===================
   Utility Classes
   =================== */
.mb10 { margin-bottom: 0.625rem; }
.mb20 { margin-bottom: 1.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.text-white { color: var(--bg-white); }
.text-uppercase { text-transform: uppercase; }
.small { font-size: 0.875rem; }

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional Professional Enhancements */
.container {
  max-width: 1200px;
}

/* Button Enhancements */
.btn-anime {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover Effects */
.services-card,
.process-card,
.client-card {
  will-change: transform;
}

/* Form Enhancements */
.form-control:focus {
  outline: none;
}

/* Image Optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section Spacing */
section {
  position: relative;
}

/* Gradient Text Effect */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading States */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Accessibility Improvements */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .menu-bar,
  .top-bar,
  footer {
    display: none;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow {
  animation: fadeInUp 0.8s ease-out;
}

/* ===================
   Mobile Menu Enhancements
   =================== */
.menu-bar.v2 .mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-bar.v2 .mobile-menu-btn span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

.menu-bar.v2 .mobile-menu-btn:hover span {
  background: var(--primary-dark);
}

.menu-bar.v2 .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-bar.v2 .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-bar.v2 .mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu .mobile-logo h1 {
  font-size: 1.5rem;
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu .close-mobile-btn {
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: color 0.3s ease;
  border-radius: 0.5rem;
}

.mobile-menu .close-mobile-btn:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-menu .mobile-overflow {
  padding: 1rem 0;
}

.mobile-menu .main-manu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .main-manu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu .main-manu li:last-child {
  border-bottom: none;
}

.mobile-menu .main-manu a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu .main-manu a:hover,
.mobile-menu .main-manu a.active {
  color: var(--primary-color);
  background: var(--bg-light);
  padding-left: 1.5rem;
}

.mobile-menu .socials-links {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
  display: block !important;
}

.mobile-menu .socials-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .socials-links li {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  word-break: keep-all;
  width: 100%;
}

.mobile-menu .socials-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  white-space: nowrap;
  word-break: keep-all;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  width: 100%;
  /* Remove circular background */
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.mobile-menu .socials-links a:hover {
  color: var(--primary-color);
  background: transparent !important;
}

.mobile-menu .socials-links p {
  white-space: nowrap;
  word-break: keep-all;
  overflow: visible;
  text-overflow: clip;
  margin: 0;
  display: inline;
}

.mobile-menu .socials-links .my-icon {
  color: var(--primary-color);
  font-size: 1.125rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ===================
   Touch Target Improvements
   =================== */
@media (max-width: 991px) {
  /* Ensure minimum touch target size (44x44px) */
  .banner.v2 .link-anime.v2,
  .talk-to-us.v1 .btn-anime.v2,
  .who-we-tabs .btn-anime,
  .clients-review .prev-btn,
  .clients-review .next-btn,
  .menu-bar.v2 .mobile-menu-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Better spacing for touch interactions */
  .who-we-tabs .btn-anime {
    margin-bottom: 0.5rem;
  }
  
  /* Improved form inputs for mobile */
  .talk-to-us.v1 .form-control {
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  /* Better link spacing */
  .link-anime.v2 {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ===================
   Performance Optimizations
   =================== */
.banner.v2,
.banner.v2::before {
  will-change: transform;
  transform: translateZ(0);
}

.services-card,
.process-card,
.client-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===================
   Accessibility Improvements
   =================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus visible improvements */
.menu-bar.v2 .mobile-menu-btn:focus-visible,
.mobile-menu .close-mobile-btn:focus-visible,
.talk-to-us.v1 .btn-anime.v2:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* ===================
   Landscape Mobile Optimizations
   =================== */
@media (max-width: 991px) and (orientation: landscape) {
  .banner.v2 {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .banner.v2 h2 {
    font-size: 1.75rem;
  }
  
  .banner.v2 p {
    font-size: 0.9375rem;
  }
  
  .who-we-are,
  .services.v2,
  .company-benefits,
  .our-simple-step.v2,
  .clients-review.v2,
  .talk-to-us.v1 {
    padding: 2.5rem 0;
  }
}

/* ===================
   Print Optimizations
   =================== */
@media print {
  .banner.v2 {
    min-height: auto;
    padding: 2rem 0;
    background: var(--bg-white) !important;
  }
  
  .banner.v2::before {
    display: none;
  }
  
  .banner.v2 h2,
  .banner.v2 p {
    color: var(--text-primary) !important;
  }
  
  .talk-to-us.v1 {
    background: var(--bg-white) !important;
  }
  
  .talk-to-us.v1 .form-control {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-primary);
  }
}

