/* AI Talent Analytics Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #7e79ff;
  --primary-purple: #6c57dd;
  --primary-teal: #14ccbb;
  --primary-orange: #ee9112;
  --primary-pink: #fe3980;
  
  /* Light Shades */
  --light-blue: #dcdfff;
  --light-purple: #ddcee9;
  --light-teal: #c5fff5;
  --light-orange: #fff6c8;
  --light-pink: #eeccdc;
  
  /* Dark Shades */
  --dark-blue: #302c91;
  --dark-purple: #632495;
  --dark-teal: #09846b;
  --dark-orange: #c57115;
  --dark-pink: #d10f4c;
  
  /* Neutral Colors */
  --text-dark: #2d3d4d;
  --text-light: #6e7382;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-light: #e8e8e8;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 50%;
}

/* Section Styling */
.section-padding {
  padding: 5rem 0;
  overflow: visible; /* Ensure sections don't get cut off */
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Card Components */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.info-card,
.blog-card,
.faq-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.case-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
  background: var(--white);
  padding: 2rem;
}

.service-price {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Feature Cards */
.feature-card {
  background: var(--light-blue);
  padding: 2rem;
}

.feature-icon {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.price-value {
  color: var(--primary-teal);
  font-size: 2.5rem;
  font-weight: 700;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-teal);
  margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-purple);
}

/* Review Cards */
.review-card {
  background: var(--light-teal);
  padding: 2rem;
}

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  height: auto; /* Remove fixed height to fit content */
  display: flex;
  flex-direction: column;
  overflow: visible; /* Prevent content overflow */
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(93, 84, 223, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--border-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--bg-light);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 100%;
  max-width: 300px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
