/* Variables - No changes */
:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --secondary: #7209b7;
  --accent: #f72585;
  --success: #4cc9f0;
  --warning: #f9c74f;
  --danger: #f94144;
  --dark: #2b2d42;
  --light: #f8f9fa;
  --gray: #8d99ae;
  --gray-light: #edf2f4;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles - No changes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Loading Screen - Responsive */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.career-path {
  width: 100%;
  max-width: 300px;
  height: 150px;
  margin: 0 auto 2rem;
  position: relative;
}

.path-svg {
  width: 100%;
  height: 100%;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s ease-in-out infinite;
  stroke: var(--primary);
  stroke-width: 4;
  fill: none;
}

.person {
  position: absolute;
  bottom: 10px;
  left: 0;
  transform: translateX(-50%);
  animation: movePerson 3s ease-in-out infinite;
}

.person-icon {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem auto;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: fillProgress 3s ease-in-out infinite;
}

.loader-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.loader-subtext {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: bounce 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes movePerson {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Toast Notification - Responsive */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  z-index: 1000;
  transform: translateX(110%);
  transition: transform 0.3s ease;
  max-width: calc(100vw - 40px);
}

.toast.show {
  transform: translateX(0);
}

.toast button {
  background: none;
  border: none;
  font-size: 1.2rem;
  margin-left: 1rem;
  cursor: pointer;
}

/* Header & Navigation - Responsive */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-logo img {
  height: 40px;
  margin-right: 0.5rem;
  width: 130px;
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: 2rem;
}

.nav-item {
  margin: 0 0.75rem;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Buttons - Responsive */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section - Responsive */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.1;
  font-family: "Anton", sans-serif;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  animation: fadeIn 1s ease-out;
  animation-fill-mode: both;
}

.stat:nth-child(1) { animation-delay: 0.3s; }
.stat:nth-child(2) { animation-delay: 0.6s; }
.stat:nth-child(3) { animation-delay: 0.9s; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  width: 180px;
  text-align: center;
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.floating-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.floating-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.card-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 30%;
  right: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 0;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.main-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Roles Section - Responsive */
.roles-section {
  padding: 6rem 0;
  background: var(--light);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.role-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.role-card:hover::before {
  transform: scaleX(1);
}

.role-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.role-card.highlighted {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.role-card.highlighted::after {
  content: "Most Popular";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.role-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.role-card:hover .role-icon {
  background: var(--primary);
  transform: rotateY(180deg);
}

.role-card:hover .role-icon i {
  color: white;
  transform: rotateY(-180deg);
}

.role-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.role-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.role-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.role-features {
  margin-bottom: 2rem;
  text-align: left;
}

.role-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  padding-left: 1.5rem;
  transition: var(--transition);
}

.role-features li:hover {
  background: var(--gray-light);
  padding-left: 2rem;
}

.role-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Assessment Preview - Responsive */
.assessment-preview {
  padding: 6rem 0;
  background: white;
}

.assessment-preview .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.preview-content {
  flex: 1;
}

.preview-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.preview-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray);
  line-height: 1.8;
}

.assessment-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.feature h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--gray);
}

.users-color-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
}

.item {
  aspect-ratio: 1/1;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
      inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s linear 1 forwards;
  animation-delay: calc(0.2s * var(--i));
  opacity: 0;
}

.item:nth-child(1) {
  background-color: #67d7e1;
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.item:nth-child(3) {
  background-color: #6cc164;
  border-radius: 50%;
}

.item:nth-child(4) {
  border-radius: 0 0 0 50%;
}

.item:nth-child(5) {
  border-radius: 0 50% 50% 0;
}

.item:nth-child(6) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 50%;
}

.item:nth-child(7) {
  border-radius: 50% 50% 0 50%;
}

.item:nth-child(8) {
  background-color: #fe7519;
  border-radius: 50% 0 0 50%;
}

.item:nth-child(9) {
  background-color: #f5bec3;
  border-radius: 0 50% 50% 0;
}

.item:nth-child(10) {
  border-radius: 50%;
}

