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

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #f1c40f;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --transition-slow: 0.5s ease;
  --transition-medium: 0.3s ease;
  --transition-fast: 0.2s ease;
  --border-radius: 4px;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
  transform: translateY(0);
}

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

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

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

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-link {
  /* display: block; */
  transition: transform var(--transition-medium);
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary-color);
}

.tagline {
  font-size: 12px;
  color: var(--text-lighter);
  margin-top: -5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  color: var(--text-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

.contact-btn {
  background-color: var(--secondary-color);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium) !important;
}

.contact-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-btn::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-medium);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding-left: 10%;
  position: relative;
  margin-top: 0;
}

.hero-content {
  color: white;
  max-width: 600px;
  z-index: 1;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.accent {
  color: var(--accent-color);
  font-size: 72px;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: all var(--transition-medium);
  z-index: -1;
}

.cta-button:hover {
  color: var(--primary-color);
}

.cta-button:hover::before {
  left: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 14px;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  margin-top: 8px;
}

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

/* Why Us Section */
.why-us {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.why-us .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-us-content {
  flex: 1;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 40px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  transform: translateY(-50%);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefits-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.text-link {
  color: var(--secondary-color);
  font-weight: 500;
  transition: all var(--transition-medium);
  display: inline-flex;
  align-items: center;
}

.text-link i {
  margin-left: 8px;
  transition: transform var(--transition-medium);
}

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

.text-link:hover i {
  transform: translateX(5px);
}

.why-us-image {
  flex: 1;
  height: 500px;
  background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.why-us-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(52, 152, 219, 0.2), rgba(44, 62, 80, 0.2));
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: white;
}

.services .section-title {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services .section-label {
  display: block;
  text-align: center;
  padding-left: 0;
}

.services .section-label::before {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transition: height var(--transition-slow);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.service-icon {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: transform var(--transition-medium);
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: color var(--transition-medium);
}

.service-card:hover h3 {
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: transform var(--transition-medium);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Process Section */
.process {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.process .section-title,
.process .section-label {
  text-align: center;
}

.process .section-title {
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(52, 152, 219, 0.2);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  transition: all var(--transition-medium);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.process-step p {
  color: var(--text-light);
  font-size: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: white;
}

.testimonials .section-title,
.testimonials .section-label {
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 60px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial.active {
  display: block;
}

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

.testimonial-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote-icon {
  color: var(--secondary-color);
  font-size: 30px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-color);
  line-height: 1.8;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  border: 3px solid var(--secondary-color);
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
}

.author-title {
  font-size: 14px;
  color: var(--text-light);
}

.slider-controls {
  margin-top: 30px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.dot.active {
  background-color: var(--secondary-color);
}

.slider-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all var(--transition-medium);
  pointer-events: auto;
}

.arrow:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-image: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
}

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

.btn-primary:hover {
  background-color: white;
  color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 300px;
  color: #aaa;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.footer-column ul li a {
  color: #aaa;
  transition: all var(--transition-medium);
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #aaa;
  transition: color var(--transition-medium);
}

.footer-legal a:hover {
  color: white;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: white;
  padding: 100px 40px 40px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav ul li a {
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Page Header */
.page-header {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Find Talent Page */
.talent-categories {
  padding: 100px 0;
}

.category-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition-medium);
}

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

.category-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.category-content {
  padding: 30px;
}

.category-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.category-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.talent-process {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.talent-form {
  padding: 100px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transition: border-color var(--transition-medium);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.submit-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* Join Us Page */
.job-listings {
  padding: 100px 0;
}

.job-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.job-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.job-company {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.job-details {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.job-detail {
  display: flex;
  align-items: center;
}

.job-detail i {
  margin-right: 5px;
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tag {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.job-action {
  flex: 0 0 auto;
}

.apply-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-medium);
  display: inline-block;
}

.apply-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.resources-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

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

.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition-medium);
}

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

.resource-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.resource-content {
  padding: 30px;
}

.resource-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.resource-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.submit-resume {
  background-color: var(--bg-light);
  padding: 100px 0;
}

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

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-medium);
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-question i {
  transition: transform var(--transition-medium);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
}

.faq-item.active .faq-question {
  color: var(--secondary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* About Us Page */
.about-intro {
  padding: 100px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.values-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.value-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 30px;
  transition: all var(--transition-medium);
}

.value-card:hover .value-icon {
  background-color: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.value-card p {
  color: var(--text-light);
}

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

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

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 300px;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}

.member-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.team-member:hover .member-image::before {
  opacity: 1;
}

.member-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  transition: bottom var(--transition-medium);
}

.team-member:hover .member-social {
  bottom: 0;
}

.member-social a {
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all var(--transition-medium);
}

.member-social a:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-5px);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.member-role {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-light);
  font-size: 14px;
}

.timeline-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: rgba(52, 152, 219, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -10px;
}

.timeline-date {
  position: absolute;
  top: 20px;
  width: 120px;
  padding: 8px 0;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.timeline-item:nth-child(odd) .timeline-date {
  left: -150px;
}

.timeline-item:nth-child(even) .timeline-date {
  right: -150px;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-title {
  margin-bottom: 15px;
  font-size: 20px;
}

.timeline-description {
  color: var(--text-light);
}

/* Contact Us Page */
.contact-section {
  padding: 100px 0;
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  margin-bottom: 30px;
  transition: all var(--transition-medium);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 24px;
  transition: all var(--transition-medium);
}

.info-card:hover .info-icon {
  background-color: var(--secondary-color);
  color: white;
}

.info-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.info-content {
  color: var(--text-light);
}

.info-content a {
  color: var(--secondary-color);
  transition: color var(--transition-medium);
}

.info-content a:hover {
  color: var(--primary-color);
}

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

.map-container {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Helper Classes */
.text-center {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }

  .accent {
    font-size: 58px;
  }

  .section-title {
    font-size: 40px;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    flex: 0 0 50%;
    margin-bottom: 40px;
  }

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

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

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

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding-left: 5%;
    text-align: center;
    justify-content: center;
    background-attachment: scroll;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .accent {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .why-us .container {
    flex-direction: column;
  }

  .why-us-image {
    width: 100%;
  }

  .section-title {
    font-size: 36px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    flex: 0 0 calc(50% - 15px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .about-image {
    width: 100%;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    right: auto;
  }

  .timeline-date {
    position: relative;
    top: 0;
    left: 0 !important;
    right: 0 !important;
    margin-bottom: 15px;
    width: auto;
    display: inline-block;
  }

  .timeline-dot {
    left: 30px;
  }

  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

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

  .accent {
    font-size: 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .quote {
    font-size: 16px;
  }

  .process-step {
    flex: 0 0 100%;
  }

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

  .footer-column {
    flex: 0 0 100%;
  }
}
