/*========================================
  INVICTA INFOTECH - PREMIUM STYLES
  Award-Winning Corporate Website
========================================*/

/*========================================
  CSS VARIABLES - COLOR SYSTEM
========================================*/
:root {
  --primary: #0c2752;
  --primary-tint: #3163a0;
  --secondary: #39bd00;
  --on-primary: #ffffff;
  --background: #f7f9fc;
  --surface: #ffffff;
  --text-primary: #0b1a2c;
  --text-secondary: #5a6b82;
  --border-soft: rgba(12, 39, 82, 0.08);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0c2752, #3163a0);
  --gradient-cta: linear-gradient(135deg, #3fd000, #4b9e27);
  --gradient-subtle: linear-gradient(180deg, rgba(49, 99, 160, 0.03), rgba(68, 131, 41, 0.03));
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(12, 39, 82, 0.08);
  --shadow-md: 0 4px 16px rgba(12, 39, 82, 0.12);
  --shadow-lg: 0 8px 32px rgba(12, 39, 82, 0.16);
  --shadow-xl: 0 16px 48px rgba(12, 39, 82, 0.24);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/*========================================
  RESET & BASE STYLES
========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

/*========================================
  TYPOGRAPHY SYSTEM
========================================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  max-width: 70ch;
}

.section-title {
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto 3rem;
}

.gradient-text {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*========================================
  LAYOUT & SPACING
========================================*/
.section-padding {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.bg-light {
  background-color: var(--background);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-primary-custom:hover {
  color: var(--on-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(49, 99, 160, 0.4);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-secondary-custom {
  background: transparent;
  color: var(--on-primary);
  border: 2px solid var(--on-primary);
  position: relative;
  z-index: 1;
}

.btn-secondary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--on-primary);
  transition: width var(--transition-base);
  z-index: -1;
}

.btn-secondary-custom:hover {
  color: var(--primary);
}

.btn-secondary-custom:hover::before {
  width: 100%;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-glow {
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(49, 99, 160, 0.4);
  }
  50% {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(49, 99, 160, 0.6);
  }
}

/*========================================
  NAVIGATION
========================================*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1320px; */
  /* margin: 0 auto; */
  /* padding: 0 1.5rem; */
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--on-primary);
  transition: var(--transition-base);
  border: 2px solid #000;
  border-radius: 16px;
  padding: 5px 20px;
}

.navbar-logo img {
  height: 80px;
  transition: var(--transition-base);

}

.navbar.scrolled .navbar-logo {
  color: var(--primary);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.navbar-link {
  font-weight: 500;
  color: var(--on-primary);
  position: relative;
  transition: var(--transition-base);
}

.navbar.scrolled .navbar-link {
  color: var(--text-primary);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  transition: width var(--transition-base);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 0.625rem 1.5rem;
  background: transparent;
  border: 2px solid var(--on-primary);
  color: var(--on-primary);
  border-radius: 6px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar-cta {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar.scrolled .navbar-cta:hover {
  background: var(--gradient-primary);
  color: var(--on-primary);
  border-color: transparent;
  transform: translateY(-2px);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--on-primary);
}

.navbar.scrolled .navbar-toggle svg {
  stroke: var(--primary);
}

/*========================================
  HERO SECTION
========================================*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.particle-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--on-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--on-primary);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.floating-card .icon-large {
  width: 48px;
  height: 48px;
}

.floating-card span {
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.card-1 {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-primary);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/*========================================
  FEATURE CARDS
========================================*/
.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 2px solid var(--border-soft);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(49, 99, 160, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-tint);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: rotate(5deg) scale(1.1);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--on-primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.feature-card.featured {
  border-color: var(--primary-tint);
  background: linear-gradient(135deg, rgba(49, 99, 160, 0.05), rgba(68, 131, 41, 0.05));
}

/*========================================
  ABOUT SECTION
========================================*/
.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-symbol {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 600;
}

.about-content {
  padding-left: 2rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.mission-vision {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 2rem 0;
}

.mv-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--gradient-subtle);
  border-radius: 12px;
  border-left: 4px solid var(--primary-tint);
  transition: var(--transition-base);
}

.mv-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--on-primary);
}

.mv-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.mv-text {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.core-values {
  margin: 2rem 0;
}

.values-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.values-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.values-list strong {
  color: var(--text-primary);
}

.about-tagline {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--primary);
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary);
}

/*========================================
  SERVICE CARDS
========================================*/
.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid var(--border-soft);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-tint);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--on-primary);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

/*========================================
  WHY CHOOSE US - TIMELINE
========================================*/
.why-choose-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--on-primary);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-lg);
}

