:root {
  /* Primary Color Palette - 5 pastel high-contrast colors */
  --primary-color: #6c5ce7;
  --secondary-color: #fd79a8;
  --accent-color: #00b894;
  --warning-color: #fdcb6e;
  --danger-color: #e17055;
  
  /* Light & Dark Shades */
  --primary-light: #a29bfe;
  --primary-dark: #5f3dc4;
  --secondary-light: #fd79a8;
  --secondary-dark: #e84393;
  --accent-light: #55efc4;
  --accent-dark: #00a085;
  --warning-light: #fdcb6e;
  --warning-dark: #e17055;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global Styles */
body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Conservative Typography */
h1, .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

h3, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Sections */
.section-padding {
  padding: var(--section-padding);
}

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

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 225px;
}

.hero-image {
  z-index: 1;
  position: relative;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 150%;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

/* Services Cards */
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: none;
}

.team-card:hover {
  transform: translateY(-0.25rem);
}

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

/* Review Cards */
.review-card {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
  border: none;
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--gray);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--primary-light);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-0.125rem);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%; /* Ensure all cards have the same height */
  display: flex;
  flex-direction: column;
}

.price-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-0.5rem);
}

.price-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-light), var(--white));
}

/* Price section specific */
#priceplan .row {
  display: flex;
  flex-wrap: wrap;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding-left: 3rem;
  position: relative;
  border-left: 3px solid var(--primary-light);
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-item:last-child {
  border-left: none;
}

/* Gallery */
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

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

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: none;
}

.blog-card:hover {
  transform: translateY(-0.5rem);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Career Cards */
.career-card {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
  border: none;
  transition: background-color 0.3s ease;
}

.career-card:hover {
  background: var(--white);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border: none;
  height: 100%;
}

/* Core Info Grid */
.coreinfo-item {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background: var(--white);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.text-accent-custom {
  color: var(--accent-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-light-custom {
  background-color: var(--light-gray);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--light-gray);
  border-radius: 1rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
} 


/* 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;
    }
}
