:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  
  --secondary-color: #06b6d4;
  --secondary-light: #67e8f9;
  --secondary-dark: #0891b2;
  
  --accent-color: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  
  --success-color: #10b981;
  --success-light: #6ee7b7;
  --success-dark: #059669;
  
  --warning-color: #f97316;
  --warning-light: #fdba74;
  --warning-dark: #ea580c;
  
  /* Neutral Colors */
  --light-bg: #f8fafc;
  --dark-bg: #1e293b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
}

/* Conservative Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
    overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

h1, .display-4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

h3, h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

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

/* Header Styles */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

/* Button Styles */
.btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

/* Card Styles */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

/* Section Spacing */
section {
  padding: 4rem 0;
}

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

/* Icon Styles */
.fa-3x {
  color: var(--primary-color);
}

.fa-2x {
  color: var(--primary-color);
}

/* Team Member Images */
.rounded-circle {
  border: 4px solid var(--light-bg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer Styles */
#footer {
  background-color: var(--dark-bg);
}

#footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item img {
  border-radius: 4px;
}

/* Gallery Styles */
#gallery img {
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* FAQ Cards */
#faq .card {
  margin-bottom: 1rem;
}

/* Process Steps */
.bg-primary {
  background-color: var(--primary-color);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1, .display-4 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  #hero {
    min-height: 80vh;
  }
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  
  .card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  #gallery img:hover {
    transform: none;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color);
}

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

.text-muted {
  color: var(--text-muted);
}

/* Animation Classes for Sal.js */
.sal-animate {
  transition: all 0.5s ease;
}

/* Contact Info Styling */
.contact-info {
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: 1rem;
}

.contact-info h5 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Timeline Styling */
#timeline .bg-secondary {
  background-color: var(--secondary-color);
}

/* Career Cards */
#career .badge {
  font-size: 0.75rem;
}

/* Blog Grid */
#blog_grid .card-img-top {
  height: 180px;
}

/* Services Grid */
#services .card-body h5 {
  color: var(--primary-color);
}

#services .card-body h6 {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Reviews Section */
#reviews .blockquote-footer {
  font-size: 0.875rem;
}

/* Case Studies */
#casestudy .card-img-top {
  height: 160px;
}

/* Core Info Icons */
#coreinfo .fa-3x {
  margin-bottom: 1rem;
}

/* Pricing Cards */
#priceplan .border-primary {
  border-color: var(--primary-color);
  position: relative;
}

#priceplan .border-primary::before {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Feature Icons */
#features .fa-3x,
#about .fa-3x {
  margin-bottom: 1rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Error States */
.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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