/* AI Job Description Bias Checker - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #6c7ae0;
  --primary-purple: #a855f7;
  --primary-teal: #14b8a6;
  --primary-pink: #ec4899;
  --primary-orange: #f97316;
  
  /* Light Shades */
  --light-blue: #e0e7ff;
  --light-purple: #f3e8ff;
  --light-teal: #ccfbf1;
  --light-pink: #fce7f3;
  --light-orange: #fed7aa;
  
  /* Dark Shades */
  --dark-blue: #4338ca;
  --dark-purple: #7c3aed;
  --dark-teal: #0f766e;
  --dark-pink: #be185d;
  --dark-orange: #ea580c;
  
  /* Additional Colors */
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
}

/* General Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Conservative Typography */
.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;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 275px;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  height: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-teal);
}

/* Price Plan Cards */
.price-card {
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-purple);
  transform: scale(1.05);
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-blue);
}

/* Review Cards */
.review-card {
  padding: 2rem;
  height: 100%;
  background: var(--light-blue);
  border-left: 4px solid var(--primary-blue);
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--primary-orange);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Case Study Cards */
.casestudy-card {
  padding: 2rem;
  height: 100%;
  background: var(--light-teal);
  border-radius: 12px;
}

/* Process Cards */
.process-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* Timeline Cards */
.timeline-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-purple);
}

/* Career Cards */
.career-card {
  padding: 2rem;
  height: 100%;
  background: var(--light-orange);
  border-radius: 12px;
}

/* Blog Cards */
.blog-card {
  height: 100%;
  overflow: hidden;
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Core Info Cards */
.coreinfo-card {
  padding: 2rem;
  height: 100%;
  text-align: center;
  background: white;
  border-radius: 12px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(108, 122, 224, 0.1);
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-blue);
}

/* Contact Info */
.contact-info {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  width: 24px;
  color: var(--primary-blue);
  margin-right: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-blue);
}

.breadcrumb-img {
  height: 24px;
  width: auto;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-purple), var(--light-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 2rem 0;
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Utilities */
.bg-gradient {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-large {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.border-start-primary {
  border-left: 4px solid var(--primary-blue);
}

.bg-light-custom {
  background-color: var(--bg-light);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
