/* Updated Color Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #1e293b;
  --secondary-light: #334155;
  --accent-color: #3b82f6;
  --accent-light: #60a5fa;
  --success-color: #059669;
  --error-color: #dc2626;
  --warning-color: #d97706;
  --info-color: #2563eb;
  
  /* Professional Icon Colors */
  --icon-primary: #2563eb;
  --icon-secondary: #3b82f6;
  --icon-accent: #1e429f;
  --icon-light: #60a5fa;
  
  /* Gray Scale */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Theme Colors */
  --background-light: #ffffff;
  --background-dark: #0f172a;
  --text-light: #f8fafc;
  --text-dark: #0f172a;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Base Styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

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

h2 {
  font-size: 1.875rem;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: white;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-input:hover {
  border-color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input.error {
  border-color: var(--error-color);
  background-color: #fff5f5;
}

.form-input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-message::before {
  content: '⚠️';
}

/* Select Input Styles */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Checkbox Styles */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.checkbox-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
}

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

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

/* Card Styles */
.card {
  background-color: var(--background-light);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: all 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.shadow-hover {
  transition: box-shadow 0.2s ease-in-out;
}

.shadow-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

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

.slide-up {
  animation: slideUp 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-title, 
.hero-subtitle,
.hero-section p,
.hero-section h1,
.hero-section h2,
.hero-section h3 {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Hero Section Styles */
.hero-text-content {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.hero-slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-slide-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.75rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  font-weight: 500;
}

.hero-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-slide-title {
    font-size: 2.25rem;
  }

  .hero-slide-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-slide-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-slide-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-title {
    font-size: 1.75rem;
  }

  .hero-slide-subtitle {
    font-size: 0.9375rem;
  }

  .hero-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Page Headers */
.page-header {
  width: 100%;
  padding: 2rem 0 1rem;
  margin-top: 4rem;
  background-color: white;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  z-index: 1;
}

.page-header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-content {
  background-color: white;
  padding: 1rem 0;
}

/* Page-specific header styles */
.about-header .page-title,
.services-header .page-title,
.jobs-header .page-title,
.contact-header .page-title,
.blog-header .page-title {
  color: var(--gray-900);
}

/* Responsive Design for Headers */
@media (max-width: 1024px) {
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 0.9375rem;
  }
  
  .contact-layout {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }
  
  .page-subtitle {
    font-size: 0.875rem;
  }
  
  .contact-info-card {
    padding: 2rem;
  }
  
  .contact-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .contact-icon-wrapper i {
    font-size: 1rem;
  }
  
  .contact-section-title {
    font-size: 1.25rem;
  }
  
  .contact-description {
    font-size: 0.875rem;
  }
  
  .contact-email-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .locations-title {
    font-size: 1.375rem;
  }
  
  .location-card {
    padding: 1.25rem;
  }
  
  .location-header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .location-country {
    font-size: 1.125rem;
  }
  
  .office-item {
  padding: 0.75rem;
  }
  
  .office-icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .office-icon-wrapper i {
    font-size: 0.75rem;
  }
  
  .office-city {
    font-size: 0.875rem;
  }
  
  .office-address {
    font-size: 0.75rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .service-icon i {
    font-size: 1rem;
  }
  
  .service-title {
    font-size: 1.125rem;
  }
  
  .service-description {
    font-size: 0.75rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .achievement-card {
    padding: 1.5rem;
  }
  
  .achievement-card i {
    font-size: 1.25rem;
  }
  
  .achievement-card h4 {
    font-size: 1rem;
  }
  
  .achievement-card p {
    font-size: 0.75rem;
  }
  
  .commitment-section {
    padding: 2rem;
  }
}

/* Carousel Improvements */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 4rem; /* Add space for navbar */
}

.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.5s ease-in-out;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  color: white;
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 2rem;
  }
  
  .carousel-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 1.75rem;
  }
  
  .carousel-description {
    font-size: 1rem;
  }
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
  .carousel-dots {
    bottom: 15px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.carousel-image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Carousel Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
}

/* About Page Styles */
.about-hero-section {
  padding: 1rem 0 3rem;
  background-color: white;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-hero-content {
  padding-right: 1rem;
}

.about-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-hero-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-hero-image:hover .hero-image {
  transform: scale(1.02);
}

/* Vision Mission Section */
.vision-mission-section {
  padding: 3rem 0;
  background-color: var(--gray-50);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vision-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon i {
  font-size: 1rem;
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Achievements Section */
.achievements-section {
  padding: 3rem 0;
  background-color: white;
}

.achievements-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.achievement-card {
  background-color: white;
  padding: 1.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray-100);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.achievement-icon i {
  font-size: 1rem;
  color: white;
}

.achievement-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.achievement-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Commitment Section */
.commitment-section {
  padding: 3rem 0;
  background-color: var(--gray-50);
  text-align: center;
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.commitment-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.commitment-section .section-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.commitment-cta {
  font-weight: 600;
  color: var(--gray-900);
}

/* Services Page Styles */
.services-section {
  padding: 3rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transition: all 0.3s ease;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
  z-index: 1;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Achievements Section */
.achievements-section {
  padding: 3rem 0;
  background-color: var(--gray-50);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.achievement-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 1rem 0 0.5rem;
}

.achievement-description {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--gray-600);
}

/* Commitment Section */
.commitment-section {
  padding: 3rem 0;
  background-color: white;
  text-align: center;
}

.commitment-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  .service-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .service-icon i {
    font-size: 1.375rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .achievements-grid {
    gap: 1.5rem;
    padding: 0 1.25rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .service-icon i {
    font-size: 1.25rem;
  }

  .service-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .service-description {
    font-size: 0.9375rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .achievement-card {
    padding: 1.5rem;
  }

  .achievement-title {
    font-size: 1.125rem;
  }

  .achievement-description {
    font-size: 0.875rem;
  }

  .commitment-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    padding: 0 0.75rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .service-icon i {
    font-size: 1.125rem;
  }

  .achievements-grid {
    padding: 0 0.75rem;
  }

  .achievement-card {
    padding: 1.25rem;
  }
}

/* Professional Icon Styles */
.icon-primary {
  color: var(--icon-primary);
}

.icon-secondary {
  color: var(--icon-secondary);
}

.icon-accent {
  color: var(--icon-accent);
}

.icon-light {
  color: var(--icon-light);
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem 0;
  background-color: white;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
  transition: all 0.2s ease;
}

.contact-icon-wrapper i {
  font-size: 1rem;
  color: white;
  position: relative;
  z-index: 2;
}

.contact-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.contact-email-link {
  display: inline-block;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
    padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--gray-50);
}

.contact-email-link:hover {
  color: var(--primary-dark);
  background-color: var(--gray-100);
}

.locations-section {
  margin-top: 0.5rem;
}

.locations-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.location-icon {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.location-country {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -0.01em;
}

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

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--gray-50);
  transition: all 0.2s ease;
}

.office-item:hover {
  background-color: var(--gray-100);
}

.office-icon-wrapper {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
  transition: all 0.2s ease;
}

.office-icon-wrapper i {
  font-size: 0.875rem;
  color: white;
  position: relative;
  z-index: 2;
}

.office-info {
  flex: 1;
}

.office-city {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

.office-address {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0 0 0.5rem;
}

.office-phone,
.office-email {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-phone i,
.office-email i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
  .contact-layout {
    padding: 0 1rem;
  }

  .contact-info-card {
    padding: 1.75rem;
  }

  .contact-icon-wrapper {
    width: 2.25rem;
    height: 2.25rem;
  }

  .contact-icon-wrapper i {
    font-size: 0.875rem;
  }

  .contact-section-title {
    font-size: 1.375rem;
  }

  .locations-grid {
    gap: 1.25rem;
  }

  .location-card {
    padding: 1.25rem;
  }

  .location-country {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 1.5rem 0;
  }

  .contact-main {
    gap: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-icon-wrapper {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
  }

  .contact-icon-wrapper i {
    font-size: 0.75rem;
  }

  .contact-section-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .contact-description {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }

  .contact-email-link {
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
  }

  .locations-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-card {
    padding: 1.25rem;
  }

  .location-header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .location-country {
    font-size: 1rem;
  }

  .office-item {
    padding: 0.75rem;
  }

  .office-icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }

  .office-icon-wrapper i {
    font-size: 0.75rem;
  }

  .office-city {
    font-size: 0.9375rem;
  }

  .office-address,
  .office-phone,
  .office-email {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1rem 0;
  }

  .contact-layout {
    padding: 0 0.75rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .contact-icon-wrapper i {
    font-size: 0.75rem;
  }

  .contact-section-title {
    font-size: 1.125rem;
  }

  .contact-description {
    font-size: 0.875rem;
  }

  .contact-email-link {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }

  .locations-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .location-card {
    padding: 1rem;
  }

  .location-header {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .location-country {
    font-size: 0.9375rem;
  }

  .office-item {
    padding: 0.625rem;
  }

  .office-icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
  }

  .office-icon-wrapper i {
    font-size: 0.625rem;
  }

  .office-city {
    font-size: 0.875rem;
  }

  .office-address,
  .office-phone,
  .office-email {
    font-size: 0.75rem;
  }
}

/* Jobs Page Styles */
.jobs-section {
  padding: 3rem 0;
  background-color: white;
}

.jobs-filters {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-box {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--gray-800);
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.search-button {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 0.75rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.filter-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-select {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}

.filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.job-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.job-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

.job-type {
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.job-company,
.job-location,
.job-category,
.job-salary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.job-company i,
.job-location i,
.job-category i,
.job-salary i {
  color: var(--primary-color);
  font-size: 1rem;
}

.job-description {
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 1.25rem 0;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.job-dates {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.apply-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Responsive Styles for Jobs Page */
@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .job-card {
    padding: 1.75rem;
  }

  .job-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .jobs-section {
    padding: 2rem 0;
  }

  .jobs-filters {
    margin-bottom: 2rem;
  }

  .search-box {
    flex-direction: column;
  }

  .search-button {
    width: 100%;
  }

  .filter-options {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .job-card {
    padding: 1.5rem;
  }

  .job-header {
    flex-direction: column;
    gap: 1rem;
  }

  .job-type {
    align-self: flex-start;
  }

  .job-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .job-dates {
    text-align: center;
  }

  .apply-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .jobs-section {
    padding: 1.5rem 0;
  }

  .job-card {
    padding: 1.25rem;
  }

  .job-title {
    font-size: 1.125rem;
  }

  .job-company,
  .job-location,
  .job-category,
  .job-salary {
    font-size: 0.875rem;
  }

  .job-description {
    font-size: 0.875rem;
  }
}

/* Sign Up Page Styles */
.signup-container {
  min-height: 100vh;
  background-color: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.signup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.signup-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.signup-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 32rem;
  margin: 0 auto;
}

.signup-form-container {
  max-width: 32rem;
  margin: 0 auto;
  width: 100%;
}

.signup-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
  border-color: var(--error-color);
}

.error-message {
  font-size: 0.75rem;
  color: var(--error-color);
  margin-top: 0.25rem;
}

.terms-group {
  margin-top: 0.5rem;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.terms-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  cursor: pointer;
}

.terms-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.terms-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: var(--primary-dark);
}

.submit-error {
  text-align: center;
  margin-top: 0.5rem;
  color: var(--error-color);
  font-size: 0.875rem;
}

.form-submit {
  margin-top: 1rem;
}

.submit-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-button i {
  font-size: 1rem;
}

/* Responsive Styles for Sign Up Page */
@media (min-width: 640px) {
  .signup-container {
    padding: 3rem 1.5rem;
  }

  .signup-title {
    font-size: 2.25rem;
  }

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

  .signup-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .signup-container {
    padding: 4rem 2rem;
  }

  .signup-title {
    font-size: 2.5rem;
  }

  .signup-card {
    padding: 2.5rem;
  }

  .form-input {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .signup-container {
    padding: 1.5rem 1rem;
  }

  .signup-title {
    font-size: 1.75rem;
  }

  .signup-card {
    padding: 1.5rem;
  }

  .form-input {
    padding: 0.625rem 0.875rem;
  }

  .submit-button {
    padding: 0.625rem 1.25rem;
  }
}

/* Sign In Page Styles */
.signin-container {
  min-height: 100vh;
  background-color: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.signin-header {
  text-align: center;
  margin-bottom: 2rem;
}

.signin-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.signin-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 32rem;
  margin: 0 auto;
}

.signin-form-container {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.signin-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -0.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.remember-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  cursor: pointer;
}

.remember-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.forgot-password {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  color: var(--primary-dark);
}

.signin-footer {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.signin-footer-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.signin-footer-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.signin-footer-link:hover {
  color: var(--primary-dark);
}

/* Responsive Styles for Sign In Page */
@media (min-width: 640px) {
  .signin-container {
    padding: 3rem 1.5rem;
  }

  .signin-title {
    font-size: 2.25rem;
  }

  .signin-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .signin-container {
    padding: 4rem 2rem;
  }

  .signin-title {
    font-size: 2.5rem;
  }

  .signin-card {
    padding: 2.5rem;
  }

  .form-input {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .signin-container {
    padding: 1.5rem 1rem;
  }

  .signin-title {
    font-size: 1.75rem;
  }

  .signin-card {
    padding: 1.5rem;
  }

  .form-input {
    padding: 0.625rem 0.875rem;
  }

  .submit-button {
    padding: 0.625rem 1.25rem;
  }

  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Hero Navigation Styles */
.hero-navigation {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}

.hero-nav-arrow {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-nav-arrow svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.prev-arrow:hover svg {
  transform: translateX(-2px);
}

.next-arrow:hover svg {
  transform: translateX(2px);
}

.hero-nav-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.hero-nav-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-dot.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.hero-nav-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: white;
}

/* Update hero section to ensure proper positioning */
.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

/* Responsive styles for hero navigation */
@media (max-width: 768px) {
  .hero-navigation {
    padding: 0 1rem;
  }

  .hero-nav-arrow {
    width: 3rem;
    height: 3rem;
  }

  .hero-nav-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-nav-dots {
    bottom: 1.5rem;
  }

  .hero-nav-dot {
    width: 0.625rem;
    height: 0.625rem;
  }
}

@media (max-width: 480px) {
  .hero-navigation {
    padding: 0 0.5rem;
  }

  .hero-nav-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-nav-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