.item:nth-child(11) {
  background-color: #fcd659;
  border-radius: 50% 0 50% 50%;
}

.item:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Features Section - Responsive */
.features-section {
  padding: 6rem 0;
  background: var(--light);
}

.features-tabs {
  margin-top: 3rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tab-headers {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.tab-header {
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.tab-header.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  background: rgba(67, 97, 238, 0.05);
}

.tab-header:hover:not(.active) {
  color: var(--dark);
  background: var(--gray-light);
}

.tab-contents {
  padding: 2rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.tab-visual {
  flex: 1;
  text-align: center;
}

.tab-visual img {
  height: 450px;
}

.tab-visual:hover img {
  transform: scale(1.05);
}

.tab-info {
  flex: 1;
}

.tab-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.tab-info p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.1rem;
}

.tab-info ul {
  margin-bottom: 2rem;
}

.tab-info li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  transition: var(--transition);
}

.tab-info li:hover {
  background: var(--gray-light);
  padding-left: 2.5rem;
}

.tab-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

/* Testimonials Section - Responsive */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-slider {
  margin-top: 3rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.quote-icon {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 6rem;
  color: var(--gray-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid var(--primary);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.testimonial-prev, .testimonial-next {
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Contact Section - Responsive */
.contact-section {
  padding: 6rem 0;
  background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #4361ee;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: #2b2d42;
}

.contact-details p {
  color: #8d99ae;
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2b2d42;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #edf2f4;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #f94144;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
  min-height: 1rem;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #f94144;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

#submitBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #4361ee;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

#submitBtn:hover {
  background: #3a56d4;
}

#submitBtn:disabled {
  background: #8d99ae;
  cursor: not-allowed;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* CTA Section - Responsive */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Footer - Responsive */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 100px;
  margin-right: 0.5rem;
}

.footer-brand p {
  margin: 1rem 0;
  color: var(--gray);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--gray);
  transition: var(--transition);
  display: inline-block;
}

.footer-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
}

/* Custom Cursor Styles */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  transition: all 0.2s ease-out;
}

.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--accent);
}

.cursor-outline.cursor-hover {
  transform: translate(-50%, -50%) scale(1.2);
  border-color: var(--accent);
  border-width: 2px;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure the cursor is hidden on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-outline {
    display: none;
  }
}

/* About Section Styles - Responsive */
.ps-about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ps-about-header {
  text-align: center;
  margin-bottom: 80px;
}

.ps-section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
}

.ps-section-titles {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.ps-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.ps-about-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ps-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.1;
  animation: ps-float 6s ease-in-out infinite;
}

.ps-shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.ps-shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 15%;
  animation-delay: 2s;
}

.ps-shape-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 4s;
}

.ps-shape-4 {
  width: 70px;
  height: 70px;
  top: 70%;
  right: 15%;
  animation-delay: 1s;
}

.ps-main-image {
  position: relative;
  z-index: 2;
  animation: ps-scaleIn 1s ease-out;
}

.ps-main-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ps-stats-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 3;
}

.ps-stat-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 120px;
  opacity: 0;
  transform: translateY(30px);
}

.ps-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.ps-stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.ps-about-info {
  position: relative;
}

.ps-info-tabs {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ps-tab-headers {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.ps-tab-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.ps-tab-header i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.ps-tab-header.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.ps-tab-header:hover:not(.active) {
  color: var(--secondary);
}

.ps-tab-content {
  display: none;
  animation: ps-fadeIn 0.5s ease;
}

.ps-tab-content.active {
  display: block;
}

.ps-tab-content h3 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.ps-tab-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.ps-tab-content ul {
  list-style: none;
  padding: 0;
}

.ps-tab-content li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.ps-tab-content li i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 4px;
}

/* Animations */
@keyframes ps-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes ps-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ps-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ps-fade-in-up {
  animation: ps-fadeInUp 0.8s ease forwards;
}

@keyframes ps-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.hidden {
  display: none;
}

.video-modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}

