/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2e4154; /* Indigo dye - main brand color */
  --secondary-color: #314558; /* Penn Blue - for secondary elements */
  --accent-color: #e67e22; /* Cerulean - for accents and highlights */
  --light-color: #f8f9fa;
  --dark-color: #0a1128; /* Oxford Blue - for dark sections */
  --gray-color: #6c757d;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --card-bg: #ffffff;
  --body-bg: #f5f7fa;
  --section-bg-alt: #f0f4f8;
  --font-main: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 10px;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--body-bg);
  background-image: linear-gradient(rgba(3, 64, 120, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 64, 120, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

/* Make sure footer is not affected by section styles */
footer {
  background-color: #1a2530; /* Oxford Blue */
  color: white;
  padding: 22px 0;
  position: relative;
  width: 100%;
  z-index: 10;
  opacity: 1 !important;
  transform: none !important;
}

footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo-img {
  display: flex;
  align-items: center;
}

.footer-logo-svg {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  margin-right: 12px;
}

.footer-content h3 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-email,
.footer-phone {
  flex-grow: 0;
}

.footer-email a,
.footer-phone a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0 10px;
}

.footer-email a:hover,
.footer-phone a:hover {
  color: var(--accent-color);
}

.footer-email a i,
.footer-phone a i {
  margin-right: 8px;
  color: var(--accent-color);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding-right: 5px;
}

.footer-links {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    padding: 20px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    justify-content: center;
    margin-bottom: 5px;
  }

  .footer-contact {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    gap: 5px;
  }

  .footer-email,
  .footer-phone {
    width: 100%;
    text-align: center;
  }

  .footer-email a,
  .footer-phone a {
    justify-content: center;
    padding: 5px 0;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .footer-links {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

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

@media (max-width: 576px) {
  footer {
    padding: 15px 0;
  }

  .footer-content h3 {
    font-size: 1.3rem;
  }

  .footer-logo-svg {
    width: 35px;
    height: 35px;
  }

  .footer-email a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin: 0 10px;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero .container {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 140px;
    padding: 10px 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .hero-image-badge {
    bottom: 15px;
    right: -10px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .bgv-content {
    flex-direction: column;
  }

  .timeline-step {
    width: 100%;
  }

  .candidates-image::after {
    font-size: 1rem;
  }

  .process-svg-container {
    max-width: 350px;
  }

  .process-steps {
    margin-bottom: 30px;
  }

  .process-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .process-badge {
    padding: 8px 15px;
  }

  .verification-process {
    padding: 80px 0 60px;
  }

  .process-svg-container {
    max-width: 320px;
  }

  .process-steps {
    margin-bottom: 0;
  }

  .process-badges {
    flex-wrap: wrap;
    gap: 10px;
  }

  .process-badge {
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-image::before {
    width: 70%;
    height: 70%;
  }

  .process-steps {
    gap: 15px;
    margin-bottom: 20px;
  }

  .step {
    padding: 12px 15px;
    width: 100%;
  }

  .step-icon {
    flex: 0 0 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 15px;
  }

  .testimonial {
    width: 100%;
  }

  .contact-form {
    padding: 25px;
  }

  .process-svg-container {
    max-width: 280px;
  }

  .process-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .process-badge i {
    font-size: 1rem;
  }

  .verification-process {
    padding: 60px 0 50px;
  }

  .process-steps {
    gap: 12px;
  }

  .step {
    padding: 10px 12px;
  }

  .step-icon {
    flex: 0 0 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-right: 12px;
  }

  .process-svg-container {
    max-width: 260px;
  }

  .process-summary {
    padding: 20px;
  }
}

/* Add a new media query for very small screens */
@media (max-width: 380px) {
  .hero {
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat-item {
    min-width: 120px;
    padding: 8px 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-image-badge {
    bottom: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
  }
}

section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.04;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  color: var(--secondary-color);
}

h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

p {
  margin-bottom: 15px;
}

.section-description {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  transition: var(--transition-normal);
}

header.scrolled .logo-svg {
  width: 50px;
  height: 50px;
}

.logo h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0;
  transition: var(--transition-normal);
}

header.scrolled .logo h1 {
  font-size: 1.8rem;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 35px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

/* Nav Button Style */
.nav-btn {
  background-color: var(--primary-color);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
}

.nav-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.nav-btn:after {
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn.primary {
  background-color: var(--primary-color);
  color: white;
}

.btn.primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn.secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Process Section Accent Elements */
.process-svg-container {
  position: relative;
  overflow: hidden;
}

.process-decoration {
  position: absolute;
  z-index: 1;
}

/* Removed all pseudo-elements that created accent elements */

.process-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
  transition: all 0.5s ease;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.process-svg:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

/* Process badges without accent elements */

/* Animation keyframes */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.8;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 0.4;
  }
}

/* Section Animations */
.hero {
  animation: fadeIn 1s ease forwards;
}

.candidates,
.verification-process,
.bgv,
.contact {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-play-state: paused;
}

.animate-in {
  animation-play-state: running;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e6f2ff 100%);
  padding: 105px 0 120px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%236f9ceb' fill-opacity='0.05'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v18H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 76px 76px;
  opacity: 0.03;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320'%3E%3Cpath fill='%23f5f7fa' fill-opacity='1' d='M0,128L80,149.3C160,171,320,213,480,213.3C640,213,800,171,960,154.7C1120,139,1280,149,1360,154.7L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1 1 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: #2e415424; /* Cerulean with opacity */
  color: #2e4154; /* Indigo dye */
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(18, 130, 162, 0.2); /* Subtle border using Cerulean */
  box-shadow: 0 2px 4px rgba(3, 64, 120, 0.05); /* Subtle shadow using primary color */
}

.hero-badge:hover {
  background-color: #2e415442;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
  line-height: 1.2;
  position: relative;
}

.hero h1 .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero h1 .highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: var(--accent-color);
  bottom: 8px;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.hero h1 .highlight:hover::after,
.highlight-animate::after {
  opacity: 0.4;
  transform: scaleX(1);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--gray-color);
  max-width: 600px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-feature span {
  font-size: 1rem;
  color: var(--secondary-color);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  padding: 15px 25px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  min-width: 120px;
  border-bottom: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  border-bottom-color: var(--accent-color);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-number i {
  display: inline-block;
  margin-right: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-color);
  font-weight: 500;
}

.hero-testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
  max-width: 500px;
  position: relative;
  margin-top: 30px;
  transform: perspective(1000px) rotateX(2deg);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-testimonial::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: rgba(111, 156, 235, 0.05);
  border-radius: var(--border-radius);
  z-index: -1;
}

.hero-testimonial-text {
  position: relative;
  padding-left: 20px;
}

.hero-testimonial-text i {
  color: var(--accent-color);
  font-size: 1.5rem;
  position: absolute;
  top: -10px;
  left: -5px;
}

.hero-testimonial-text p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.hero-testimonial-author {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

.hero-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 10px solid white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  top: -20px;
  right: -20px;
  border-radius: 10px;
  z-index: 1;
}

.hero-image-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transform: rotate(-2deg);
}

/* Candidates Section */
.candidates {
  background-color: var(--light-color);
  position: relative;
  padding-bottom: 150px;
}

.candidates::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e56a0' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  width: 320px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: var(--hover-shadow);
}

.card:hover::before {
  height: 10px;
  background: var(--accent-color);
}

.card-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 2.5rem;
  color: white;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--accent-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.price::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features {
  margin-bottom: 30px;
  text-align: left;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 12px;
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Verification Process */
.verification-process {
  background-color: white;
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.verification-process::before {
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zm42 8h12v6H70v-6zm14-8h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%236f9ceb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.verification-process::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(111, 156, 235, 0.05) 50%,
    rgba(111, 156, 235, 0.1) 100%
  );
  z-index: 0;
}

.verification-process h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.process-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-intro {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.7;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
  font-weight: 500;
}

.process-summary {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-summary h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.process-summary p {
  color: var(--gray-color);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.process-cta {
  margin-top: 20px;
}

.process-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-svg-container {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.process-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
  transition: all 0.5s ease;
  background-color: transparent;
}

.process-svg:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.process-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 20px;
  padding: 15px 10px;
}

.process-badge {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(111, 156, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.process-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-color);
}

.process-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 8px;
}

.process-badge span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 12px 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.step:nth-child(2) {
  border-left-color: #8aadf0;
}

.step:nth-child(3) {
  border-left-color: #a5bff4;
}

.step:nth-child(4) {
  border-left-color: #c0d1f8;
}

.step:nth-child(5) {
  border-left-color: #dbe4fc;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--hover-shadow);
}

.step-icon {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.step-text {
  flex: 1;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--secondary-color);
}

.step p {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Media queries for the verification process section */
@media (max-width: 991px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-text,
  .process-image-wrapper {
    width: 100%;
  }

  .process-svg-container {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .process-badges {
    justify-content: center;
  }
}

.candidates-image {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--hover-shadow);
}

.candidates-image img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.candidates-image:hover img {
  transform: scale(1.02);
}

.candidates-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(74, 117, 196, 0.3) 100%
  );
  z-index: 1;
}

.candidates-image::after {
  content: "Professional Teams Ready for Hire";
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* BGV Section */
.bgv {
  background: linear-gradient(145deg, #f8faff 0%, #e6f2ff 100%);
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.bgv::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e56a0' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 30px 30px;
}

.bgv::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(246, 185, 59, 0.05) 0%,
    rgba(246, 185, 59, 0) 70%
  );
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.bgv-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.bgv-text {
  flex: 1 1 500px;
}

.bgv-text h2 {
  text-align: left;
  font-size: 2.4rem;
}

.bgv-text h2:after {
  left: 0;
  transform: none;
}

.bgv-text p {
  font-size: 1.05rem;
  color: var(--gray-color);
  line-height: 1.7;
}

.bgv-text ul {
  margin: 30px 0;
}

.bgv-text ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.bgv-text ul li:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.bgv-text ul li i {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bgv-text ul li strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.bgv-image {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.bgv-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(111, 156, 235, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
  border-radius: 50%;
}

.bgv-image::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(111, 156, 235, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: rotate 60s linear infinite;
}

.bgv-image img {
  display: block;
  transition: all 0.5s ease;
  width: 85%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

.bgv-image:hover img {
  transform: translateY(-5px);
}

/* Add decorative elements for the transparent background */
.bgv-image .decoration {
  position: absolute;
  z-index: 1;
}

.bgv-image .decoration-top {
  top: 0;
  right: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(111, 156, 235, 0.1) 0%,
    rgba(111, 156, 235, 0) 70%
  );
}

.bgv-image .decoration-bottom {
  bottom: 5%;
  left: 5%;
  width: 50px;
  height: 50px;
  background-color: rgba(246, 185, 59, 0.08);
  border-radius: 12px;
  transform: rotate(45deg);
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Contact Section */
.contact {
  background-color: var(--section-bg-alt);
  position: relative;
}

.contact::before {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e56a0' fill-opacity='0.06'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray-color);
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.contact-method i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 15px;
}

.contact-method a {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  background: rgba(30, 86, 160, 0.05);
  border-radius: var(--border-radius);
  z-index: -1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.1);
  background-color: white;
}

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

.form-group button.btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 25px;
  }

  .contact-form::before {
    top: 10px;
    left: 10px;
  }

  .contact > .container > p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .contact-info {
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-method {
    padding: 12px 20px;
    width: 100%;
    max-width: 300px;
  }

  .contact-method i {
    font-size: 1.1rem;
  }

  .contact-method a {
    font-size: 0.95rem;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 25px 20px;
  }

  .contact-form::before {
    display: none;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .form-group button.btn {
    padding: 12px;
    font-size: 1rem;
  }

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

/* Success Message Style */
.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-message h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.success-message p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    padding: 180px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .process-steps::after {
    display: none;
  }

  .step {
    margin-bottom: 15px;
  }

  .bgv-text h2 {
    text-align: center;
  }

  .bgv-text h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .bgv-image::after {
    right: 20px;
    top: 20px;
  }

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

  .process-text,
  .process-image-wrapper {
    width: 100%;
  }

  .process-svg-container {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .process-badges {
    justify-content: center;
  }
}

/* Thank You Page Footer Styles */
.thankyou-page footer {
  display: none;
}

@media (max-width: 991px) {
  nav ul li {
    margin-left: 20px;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  .logo-svg {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  header.scrolled {
    padding: 10px 0;
  }

  .logo h1 {
    font-size: 1.7rem;
  }

  .logo-svg {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  .mobile-active {
    display: block !important;
  }
}

@media (max-width: 576px) {
  header {
    padding: 12px 0;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }

  .nav-btn {
    padding: 8px 15px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .logo h1 {
    font-size: 1.3rem;
  }

  .logo-svg {
    width: 35px;
    height: 35px;
    margin-right: 6px;
  }
}

/* Hero Section - Image Fixes */
.hero-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 10px solid white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  top: -20px;
  right: -20px;
  border-radius: 10px;
  z-index: 1;
}

/* BGV Image Fixes */
.bgv-image {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.bgv-image img {
  display: block;
  transition: all 0.5s ease;
  width: 85%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

/* Mobile Menu Improvement */
@media (max-width: 768px) {
  /* Hero image fixes */
  .hero-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-width: 6px;
  }

  .hero-image::before {
    width: 75%;
    height: 75%;
    top: -15px;
    right: -15px;
  }

  /* Mobile menu fixes */
  header .container {
    flex-direction: row;
    position: relative;
    padding: 0 15px;
  }

  .logo {
    margin-bottom: 0;
    z-index: 1001;
  }

  /* Nav positioning */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 1000;
  }

  nav.mobile-active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    margin: 0;
    padding: 15px 0;
  }

  nav ul li {
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(111, 156, 235, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .mobile-toggle:hover {
    background: rgba(111, 156, 235, 0.2);
  }

  /* BGV Section image fixes */
  .bgv-image {
    min-height: 300px;
    margin: 0 auto;
    max-width: 450px;
  }

  .bgv-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .bgv-image::after {
    width: 250px;
    height: 250px;
  }

  /* Process section image fixes */
  .process-svg-container {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  /* Hero image further adjustments */
  .hero-image {
    max-width: 320px;
  }

  .hero-image img {
    border-width: 5px;
  }

  .hero-image::before {
    width: 70%;
    height: 70%;
    top: -10px;
    right: -10px;
  }

  .hero-image-badge {
    bottom: 10px;
    right: -5px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* BGV image adjustments */
  .bgv-image {
    min-height: 250px;
  }

  .bgv-image img {
    max-width: 280px;
  }

  /* Smaller logo and header for very small screens */
  .logo h1 {
    font-size: 1.4rem;
  }

  .logo-svg {
    width: 35px;
    height: 35px;
  }

  /* Process SVG */
  .process-svg-container {
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  /* Even smaller adjustments for very small screens */
  .hero-image {
    max-width: 280px;
  }

  .hero-image img {
    border-width: 4px;
  }

  .bgv-image img {
    max-width: 240px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .logo-svg {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
}

/* Additional mobile menu animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  nav.mobile-active {
    animation: slideDown 0.3s ease forwards;
  }
}

/* Additional image and accent fixes for mobile */
.hero {
  overflow: hidden;
}

/* Fix for hero image badge */
.hero-image-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transform: rotate(-2deg);
}

/* Better handling of background decoration elements */
.hero::before,
.candidates::before,
.verification-process::before,
.bgv::before,
.contact::before {
  background-attachment: scroll;
}

/* Stat display improvements */
.stat-number i {
  display: inline-block;
  margin-right: 8px;
}

/* Section spacing on mobile */
@media (max-width: 768px) {
  /* Hero image badge adjustment */
  .hero-image-badge {
    bottom: 15px;
    right: -10px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Footer logo positioning */
  .footer-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Card spacing and appearance */
  .card {
    max-width: 100%;
    width: 100%;
    padding: 30px 20px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  /* Stats on mobile */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 calc(50% - 15px);
    min-width: unset;
    width: calc(50% - 15px);
  }

  .stat-number {
    font-size: 1.6rem;
    justify-content: center;
  }

  /* BGV section list items */
  .bgv-text ul li {
    flex-direction: column;
    padding: 20px 15px;
    align-items: center;
    text-align: center;
  }

  .bgv-text ul li i {
    margin: 0 0 15px 0;
  }

  /* Improve accent elements on mobile */
  .bgv-image::after {
    content: "";
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }

  /* Process badges positioning */
  .process-badges {
    padding: 10px 0;
  }

  /* Fix hero section background elements */
  .hero::after {
    display: none;
  }
}

@media (max-width: 576px) {
  /* Hero stats on very small screens */
  .stat-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 200px;
    margin: 5px auto;
  }

  /* Better spacing for hero section */
  .hero {
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-features {
    margin-bottom: 20px;
  }

  /* Card appearance on very small screens */
  .card {
    padding: 25px 15px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
  }

  /* Process steps on small screens */
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step-icon {
    margin: 0 0 15px 0;
  }

  /* BGV image adjustments */
  .bgv-image::before,
  .bgv-image::after {
    opacity: 0.4;
  }
}

/* Fix for very small screens */
@media (max-width: 380px) {
  /* Further adjustments for the hero image */
  .hero-image::before {
    display: none;
  }

  .hero-image img {
    border-width: 3px;
  }

  .hero-image-badge {
    bottom: 10px;
    right: 0;
    padding: 5px 12px;
    font-size: 0.75rem;
  }

  /* Fix BGV image display */
  .bgv-image {
    min-height: 200px;
  }

  .bgv-image img {
    width: 90%;
    max-width: 220px;
  }

  /* Fix card text size */
  .card h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .features li {
    font-size: 0.9rem;
  }
}

/* Fix backgrounds and decorative elements */
@media (max-width: 768px) {
  .process-svg-container::before,
  .process-svg-container::after,
  .hero-testimonial::before {
    display: none;
  }

  .contact-form::before {
    top: 8px;
    left: 8px;
    opacity: 0.5;
  }

  .card::before {
    height: 4px;
  }
}

/* Mobile-specific styles for hero image */
@media (max-width: 768px) {
  .hero-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    transform: scale(1);
    transition: all 0.3s ease;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-width: 6px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .hero-image::before {
    width: 75%;
    height: 75%;
    top: -12px;
    right: -12px;
    border-radius: 15px;
    opacity: 0.9;
  }

  .hero-image-badge {
    bottom: 12px;
    right: -5px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 280px;
    margin-top: 30px;
  }

  .hero-image img {
    border-width: 5px;
    border-radius: 12px;
  }

  .hero-image::before {
    width: 70%;
    height: 70%;
    top: -10px;
    right: -10px;
    border-radius: 12px;
  }

  .hero-image-badge {
    bottom: 10px;
    right: -3px;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .hero-image {
    max-width: 240px;
  }

  .hero-image img {
    border-width: 4px;
    border-radius: 10px;
  }

  .hero-image::before {
    width: 65%;
    height: 65%;
    top: -8px;
    right: -8px;
    border-radius: 10px;
  }

  .hero-image-badge {
    bottom: 8px;
    right: 0;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 15px;
  }
}

/* Add fixed sizing for hero container on mobile to prevent reflow */
@media (max-width: 768px) {
  .hero .container {
    row-gap: 40px;
  }

  .hero-content {
    margin-bottom: 20px;
  }
}

/* Desktop hero image styles remain unchanged */
.hero-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 10px solid white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  top: -20px;
  right: -20px;
  border-radius: 10px;
  z-index: 1;
}

/* Mobile hero image styles (with the special class) */
@media (max-width: 768px) {
  .hero-image-mobile {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
  }

  .hero-image-mobile img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 8px solid white;
    object-fit: contain;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  }

  .hero-image-mobile::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%
    );
    top: -12px;
    right: -12px;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.9;
  }

  /* Badge styles for mobile */
  .hero-image-mobile .hero-image-badge {
    position: absolute;
    bottom: 15px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transform: rotate(-2deg);
  }
}

@media (max-width: 576px) {
  .hero-image-mobile {
    max-width: 280px;
  }

  .hero-image-mobile img {
    border-width: 6px;
    border-radius: 14px;
  }

  .hero-image-mobile::before {
    width: 70%;
    height: 70%;
    top: -10px;
    right: -10px;
    border-radius: 14px;
  }

  .hero-image-mobile .hero-image-badge {
    bottom: 12px;
    right: -5px;
    padding: 7px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .hero-image-mobile {
    max-width: 250px;
  }

  .hero-image-mobile img {
    border-width: 5px;
    border-radius: 12px;
  }

  .hero-image-mobile::before {
    width: 65%;
    height: 65%;
    top: -8px;
    right: -8px;
    border-radius: 12px;
  }

  .hero-image-mobile .hero-image-badge {
    bottom: 10px;
    right: -2px;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 18px;
  }
}

/* Candidate Verification Section */
.candidate-verification {
  background-color: white;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.candidate-verification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e56a0' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  z-index: 0;
  opacity: 0.5;
}

.candidate-verification-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.candidate-verification-image {
  flex: 1 1 400px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.candidate-verification-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.candidate-verification-image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  border: 10px solid white;
  position: relative;
  z-index: 1;
}

.candidate-verification-image::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  top: -20px;
  left: -20px;
  border-radius: var(--border-radius);
  z-index: 0;
}

.verification-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(3deg);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: rotate(3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
  100% {
    transform: rotate(3deg) scale(1);
  }
}

.verification-badge i {
  font-size: 1.2rem;
}

.candidate-verification-text {
  flex: 1 1 500px;
}

.candidate-verification-text h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.candidate-verification-text h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item:nth-child(1) {
  transition-delay: 0.1s;
}

.benefit-item:nth-child(2) {
  transition-delay: 0.2s;
  border-left-color: #4f8aff;
}

.benefit-item:nth-child(3) {
  transition-delay: 0.3s;
  border-left-color: #6fa3ff;
}

.benefit-item:nth-child(4) {
  transition-delay: 0.4s;
  border-left-color: #90bcff;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(111, 156, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.benefit-text p {
  color: var(--gray-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.verification-steps {
  margin-top: 40px;
  margin-bottom: 30px;
}

.steps-list {
  counter-reset: step-counter;
  padding-left: 0;
  list-style-type: none;
}

.steps-list li {
  position: relative;
  padding: 15px 0 15px 60px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  counter-increment: step-counter;
  border-bottom: 1px dashed var(--border-color);
}

.steps-list li:last-child {
  border-bottom: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.candidate-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-info {
  margin-top: 15px;
  color: var(--gray-color);
  font-size: 0.95rem;
  font-style: italic;
  position: relative;
  display: inline-block;
}

.pricing-info::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(246, 185, 59, 0.3);
  border-radius: 2px;
}

/* Mobile Responsive Styles for Candidate Verification */
@media (max-width: 768px) {
  .candidate-verification-content {
    flex-direction: column;
    gap: 40px;
  }

  .candidate-verification-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .verification-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .verification-badge i {
    font-size: 1.1rem;
  }

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

  .candidate-verification-text h3 {
    font-size: 1.6rem;
    text-align: center;
    display: block;
  }

  .candidate-verification-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .candidate-cta {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .pricing-info {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  .pricing-info strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .candidate-verification-image {
    max-width: 320px;
  }

  .candidate-verification-image img {
    border-width: 6px;
  }

  .candidate-verification-image::before {
    width: 70%;
    height: 70%;
    top: -15px;
    left: -15px;
  }

  .verification-badge {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .benefit-item {
    padding: 15px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .steps-list li {
    padding-left: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .candidate-verification-image {
    max-width: 280px;
  }

  .candidate-verification-image img {
    border-width: 5px;
  }

  .verification-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .benefit-icon {
    margin-bottom: 10px;
  }
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(145deg, #f8faff 0%, #e6f2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e56a0' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 30px 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card.delay-100 {
  animation-delay: 0.2s;
}

.testimonial-card.delay-200 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-content {
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
}

.testimonial-content i {
  color: var(--accent-color);
  font-size: 1.5rem;
  position: absolute;
  top: -10px;
  left: -5px;
  opacity: 0.3;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-color);
  line-height: 1.6;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  flex-wrap: nowrap;
}

.author-info {
  flex: 1;
  min-width: 0;
  margin-right: 15px;
}

.author-info h4 {
  color: var(--secondary-color);
  margin: 0 0 5px;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-info p {
  color: var(--gray-color);
  margin: 0;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating {
  color: var(--accent-color);
  flex-shrink: 0;
  white-space: nowrap;
}

.rating i {
  margin-left: 2px;
}

@media (max-width: 768px) {
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .author-info {
    margin-right: 0;
  }

  .rating {
    margin-top: 5px;
  }
}

.process-intro .blog-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.process-intro .blog-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
  .process-intro .blog-link {
    display: block;
    margin-top: 15px;
  }
}