.timeline-content {
  flex: 1;
  padding: 1rem 0;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.why-visual:hover .why-image {
  transform: scale(1.08);
}

/*========================================
  HIRING PROCESS - STEPPER
========================================*/
.process-stepper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 2rem 0;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--on-primary);
  transition: var(--transition-base);
}

.process-step:hover .step-icon {
  transform: scale(1.15);
  box-shadow: var(--shadow-xl);
}

.process-step:hover .step-icon svg {
  transform: rotate(10deg);
}

.step-content {
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(49, 99, 160, 0.15);
  line-height: 1;
}

.process-connector {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-tint), var(--secondary));
  z-index: 1;
  opacity: 0.3;
}

/*========================================
  INDUSTRY CARDS
========================================*/
.industry-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--border-soft);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.industry-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary-tint);
  transition: var(--transition-base);
}

.industry-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-tint);
  background: var(--gradient-subtle);
}

.industry-card:hover svg {
  stroke: var(--primary);
  transform: scale(1.2);
}

/*========================================
  METRICS SECTION
========================================*/
.metrics-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
}

.metrics-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/background.jpg') center/cover no-repeat;
  opacity: 0.1;
  animation: parallaxBg 30s ease-in-out infinite;
}

@keyframes parallaxBg {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-20px);
  }
}

.metric-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.metric-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.metric-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--on-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.metric-symbol {
  font-size: 2.5rem;
  color: var(--secondary);
}

.metric-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

/*========================================
  CAREER BENEFITS
========================================*/
.career-benefit-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--border-soft);
  transition: all var(--transition-base);
  height: 100%;
}

.career-benefit-card svg {
  width: 56px;
  height: 56px;
  stroke: var(--primary-tint);
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.career-benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.career-benefit-card p {
  color: var(--text-secondary);
  margin: 0 auto;
  line-height: 1.6;
}

.career-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-tint);
  background: var(--gradient-subtle);
}

.career-benefit-card:hover svg {
  stroke: var(--primary);
  transform: scale(1.2) rotate(5deg);
}

/*========================================
  TESTIMONIALS
========================================*/
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-item {
  padding: 0 1rem;
}

.testimonial-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 2px solid var(--border-soft);
  transition: all var(--transition-base);
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--on-primary);
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-tint);
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.author-title {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Slick Slider Customization */
.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--primary-tint);
}

.slick-dots li.slick-active button:before {
  color: var(--primary);
}

/*========================================
  CTA BANNER
========================================*/
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--gradient-cta); */
  background: var(--gradient-primary);
  z-index: -1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--on-primary);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 100%;
}

/*========================================
  CONTACT SECTION
========================================*/
.contact-info {
  background: var(--surface);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-tint);
}

.contact-details h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-details a,
.contact-details p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0;
  transition: var(--transition-base);
}

.contact-details a:hover {
  color: var(--primary-tint);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.social-link svg {
  width: 22px;
  height: 22px;
  stroke: var(--on-primary);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-cta);
}

.contact-form {
  background: var(--surface);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-floating {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1.25rem 1rem 0.5rem;
  font-size: 1rem;
  border: 2px solid var(--border-soft);
  border-radius: 10px;
  background: var(--surface);
  transition: all var(--transition-base);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-tint);
  box-shadow: 0 0 0 4px rgba(49, 99, 160, 0.1);
}

.form-floating label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all var(--transition-base);
  background: var(--surface);
  padding: 0 0.25rem;
  height: 30px;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary-tint);
}

select.form-control {
  padding: 1rem;
}

select.form-control + label {
  top: 0;
  font-size: 0.75rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  padding-top: 1.25rem;
}

/*========================================
  FOOTER
========================================*/
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--on-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--on-primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0.5rem auto;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: var(--on-primary);
}

/*========================================
  RESPONSIVE DESIGN
========================================*/
@media (max-width: 1199px) {
  .process-connector {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-toggle {
    display: block;
  }
  
  .navbar-link {
    color: var(--text-primary);
  }
  
  .navbar-cta {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .hero-visual {
    height: 400px;
    margin-top: 3rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .process-stepper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .process-step {
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .floating-card {
    padding: 1rem;
  }
  
  .floating-card span {
    font-size: 0.85rem;
  }
  
  .metric-number {
    font-size: 3rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .testimonial-content {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1.05rem;
  }
}

/*========================================
  UTILITY CLASSES
========================================*/
.text-center {
  text-align: center;
}

.text-white {
  color: var(--on-primary);
}

.w-100 {
  width: 100%;
}

/* Smooth entrance animations */
.animate__animated {
  animation-duration: 0.8s;
}