:root {
  /* Primary Color Palette - 5 pastel high-contrast colors */
  --primary-color: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  
  --secondary-color: #22d3ee;
  --secondary-light: #67e8f9;
  --secondary-dark: #0891b2;
  
  --accent-color: #f472b6;
  --accent-light: #f9a8d4;
  --accent-dark: #ec4899;
  
  --success-color: #10b981;
  --success-light: #6ee7b7;
  --success-dark: #059669;
  
  --warning-color: #f59e0b;
  --warning-light: #fbbf24;
  --warning-dark: #d97706;
  
  /* Font Sizes - Conservative */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #374151;
  scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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: 1.125rem; }

.display-4 {
  font-size: 2.25rem;
  font-weight: 700;
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 400;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
  opacity: 0.1;
  border-radius: 50% 0 0 50%;
  transform: translateX(30%);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Feature Items */
.feature-item {
  padding: 1.5rem 0;
}

.feature-item i {
  flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.bg-primary {
  position: relative;
  overflow: hidden;
}

.pricing-card.bg-primary::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--warning-color);
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

/* Team Members */
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  transition: transform 0.3s ease;
  border: 1px solid #e5e7eb;
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars i {
  font-size: 0.875rem;
}

/* Case Study Cards */
.case-study-card {
  border: 1px solid #d1d5db;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

/* Process Steps */
.process-step {
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  font-weight: 700;
  font-size: 1.25rem;
}

/* FAQ Items */
.faq-item {
  border: 1px solid #d1d5db;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

/* Gallery */
#gallery img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

#gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Contact Form */
.contact-form .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
#footer {
  background: #1f2937;
}

#footer a {
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-light);
}

/* Utilities */
.text-primary {
  color: var(--primary-color);
}

.bg-light {
  background-color: #f8fafc;
}

/* Sections */
section {
  padding: var(--section-padding);
}

/* Animation Classes for ScrollReveal */
.sr-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Ensure proper spacing and alignment */
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Custom spacing utilities */
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Rounded corners */
.rounded {
  border-radius: 8px;
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

/* Display utilities */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

/* Height utilities */
.min-vh-100 {
  min-height: 100vh;
}

.h-100 {
  height: 100%;
}

/* Margin utilities */
.ms-auto {
  margin-left: auto;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.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;
}

/* Padding utilities */
.p-4 {
  padding: 1.5rem;
}

/* Width utilities */
.w-100 {
  width: 100%;
}

/* Font weight utilities */
.fw-bold {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

/* List styles */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* Text decoration */
.text-decoration-none {
  text-decoration: none;
}

/* Text colors */
.text-muted {
  color: #6b7280;
}

.text-light-emphasis {
  color: #d1d5db;
}

.text-success {
  color: var(--success-color);
}

.text-warning {
  color: var(--warning-color);
}

/* Small text */
.small {
  font-size: 0.875rem;
}

/* Grid gap */
.g-2 > * {
  padding: 0.25rem;
}

.g-3 > * {
  padding: 0.75rem;
}

.g-4 > * {
  padding: 1rem;
} 

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
