:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-blue: #6366f1;
  --primary-purple: #8b5cf6;
  --primary-teal: #14b8a6;
  --primary-pink: #ec4899;
  --primary-orange: #f59e0b;
  
  /* Light shades */
  --light-blue: #e0e7ff;
  --light-purple: #f3f4f6;
  --light-teal: #f0fdfa;
  --light-pink: #fdf2f8;
  --light-orange: #fef3c7;
  
  /* Dark shades */
  --dark-blue: #312e81;
  --dark-purple: #581c87;
  --dark-teal: #134e4a;
  --dark-pink: #831843;
  --dark-orange: #92400e;
  
  /* Typography */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* General styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-blue);
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-blue);
}

p {
  font-size: 1rem;
  color: #6b7280;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 175px;
}

/* Services Section */
.services-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.services-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

/* Features Section */
.features-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-teal);
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Reviews Section */
.review-card {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-purple);
}

.faq-question {
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #6b7280;
}

/* Price Plan Section */
.price-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-featured {
  border: 2px solid var(--primary-purple);
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-medium);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-medium);
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Section spacing */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--light-blue);
}

.section-bg-white {
  background-color: white;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-blue);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-blue);
  padding: 2rem 0;
}

.breadcrumb-img {
  height: 30px;
  width: auto;
}

/* Process/Timeline items */
.process-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-orange);
}

.timeline-item {
  background: var(--light-teal);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-teal);
  border-radius: 50%;
}

/* Career items */
.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-pink);
}

/* Core info items */
.coreinfo-item {
  background: var(--light-pink);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Case study items */
.casestudy-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Blog items */
.blog-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .hero-section::after {
    animation: none;
  }
  
  .services-card,
  .team-card,
  .price-card {
    transition: none;
  }
  
  .services-card:hover,
  .team-card:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Navbar scroll effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand {
  color: var(--primary-blue) !important;
}

.navbar-scrolled .navbar-nav .nav-link {
  color: #374151 !important;
}

.navbar-scrolled .navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Form validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Fade-in animation for lazy loading */
.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lazy {
  opacity: 0;
}

/* Notification styles */
.notification {
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Utility classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-pink { color: var(--primary-pink); }
.text-primary-orange { color: var(--primary-orange); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-pink { background-color: var(--primary-pink); }
.bg-primary-orange { background-color: var(--primary-orange); } 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
