:root {
  --primary-color: #6565df;
  --primary-light: #afc2ff;
  --primary-dark: #3b27c5;
  --secondary-color: #06bb85;
  --secondary-light: #79ebcd;
  --secondary-dark: #056540;
  --accent-color: #ff891d;
  --accent-light: #ffcd4e;
  --accent-dark: #e56700;
  --neutral-color: #7f8a97;
  --neutral-light: #d2dbe8;
  --neutral-dark: #484f5e;
  --success-color: #099a7b;
  --success-light: #9ae5c9;
  --success-dark: #09644b;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 600;
}

h1 {
  font-size: 2.33rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.94rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.57rem;
  font-weight: 600;
}

h4 {
  font-size: 1.39rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

/* Services cards */
.service-card {
  background: white;
  border-radius: 17px;
  box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 19px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Feature cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Team member cards */
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-7px);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review cards */
.review-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 7px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* FAQ cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 7px 4px rgba(0, 0, 0, 0.1);
}

/* Price plan cards */
.price-card {
  background: white;
  border-radius: 13px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Process cards */
.process-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Timeline cards */
.timeline-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Career cards */
.career-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Core info cards */
.coreinfo-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Case study cards */
.casestudy-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Blog cards */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-2px);
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Section spacing */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: #f8fafc;
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

.text-accent-color {
  color: var(--accent-color);
}

.bg-accent-color {
  background-color: var(--accent-color);
}

.text-success-color {
  color: var(--success-color);
}

.bg-success-color {
  background-color: var(--success-color);
}

.text-neutral-color {
  color: var(--neutral-color);
}

.bg-neutral-color {
  background-color: var(--neutral-color);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Breadcrumb */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* JavaScript state classes */
.lozad {
  transition: opacity 0.3s ease;
}

.lozad.loaded {
  opacity: 1;
}

/* Nanobar styling */
#nanobar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
}

/* Fallback for no-webp support */
.no-webp .lozad[data-src$=".webp"] {
  display: none;
}

/* Fallback for no-flexbox support */
.no-flexbox .gallery-grid {
  display: block;
}

.no-flexbox .gallery-grid img {
  display: inline-block;
  width: 300px;
  margin: 0.5rem;
}

/* Accessibility improvements */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Loading states */
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form validation styles */
.just-validate-error-label {
  color: #f12d55;
  font-size: 1.00rem;
  margin-top: 0.36rem;
}

.just-validate-success-field {
  border-color: #22a853;
}

.just-validate-error-field {
  border-color: #cb4543;
}

/* Smooth scrolling for older browsers */
html {
  scroll-behavior: smooth;
}

/* Print optimizations */
@media print {
  .btn,
  .navbar,
  .footer,
  #nanobar {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Mobile-specific overrides to disable scroll animations */
@media (max-width: 767px) {
    /* Disable all Sal.js animations on mobile */
    [data-sal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    /* Ensure all elements are visible immediately on mobile */
    [data-sal="fade"],
    [data-sal="slide-up"],
    [data-sal="slide-down"],
    [data-sal="slide-left"],
    [data-sal="slide-right"],
    [data-sal="zoom-in"],
    [data-sal="zoom-out"] {
        opacity: 1 !important;
        transform: translateX(0) translateY(0) scale(1) !important;
        visibility: visible !important;
    }
    
    /* Remove any potential scroll-triggered animations */
    * {
        scroll-behavior: auto !important;
    }
    
    /* Disable any custom scroll animations that might exist */
    .animate-on-scroll,
    .scroll-animate,
    .aos-animate {
        animation: none !important;
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
    }
}
