/* HR Courses - Main Stylesheet */
/* Editorial & Sophisticated Design System */

:root {
  --hc-x8k2p-primary: #1a3a52;
  --hc-m9w3r-secondary: #d4a574;
  --hc-q7n2s-accent: #8b4513;
  --hc-t4h9m-light: #f8f6f3;
  --hc-p2k8n-dark: #2c2c2c;
  --hc-w9r3q-muted: #6b7280;
  --hc-j5m2x-border: #e5e3df;
  --hc-v8n4k-hover: #254a66;
  --hc-z3p7w-gradient-start: #1a3a52;
  --hc-c6m9t-gradient-end: #8b4513;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Crimson Pro', 'Georgia', serif;
  color: var(--hc-p2k8n-dark);
  background-color: var(--hc-t4h9m-light);
  line-height: 1.7;
  overflow-x: hidden;
}

.hc-k8m3w-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation System */
.hc-x9a2f-navWrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--hc-j5m2x-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-x9a2f-navWrap.hc-m7k3p-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hc-p4n8k-navInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.hc-w9m2x-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.hc-w9m2x-logo:hover {
  color: var(--hc-q7n2s-accent);
}

.hc-t8k3m-navMenu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.hc-t8k3m-navMenu li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hc-p2k8n-dark);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.hc-t8k3m-navMenu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hc-m9w3r-secondary);
  transition: width 0.3s ease;
}

.hc-t8k3m-navMenu li a:hover {
  color: var(--hc-q7n2s-accent);
}

.hc-t8k3m-navMenu li a:hover::after {
  width: 100%;
}

.hc-r7m4k-mobileToggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--hc-p2k8n-dark);
  cursor: pointer;
}

/* Hero Sections */
.hc-n8k2w-heroSection {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}



.hc-n8k2w-heroSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/banner.jpg');
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.hc-q3m7p-heroContent {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hc-j9k3w-heroTitle {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hc-x8k2p-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hc-m4n7k-heroSubtitle {
  font-size: 1.4rem;
  color: var(--hc-w9r3q-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.hc-p8k2m-heroLead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--hc-p2k8n-dark);
  margin-bottom: 2rem;
  max-width: 750px;
}

/* Editorial Grid System */
.hc-w3k9m-editorialGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.hc-t6m8k-gridSpan6 {
  grid-column: span 6;
}

.hc-t6m8k-gridSpan4 {
  grid-column: span 4;
}

.hc-t6m8k-gridSpan8 {
  grid-column: span 8;
}

.hc-t6m8k-gridSpan3 {
  grid-column: span 3;
}

/* Card Components */
.hc-k7m3p-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--hc-j5m2x-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hc-k7m3p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hc-p9k2m-cardImage {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hc-k7m3p-card:hover .hc-p9k2m-cardImage {
  transform: scale(1.08);
}

.hc-w4k8m-cardBody {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hc-m8k3n-cardCategory {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hc-m9w3r-secondary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hc-q2k7m-cardTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hc-n4k9p-cardText {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hc-w9r3q-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Button System */
.hc-t9k2m-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  justify-content: center;
}

.hc-p7k3m-btnPrimary {
  background: var(--hc-x8k2p-primary);
  color: white;
}

.hc-p7k3m-btnPrimary:hover {
  background: var(--hc-v8n4k-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 58, 82, 0.3);
}

.hc-w8k2n-btnSecondary {
  background: transparent;
  color: var(--hc-x8k2p-primary);
  border: 2px solid var(--hc-x8k2p-primary);
}

.hc-w8k2n-btnSecondary:hover {
  background: var(--hc-x8k2p-primary);
  color: white;
}

.hc-m2k9p-btnGroup {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section Styling */
.hc-k3m8w-section {
  padding: 5rem 0;
}

.hc-n7k4m-sectionTitle {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hc-p4k9m-sectionSubtitle {
  font-size: 1.2rem;
  color: var(--hc-w9r3q-muted);
  margin-bottom: 3rem;
  max-width: 700px;
}

.hc-w9k3m-sectionDivider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hc-j5m2x-border), transparent);
  margin: 4rem 0;
}

/* Timeline Component */
.hc-t3k8m-timeline {
  position: relative;
  padding: 2rem 0;
}

.hc-k9m2w-timelineItem {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: hc-w3k7m-slideIn 0.6s ease forwards;
}

.hc-k9m2w-timelineItem:nth-child(1) { animation-delay: 0.1s; }
.hc-k9m2w-timelineItem:nth-child(2) { animation-delay: 0.2s; }
.hc-k9m2w-timelineItem:nth-child(3) { animation-delay: 0.3s; }
.hc-k9m2w-timelineItem:nth-child(4) { animation-delay: 0.4s; }

@keyframes hc-w3k7m-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hc-p7k4m-timelineIcon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--hc-z3p7w-gradient-start), var(--hc-c6m9t-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.hc-m8k3p-timelineContent {
  flex-grow: 1;
}

.hc-n2k7m-timelineTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  margin-bottom: 0.5rem;
}

.hc-w4k9p-timelineText {
  font-size: 1rem;
  color: var(--hc-w9r3q-muted);
  line-height: 1.7;
}

/* Quote Carousel */
.hc-q8k2m-quoteCarousel {
  background: white;
  padding: 4rem 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--hc-m9w3r-secondary);
  position: relative;
  min-height: 200px;
}

.hc-t7k3m-quoteItem {
  opacity: 0;
  position: absolute;
  top: 4rem;
  left: 3rem;
  right: 3rem;
  transition: opacity 0.6s ease;
}

.hc-t7k3m-quoteItem.hc-m9k2w-active {
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.hc-p3k8m-quoteText {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--hc-p2k8n-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hc-w7k2n-quoteAuthor {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hc-m9w3r-secondary);
}

/* Feature Boxes */
.hc-k2m9w-featureBox {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--hc-j5m2x-border);
  transition: all 0.3s ease;
}

.hc-k2m9w-featureBox:hover {
  border-color: var(--hc-m9w3r-secondary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hc-p9k3m-featureIcon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--hc-z3p7w-gradient-start), var(--hc-c6m9t-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.hc-t8k2m-featureTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  margin-bottom: 1rem;
}

.hc-n4k7p-featureText {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hc-w9r3q-muted);
}

/* Article Content */
.hc-w3k8m-articleContent {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.hc-w3k8m-articleContent h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hc-x8k2p-primary);
  margin: 2.5rem 0 1.5rem;
  letter-spacing: -0.5px;
}

.hc-w3k8m-articleContent h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--hc-q7n2s-accent);
  margin: 2rem 0 1rem;
}

