/* CSS Variables */
:root {
  --primary-color: #003087;
  --secondary-color: #CC3333;
  --accent-color: #E55A5A;
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #ADB5BD;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
  --font-family: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

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

.logo h1 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin: 0;
  transition: color 0.3s ease;
}

.gks-text {
  color: #FFFFFF;
}

.logistics-text {
  color: #CC3333;
}

.nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav ul li a:hover {
  color: #CC3333;
  transform: scale(1.05);
}

.language-toggle {
  display: flex;
  align-items: center;
}

#languageToggle {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
}

#languageToggle:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.lang-text {
  font-weight: 500;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: #003087;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 48px;
  border-radius: 4px;
  padding: 0.5rem;
  position: relative;
}

.menu-toggle:hover {
  color: #FFFFFF;
  background: #003087;
  text-decoration: underline;
  text-decoration-color: #CC3333;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(1px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.8), rgba(204, 51, 51, 0.6));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.back-button {
  margin-bottom: 3rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.employee-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.employee-photo {
  display: flex;
  justify-content: center;
}

.employee-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.employee-image:hover {
  transform: scale(1.05);
}

.employee-info {
  color: #FFFFFF;
}

.employee-name {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.employee-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CC3333;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.employee-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  border-left: 4px solid #CC3333;
  padding-left: 2rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.main-content {
  padding: 6rem 0;
  background: var(--neutral-200);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.content-card {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1E90FF, #003087);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-icon {
  font-size: 2rem;
  color: #1E90FF;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

/* Milestones */
.milestones {
  margin-top: 2rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--neutral-200);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.milestone:hover {
  transform: translateX(5px);
}

.milestone-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E90FF;
  min-width: 60px;
}

.milestone-role {
  font-size: 1rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Responsibilities */
.responsibilities {
  margin-top: 2rem;
}

.responsibilities h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.responsibilities-list {
  list-style: none;
  padding: 0;
}

.responsibilities-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--neutral-200);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.responsibilities-list li:hover {
  transform: translateX(5px);
}

.responsibility-icon {
  font-size: 1.2rem;
  color: #1E90FF;
  min-width: 20px;
}

/* Passions Section */
.passions-section {
  margin-bottom: 4rem;
}

.passions-card {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.passions-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1E90FF, #003087);
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--neutral-200);
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.interest-item:hover {
  transform: translateY(-3px);
  background: var(--neutral-300);
}

.interest-icon {
  font-size: 1.5rem;
  color: #1E90FF;
  min-width: 24px;
}

/* Call to Action */
.cta-section {
  text-align: center;
  padding: 4rem 0;
  background: var(--neutral-100);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1E90FF, #003087);
  color: var(--neutral-100);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 51, 51, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1E90FF;
  border: 2px solid #1E90FF;
}

.btn-secondary:hover {
  background: #1E90FF;
  color: var(--neutral-100);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
  font-family: var(--font-family);
}

.footer .shade-overlay {
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-header {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
}

.footer-logo h3 {
  font-size: 2.5rem;
  margin: 0;
  color: #FFFFFF;
  font-weight: 800;
}

.footer-gks-text {
  color: #003087;
}

.footer-logistics-text {
  color: #CC3333;
}

.footer-logo p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: #FFFFFF;
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #CC3333;
  transform: scale(1.2);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #CC3333, #E55A5A);
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CC3333;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-links ul li a:hover {
  color: #CC3333;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: #FFFFFF;
  font-size: 1rem;
}

.footer-contact p a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-contact p a:hover {
  color: #CC3333;
  text-decoration: underline;
}

.footer-divider {
  height: 2px;
  background: #CC3333;
  margin: 2.5rem 0;
}

.footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 400;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #CC3333;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #B22222;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .nav ul li {
    text-align: center;
  }

  .nav ul li a {
    color: #1A1A1A;
  }

  .employee-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .employee-image {
    width: 200px;
    height: 200px;
  }

  .employee-name {
    font-size: 2.5rem;
  }

  .employee-title {
    font-size: 1.4rem;
  }

  .employee-quote {
    font-size: 1.1rem;
  }

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

  .content-card {
    padding: 2rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-logo-header {
    justify-content: center;
  }

  .footer-logo-img {
    width: 55px;
    height: 55px;
  }

  .footer-logo h3 {
    font-size: 2rem;
  }
  
  /* Better text handling on mobile */
  .employee-name,
  .employee-title,
  .employee-quote,
  .content-card h3,
  .content-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.4rem;
  }

  .logo-img {
    width: 30px;
    height: 30px;
  }
}
