/* ==========================================================================
   Bamantra Talent Solutions - Premium CSS Design System
   ========================================================================== */

/* 1. Design Tokens & CSS Variables */
:root {
  /* Colors */
  --primary-color: #0c1e36;
  --primary-light: #183359;
  --primary-dark: #06101f;
  --primary-rgb: 12, 30, 54;

  --accent-color: #e67e22;
  --accent-hover: #d35400;
  --accent-light: #fdf2e9;
  --accent-rgb: 230, 126, 34;

  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #09172b;

  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f1f5f9;

  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(12, 30, 54, 0.05), 0 2px 4px -1px rgba(12, 30, 54, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(12, 30, 54, 0.08), 0 8px 10px -6px rgba(12, 30, 54, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(12, 30, 54, 0.12), 0 12px 16px -8px rgba(12, 30, 54, 0.08);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-circle: 50%;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Dimensions */
  --header-height: 80px;
  --container-width: 1200px;
}

/* 2. Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Common Icons */
.icon {
  width: 24px;
  height: 24px;
}

.icon-xs {
  width: 16px;
  height: 16px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-md {
  width: 28px;
  height: 28px;
}

.icon-lg {
  width: 36px;
  height: 36px;
}

/* 3. Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-muted);
}

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

.text-orange {
  color: var(--accent-color);
}

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

.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.7;
}

.max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 4. Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

/* Section Header Utility */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 12px;
  background-color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.title-underline.left-aligned {
  margin-left: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-accent {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.sub-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.sub-badge.orange-badge {
  background: rgba(230, 126, 34, 0.1);
  padding: 6px 14px;
  border-radius: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(12, 30, 54, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 30, 54, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.btn-secondary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.3);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* 5. Top Announcement Bar */
.announcement-bar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-item a {
  opacity: 0.85;
}

.announcement-item a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* 6. Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 1000;
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background-color: var(--bg-white);
  height: 70px;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: block;
  height: 48px;
  transition: var(--transition-normal);
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 8px 0;
  position: relative;
}

.nav-link:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
  border-radius: 5px;
}

.nav-link:not(.nav-btn):hover::after,
.nav-link:not(.nav-btn).active::after {
  width: 100%;
}

.nav-link:not(.nav-btn):hover {
  color: var(--accent-color);
}

.nav-btn {
  padding: 10px 20px;
  min-height: auto;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 4px;
  transition: var(--transition-normal);
}

/* 7. Hero Section */
.hero-section {
  position: relative;
  background-color: var(--bg-light);
  padding: 120px 0 100px 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(12, 30, 54, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.highlight-text {
  color: var(--accent-color);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Graphics */
.hero-graphics {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-circle {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  animation: floatCircle 6s ease-in-out infinite;
  z-index: 1;
}

.inner-circle-content {
  text-align: center;
  color: var(--bg-white);
}

.circle-big-text {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.circle-small-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  z-index: 2;
  transition: var(--transition-normal);
}

.hero-floating-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.card-1 {
  top: 15%;
  left: -5%;
  animation: floatCard1 5s ease-in-out infinite;
}

.card-2 {
  bottom: 12%;
  right: -5%;
  animation: floatCard2 5.5s ease-in-out infinite;
}

.card-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  flex-shrink: 0;
}

.card-icon-wrapper.blue-bg {
  background-color: var(--primary-color);
}

.card-icon-wrapper.orange-bg {
  background-color: var(--accent-color);
}

.hero-floating-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-floating-card p {
  font-size: 0.8rem;
  font-weight: 500;
}

/* 8. Stats Strip Section */
.stats-strip-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 40px 0;
  border-bottom: 4px solid var(--accent-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1.5px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* 9. About Section & Cards */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-text-content p {
  margin-bottom: 24px;
}

.highlight-quote {
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin: 30px 0 0 0;
  font-style: italic;
}

.highlight-quote p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
}

.about-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vision-mission-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.vision-mission-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.border-left-blue {
  border-left: 5px solid var(--primary-color);
}

.border-left-orange {
  border-left: 5px solid var(--accent-color);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.border-left-blue .card-icon {
  background-color: rgba(12, 30, 54, 0.08);
  color: var(--primary-color);
}

.border-left-orange .card-icon {
  background-color: rgba(230, 126, 34, 0.08);
  color: var(--accent-color);
}

.vision-mission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.vision-mission-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 10. Core Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 126, 34, 0.4);
}

.value-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  background-color: var(--accent-light);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.value-card:hover .value-icon-wrapper {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* 11. Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(12, 30, 54, 0.15);
}

.service-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  margin-bottom: 28px;
}

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

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

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Special Spanned Service Card */
.service-card.span-col-2 {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.service-card.span-col-2 .service-icon-bg {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* 12. Recruitment Process Section (Timeline) */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  padding: 30px 0;
}

.process-step {
  position: relative;
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.process-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 16px;
}

.process-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-content p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Process connector arrows */
.process-connector {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.arrow-icon {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

/* 13. Industries We Serve Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.industry-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  background-color: var(--bg-light);
}

.industry-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-circle);
  background-color: rgba(12, 30, 54, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: rotate(360deg);
}

.industry-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
}

/* Exclusion Banner */
.exclusion-banner {
  background-color: rgba(230, 126, 34, 0.08);
  border-left: 4px solid var(--accent-color);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.exclusion-banner span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* 14. Why Partner & Commitment */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list li div {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.benefits-list li strong {
  color: var(--bg-white);
  display: block;
  margin-bottom: 2px;
}

.commitment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.commitment-card h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}

.commitment-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.signature {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.signature .tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
  font-style: italic;
  margin-bottom: 6px;
}

.signature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* 15. Contact & Inquiry Hub */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-card {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.contact-card>p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.bg-blue-light {
  background-color: rgba(12, 30, 54, 0.06);
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
}

.detail-link:hover {
  color: var(--accent-color);
}

.address-paragraph {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Clickable address link (opens Google Maps) */
.address-link {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  transition: var(--transition-fast);
}

.address-link:hover {
  color: var(--accent-color);
}

/* Tiny external-link icon inside the address */
.map-ext-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.address-link:hover .map-ext-icon {
  opacity: 1;
}

/* Map frame styling */
.map-container {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: auto;
  /* Pushes to bottom */
}

/* Forms Panel Container */
.forms-card-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 100%;
}

/* Tabs Header */
.tabs-header {
  display: flex;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition-normal);
  background-color: transparent;
}

.tab-btn:hover {
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.01);
}

.tab-btn.active {
  color: var(--primary-color);
  background-color: var(--bg-white);
  border-bottom-color: var(--accent-color);
}

/* Tab panes switcher */
.tab-pane {
  display: none;
  padding: 40px;
}

.tab-pane.active {
  display: block;
  animation: fadeInPane 0.4s ease;
}

.pane-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.pane-desc {
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Interactive Forms layout */
.interactive-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-white);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 30, 54, 0.08);
}

/* Checkbox specific */
.form-group.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-group.checkbox-group input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.form-group.checkbox-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

/* CV Guidance box */
.cv-upload-info-box {
  background-color: var(--accent-light);
  border-left: 3px solid var(--accent-color);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cv-upload-info-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.cv-upload-info-box strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--accent-hover);
  display: block;
  margin-bottom: 2px;
}

.cv-upload-info-box p {
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

.cv-upload-info-box a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cv-upload-info-box a:hover {
  color: var(--accent-color);
}

/* Candidate Email Instructions Styles */
.candidate-email-instructions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instructions-lead {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

.candidate-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.candidate-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.candidate-steps-list .step-badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(12, 30, 54, 0.15);
}

.candidate-steps-list li strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.candidate-steps-list li div {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.candidate-steps-list li a.bold-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.candidate-steps-list li a.bold-link:hover {
  color: var(--accent-color);
}

.candidate-action-box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.candidate-action-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Form Validations UI */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--error-color);
  background-color: #fffafb;
}

.form-group.invalid input:focus,
.form-group.invalid select:focus,
.form-group.invalid textarea:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--error-color);
  font-weight: 500;
  margin-top: 2px;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Form Submission Success States */
.form-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  animation: scaleInSuccess 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-circle);
  background-color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
  margin-bottom: 28px;
}

.form-success-state h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success-state p {
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.reset-form-btn {
  padding: 10px 24px;
}

/* 16. Footer */
.footer-section {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-color) !important;
}

.footer-widget h4 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  font-family: 'Outfit', sans-serif;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-menu a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-details li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-details a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.8rem;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.author-credits {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer right-side wrapper (GST + tagline) */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* GST Number Tag */
.gst-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 5px 12px;
}

.gst-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  white-space: nowrap;
}

.gst-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* 17. Animations Keyframes */
@keyframes floatCircle {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatCard1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatCard2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInSuccess {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERIES (Mobile & Tablet Optimization)
   ========================================================================== */

/* Tablet and Laptop scale downs (Medium screens) */
@mixin respond-to($media) {}

@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 20px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-graphics {
    height: 380px;
  }

  .hero-main-circle {
    width: 280px;
    height: 280px;
  }

  .circle-big-text {
    font-size: 3.8rem;
  }
}

@media (max-width: 992px) {

  /* Layout modifications */
  .section-padding {
    padding: 80px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-graphics {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.span-col-2 {
    grid-column: span 2;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Remove connector arrows since flow changes direction */
  .process-connector {
    display: none;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .commitment-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
  }
}

/* Mobile Screens (Phones) */
@media (max-width: 768px) {

  /* Typography scales */
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  /* Navbar collapses into overlay */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    transition: var(--transition-slow);
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    gap: 30px;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .nav-btn {
    width: 80%;
    text-align: center;
  }

  /* Hamburg animation */
  .mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hero modifications for small screens */
  .hero-section {
    padding-top: 100px;
  }

  .hero-main-circle {
    width: 230px;
    height: 230px;
  }

  .circle-big-text {
    font-size: 3.2rem;
  }

  .circle-small-text {
    font-size: 0.9rem;
  }

  .card-1 {
    left: -10px;
    top: 5%;
    padding: 10px 14px;
  }

  .card-2 {
    right: -10px;
    bottom: 5%;
    padding: 10px 14px;
  }

  .hero-floating-card h4 {
    font-size: 0.85rem;
  }

  .hero-floating-card p {
    font-size: 0.72rem;
  }

  /* Values list */
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Services list */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.span-col-2 {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Process Timeline on Mobile -> Pure Vertical stack */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 36px;
    width: 2px;
    background-color: var(--accent-light);
    z-index: 1;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-left: 20px;
  }

  .process-number {
    margin-bottom: 0;
    font-size: 1.6rem;
    width: 32px;
    height: 32px;
    background-color: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
  }

  .process-step:hover .process-number {
    background-color: var(--accent-color);
    color: var(--bg-white);
  }

  /* Industries lists */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Forms inputs */
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tab-pane {
    padding: 30px 20px;
  }

  .tabs-header {
    flex-direction: column;
  }

  .tab-btn {
    border-bottom: none;
    border-left: 3px solid transparent;
    padding: 14px 20px;
    justify-content: flex-start;
  }

  .tab-btn.active {
    border-left-color: var(--accent-color);
  }

  /* Footer layout */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-widget h4 {
    margin-bottom: 16px;
  }
}

/* Small mobile portrait optimizations */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-graphics {
    display: none;
    /* Hide graphics on very small screens to avoid clutter and save height */
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .exclusion-banner {
    flex-direction: column;
    text-align: center;
  }

  .detail-link {
    font-size: 1rem;
  }

  .bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Form Submission UX — Spinner, Loading & Error States
   ========================================================================== */

/* Spinner rotation keyframe used by the loading SVG inside the submit button */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Float animations for hero graphics */
@keyframes floatCircle {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatCard1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatCard2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInSuccess {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Submit button: align spinner icon + text side by side */
.btn svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Inline error banner shown when Web3Forms API returns a failure */
.form-error-banner {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background-color: #fef2f2;
  border-left: 4px solid var(--error-color);
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}