.video-modal-content {
  position: relative;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  max-width: 90%;
  z-index: 10000;
  animation: zoomIn 0.3s ease;
}

.video-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.video-container {
  width: 560px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===========================================
   RESPONSIVE MEDIA QUERIES
   =========================================== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .ps-section-title {
    font-size: 3rem;
  }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .roles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .assessment-preview .container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .preview-content, .preview-visual {
    text-align: center;
  }
  
  .assessment-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .tab-content.active {
    flex-direction: column;
    text-align: center;
  }
  
  .tab-info {
    order: 2;
  }
  
  .tab-visual {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    padding-right: 0;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .ps-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ps-about-visual {
    height: 400px;
  }
  
  .ps-stats-overlay {
    position: relative;
    bottom: 0;
    margin-top: 30px;
  }
  
  .ps-tab-headers {
    flex-direction: column;
    border-bottom: none;
  }
  
  .ps-tab-header {
    border-bottom: 1px solid #eee;
    border-left: 3px solid transparent;
  }
  
  .ps-tab-header.active {
    border-bottom-color: #eee;
    border-left-color: var(--primary);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
  }
  
  .users-color-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 1075px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .nav-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-toggle {
    display: block;
    z-index: 101;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .floating-card {
    position: relative;
    margin: 1rem auto;
    width: 100%;
    max-width: 250px;
  }
  
  .hero-visual {
    height: auto;
    margin-top: 2rem;
  }
  
  .card-1, .card-2, .card-3 {
    position: relative;
    margin: 1rem auto;
  }
  
  .tab-headers {
    flex-direction: column;
  }
  
  .tab-header {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
    border-left: 3px solid transparent;
  }
  
  .tab-header.active {
    border-bottom: 1px solid var(--gray-light);
    border-left: 3px solid var(--primary);
  }
  
  .testimonial {
    padding: 2rem 1rem;
  }
  
  .testimonial-content {
    padding: 0;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  
  .testimonial-author img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .ps-stats-overlay {
    flex-direction: column;
    gap: 20px;
  }
  
  .ps-stat-item {
    width: 100%;
  }
  
  .ps-team-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .users-color-container {
    gap: 15px;
  }
}

/* Mobile Landscape (480px to 575px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .testimonial-nav {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 2rem;
    justify-content: center;
    gap: 1rem;
  }
  
  .ps-section-title {
    font-size: 2.5rem;
  }
  
  .ps-section-titles {
    font-size: 2rem;
  }
  
  .ps-about-visual {
    height: 300px;
  }
  
  .ps-stat-number {
    font-size: 2rem;
  }
  
  .users-color-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
  }
}

/* Small Mobile (320px to 479px) */
@media (max-width: 479px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .role-card {
    padding: 1.5rem 1rem;
  }
  
  .role-icon {
    width: 60px;
    height: 60px;
  }
  
  .role-icon i {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .ps-section-title {
    font-size: 2rem;
  }
  
  .ps-section-titles {
    font-size: 1.8rem;
  }
  
  .ps-info-tabs {
    padding: 20px;
  }
  
  .ps-tab-header {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .ps-tab-header i {
    font-size: 1rem;
    margin-right: 8px;
  }
  
  .video-modal-content {
    padding: 0.5rem;
  }
  
  .video-container {
    width: 100%;
  }
  
  .users-color-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Extra Small Mobile (under 320px) */
@media (max-width: 319px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .ps-section-title {
    font-size: 1.8rem;
  }
  
  .ps-section-titles {
    font-size: 1.6rem;
  }
  
  .users-color-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, 1fr);
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .floating-card {
    width: 140px;
    padding: 1rem;
  }
  
  .floating-card i {
    font-size: 1.5rem;
  }
  
  .floating-card h4 {
    font-size: 1rem;
  }
  
  .floating-card p {
    font-size: 0.8rem;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .nav-logo img,
  .footer-logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .nav-toggle,
  .hero-actions,
  .testimonial-nav,
  .social-links,
  .video-modal {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 18pt;
  }
}