:root {
  /* Primary Color Palette - High contrast pastels */
  --primary-green: #3fae53;
  --primary-orange: #f87f09;
  --primary-blue: #23a2e4;
  --primary-purple: #9921a0;
  --primary-red: #ff434b;
  
  /* Light shades */
  --light-green: #fafbfa;
  --light-orange: #ece4d5;
  --light-blue: #bcd6e8;
  --light-purple: #e7dee9;
  --light-red: #ffdbe2;
  
  /* Dark shades */
  --dark-green: #27933a;
  --dark-orange: #f55412;
  --dark-blue: #106fcd;
  --dark-purple: #7830af;
  --dark-red: #dc4442;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --gray: #a8a8a8;
  --dark-gray: #4a4a4a;
  --black: #0e0e0e;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Conservative heading sizes */
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.89rem; font-weight: 600; }
h3 { font-size: 1.57rem; font-weight: 600; }
h4 { font-size: 1.35rem; font-weight: 500; }
h5 { font-size: 1.15rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/* Header styles */
.navbar-brand {
  font-size: 1.28rem !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 50%, var(--light-orange) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--light-purple);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(45deg);
}

/* Section spacing */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  margin-bottom: 1.70rem;
  color: var(--dark-gray);
}

.section-description {
  margin-bottom: 3rem;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 19px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 19px 40px rgba(0,0,0,0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
  border: none;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Services section */
.services-item {
  background: var(--white);
  margin-bottom: 2rem;
}

.services-item .card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.price-tag {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Features section */
.features-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: background 0.3s ease;
}

.features-item:hover {
  background: var(--light-green);
}

.features-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-green);
}

/* Reviews section */
.reviews-item {
  background: var(--white);
  padding: 2rem;
  border-left: 5px solid var(--primary-blue);
  margin-bottom: 2rem;
}

.reviews-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* FAQ section */
.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--light-green);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-green);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: none;
}

/* Contact form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 20px;
}

.form-control {
  border: 7px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(83, 155, 76, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Blog section */
.blog-item {
  margin-bottom: 2rem;
}

.blog-item .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-green);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-green);
}

.timeline-item:last-child::after {
  display: none;
}

/* Process steps */
.process-item {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Career items */
.career-item {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

/* Core info items */
.coreinfo-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-purple);
}

/* Case study items */
.casestudy-item {
  background: var(--light-orange);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

/* Price plan items */
.priceplan-item {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

.priceplan-price {
  font-size: 2.51rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  height: 30px;
  width: auto;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue)) !important;
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red)) !important;
}

/* Image placeholders */
img {
  max-width: 100%;
  height: auto;
}

.img-placeholder {
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.97rem;
  min-height: 200px;
}

/* Animation classes for scroll animations */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled .navbar-brand {
  color: var(--primary-green) !important;
}

.navbar.scrolled .nav-link {
  color: var(--dark-gray) !important;
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}

/* Accessibility enhancements */
.keyboard-focus {
  outline: 3px solid var(--primary-blue) !important;
  outline-offset: 2px !important;
}

.using-mouse .btn:focus,
.using-mouse .nav-link:focus,
.using-mouse .form-control:focus,
.using-mouse .faq-question:focus {
  outline: none !important;
}

.using-keyboard .btn:focus,
.using-keyboard .nav-link:focus,
.using-keyboard .form-control:focus,
.using-keyboard .faq-question:focus {
  outline: 3px solid var(--primary-blue) !important;
  outline-offset: 2px !important;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced focus states for better accessibility */
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Active navigation styling */
.nav-link.active {
  color: var(--primary-green) !important;
  font-weight: 600;
}

/* FAQ active state */
.faq-question.active {
  background: var(--primary-green) !important;
  color: var(--white) !important;
}

/* Animation performance improvements */
@media (prefers-reduced-motion: no-preference) {
  .animate-element {
    will-change: transform, opacity;
  }
  
  .animate-element.animate-in {
    will-change: auto;
  }
} 


/* 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);
}

.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;
    }
}
