:root {
  /* Primary Color Palette */
  --primary-green: #44be5a;
  --primary-green-light: #9ace9b;
  --primary-green-dark: #2f972d;
  --secondary-orange: #ff7400;
  --secondary-orange-light: #f29744;
  --secondary-orange-dark: #f86516;
  --accent-blue: #16a4f6;
  --accent-blue-light: #6eabe8;
  --accent-blue-dark: #075bbc;
  --warm-yellow: #ffd000;
  --warm-yellow-light: #f8c95d;
  --warm-yellow-dark: #f49103;
  --neutral-purple: #9732c2;
  --neutral-purple-light: #c35dc8;
  --neutral-purple-dark: #a034b9;
  
  /* Background Colors */
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-dark: #232c2f;
  --text-dark: #323232;
  --text-light: #6d6c6c;
  --text-white: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--warm-yellow));
  --gradient-accent: linear-gradient(135deg, var(--neutral-purple), var(--accent-blue));
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --section-padding: 4rem 0;
}

@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;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.navbar-brand {
  font-size: 1.33rem !important;
  font-weight: 600;
  color: var(--primary-green) !important;
}

.section {
  padding: var(--section-padding);
}

#hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../NAX_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.about-feature {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: var(--bg-white);
  border-radius: 116px;
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-7px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: block;
}

.service-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 13px;
  margin-bottom: 1.60rem;
}

.service-price {
  background: var(--gradient-secondary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 29px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.67rem;
  border: 5px solid var(--primary-green-light);
}

.review-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green-light);
  position: absolute;
  top: -15px;
  left: 20px;
  line-height: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}

.faq-card {
  background: var(--bg-white);
  border-radius: 13px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-header {
  background: var(--gradient-accent);
  color: var(--text-white);
  border-radius: 15px 10px 0 0;
  border: none;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: var(--gradient-primary);
}

.faq-header:focus {
  box-shadow: none;
  outline: 2px solid var(--accent-blue);
}

.faq-body {
  padding: 1rem;
  color: var(--text-light);
  display: none;
}

.faq-body.show {
  display: block;
}

.price-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.00rem;
  font-weight: 600;
}

.price-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  text-align: left;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-light);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.process-step {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-number {
  background: var(--gradient-primary);
  color: var(--text-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 3px solid var(--bg-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.63rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-green);
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-green);
}

.career-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-role {
  background: var(--gradient-secondary);
  color: var(--text-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.59rem;
  display: inline-block;
}

.coreinfo-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.60rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 2.58rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: block;
}

.casestudy-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--accent-blue);
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card-body a:hover {
  color: var(--primary-green-dark);
}

.contact-form {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(75, 154, 73, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

.contact-info {
  background: var(--gradient-accent);
  color: var(--text-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: fit-content;
}

.contact-info i {
  margin-right: 0.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--text-white);
}

.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--primary-green-light);
  margin-bottom: 1rem;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-green-light);
}

footer p {
  color: var(--text-white);
  margin-bottom: 0.71rem;
}

.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-light);
  margin-top: 76px;
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

#space {
  min-height: 70vh;
  background: var(--gradient-primary);
  border-radius: 20px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 2rem;
  font-weight: 600;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.21rem;
  text-align: center;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Additional CSS for Production Ready Features */

/* Navbar scroll effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Form validation styles */
.form-control.is-invalid {
  border-color: #c71d43;
  box-shadow: 0 0 0 0.2rem rgba(238, 44, 86, 0.25);
}

.form-check-input.is-invalid {
  border-color: #c92839;
}

.form-control.is-invalid:focus {
  border-color: #dc3447;
  box-shadow: 0 0 0 0.2rem rgba(217, 32, 44, 0.25);
}

/* Loading states */
.btn-primary:disabled {
  background: #737b88;
  border-color: #778b95;
  cursor: not-allowed;
}

/* Hover effects for gallery */
.gallery-item {
  overflow: hidden;
}

/* Smooth transitions for all interactive elements */
button, .btn, .nav-link, .navbar-brand {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar, .btn, footer {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  .service-card, .team-card, .price-card {
    break-inside: avoid;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