.hc-w3k8m-articleContent p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--hc-p2k8n-dark);
}

.hc-w3k8m-articleContent ul,
.hc-w3k8m-articleContent ol {
  margin: 1.5rem 0 1.5rem 2rem;
  line-height: 1.8;
}

.hc-w3k8m-articleContent li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.hc-m7k2p-pullQuote {
  background: var(--hc-t4h9m-light);
  border-left: 4px solid var(--hc-m9w3r-secondary);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--hc-q7n2s-accent);
}

/* Form Styling */
.hc-p8k3m-form {
  max-width: 600px;
  margin: 0 auto;
}

.hc-w9k2m-formGroup {
  margin-bottom: 1.5rem;
}

.hc-t4k7m-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hc-p2k8n-dark);
  margin-bottom: 0.5rem;
}

.hc-m3k8p-input,
.hc-n7k2m-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  border: 1px solid var(--hc-j5m2x-border);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: white;
}

.hc-m3k8p-input:focus,
.hc-n7k2m-textarea:focus {
  outline: none;
  border-color: var(--hc-m9w3r-secondary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.hc-n7k2m-textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.hc-k9m3w-footer {
  background: var(--hc-x8k2p-primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.hc-p7k2m-footerGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hc-w8k3m-footerCol h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--hc-m9w3r-secondary);
}

.hc-t2k9m-footerLinks {
  list-style: none;
}

.hc-t2k9m-footerLinks li {
  margin-bottom: 0.8rem;
}

.hc-t2k9m-footerLinks a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.hc-t2k9m-footerLinks a:hover {
  color: var(--hc-m9w3r-secondary);
}

.hc-m4k7p-footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.hc-q9k2m-cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.hc-q9k2m-cookieBanner.hc-w7k3m-show {
  transform: translateY(0);
}

.hc-t8k2p-cookieContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.hc-p4k7m-cookieText {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hc-m9k2w-cookieButtons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hc-w3k9m-editorialGrid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .hc-t6m8k-gridSpan6,
  .hc-t6m8k-gridSpan4,
  .hc-t6m8k-gridSpan8 {
    grid-column: span 6;
  }
  
  .hc-j9k3w-heroTitle {
    font-size: 3rem;
  }
  
  .hc-n7k4m-sectionTitle {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hc-t8k3m-navMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hc-t8k3m-navMenu.hc-k7m2w-active {
    display: flex;
  }
  
  .hc-r7m4k-mobileToggle {
    display: block;
  }
  
  .hc-j9k3w-heroTitle {
    font-size: 2.5rem;
  }
  
  .hc-m4n7k-heroSubtitle {
    font-size: 1.2rem;
  }
  
  .hc-w3k9m-editorialGrid {
    grid-template-columns: 1fr;
  }
  
  .hc-t6m8k-gridSpan6,
  .hc-t6m8k-gridSpan4,
  .hc-t6m8k-gridSpan8,
  .hc-t6m8k-gridSpan3 {
    grid-column: span 1;
  }
  
  .hc-t8k2p-cookieContent {
    flex-direction: column;
  }
  
  .hc-m9k2w-cookieButtons {
    width: 100%;
    flex-direction: column;
  }
}

/* Utility Classes */
.hc-p9k3w-textCenter {
  text-align: center;
}

.hc-w7k2m-mt4 {
  margin-top: 2rem;
}

.hc-m8k3p-mb4 {
  margin-bottom: 2rem;
}

.hc-t3k9m-fadeIn {
  animation: hc-n4k7w-fadeIn 0.8s ease;
}

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


.hc-w9m2x-logo img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .hc-w9m2x-logo img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}