/* ===== SKILLHUB TEMPLATE - MAIN STYLES ===== */
/* Bootstrap 5 Integration + Custom Styles */

/* Root Variables - Color Palette (5 primary colors + light/dark shades) */
:root {
  /* Primary Colors */
  --primary-purple: #6c5ce7;
  --primary-turquoise: #00b894;
  --primary-orange: #e17055;
  --primary-blue: #74b9ff;
  --primary-pink: #fd79a8;
  
  /* Light Shades */
  --light-purple: #a29bfe;
  --light-turquoise: #55efc4;
  --light-orange: #fdcb6e;
  --light-blue: #81ecec;
  --light-pink: #ffeaa7;
  
  /* Dark Shades */
  --dark-purple: #2d3436;
  --dark-turquoise: #00695c;
  --dark-orange: #d63031;
  --dark-blue: #0984e3;
  --dark-pink: #e84393;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.5;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-turquoise));
  --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  --gradient-accent: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--gray-800);
  background-color: var(--white);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
  max-width: 65ch;
}

/* Links */
a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-purple);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-purple), var(--dark-turquoise));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-outline-primary:hover {
  background: var(--primary-purple);
  color: var(--white);
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-right: 2rem;
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
  background: var(--gray-100);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TEG_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--light-blue);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* Decorative Elements */
.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 0 auto;
  max-width: 600px;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-turquoise);
  margin-bottom: 1rem;
}

.about-feature h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--gray-100);
}

.service-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.service-item h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-turquoise);
  margin-bottom: 1rem;
}

.team-member h5 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-purple);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--gray-100);
}

.review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-purple);
  line-height: 1;
}

.review-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--gray-900);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--gray-100);
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-200);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-purple);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
}

/* Gallery Section */
.gallery {
  background: var(--gray-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: var(--gradient-accent);
  color: var(--white);
}

.contact .section-header h2,
.contact .section-header p {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin: 0;
}

.contact-info {
  color: var(--white);
}

.contact-info h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--light-blue);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1rem;
}



.footer-section h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-turquoise);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--gray-500);
  margin: 0 0.5rem;
}

/* Price Plans */
.price-plan {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
}

.price-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-plan.featured {
  border: 3px solid var(--primary-purple);
  transform: scale(1.05);
}

.price-plan.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-purple);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-plan h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.price-plan .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 2rem;
}

.price-plan .price span {
  font-size: 1rem;
  color: var(--gray-600);
}

.price-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.price-plan ul li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: var(--primary-turquoise);
  z-index: 1;
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--gray-600);
  margin: 0 auto;
  max-width: 250px;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-turquoise);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  width: 15px;
  height: 15px;
  background: var(--primary-purple);
  border-radius: 50%;
}

.timeline-item h5 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Career/Jobs */
.career-item {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-3px);
}

.career-item h4 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.career-item .role {
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.coreinfo-item h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Case Studies */
.casestudy-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.casestudy-item h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.casestudy-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Blog */
.blog-item {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.blog-item p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.blog-item a {
  color: var(--primary-purple);
  font-weight: 500;
  text-decoration: none;
}

.blog-item a:hover {
  text-decoration: underline;
}

/* Features */
.features {
  background: var(--gray-100);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--dark-purple), var(--dark-turquoise));
  transform: translateY(-3px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
  font-size: 1.25rem;
}

/* Notification System */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--white);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 1001;
  min-width: 300px;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-success {
  background: linear-gradient(135deg, var(--primary-turquoise), var(--dark-turquoise));
}

.notification-error {
  background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
}

.notification-info {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-purple);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
  position: absolute;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: var(--gray-900);
}

/* Modal System */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1003;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--gray-900);
}

/* Progress Bars */
.progress-bar {
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

/* Counter Animation */
.counter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Tab System */
.tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  color: var(--gray-600);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.tab-button.active {
  color: var(--primary-purple);
  border-bottom-color: var(--primary-purple);
}

.tab-button:hover {
  color: var(--primary-purple);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
} 


/* 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;
}

.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;
    }
}
