/* GLOBAL ANIMATION DISABLE - ADDED TO DISABLE ALL ANIMATIONS */
*, *::before, *::after {
  animation: none !important;
  animation-duration: 0ms !important;
  animation-iteration-count: 1 !important;
  transition: none !important;
  transition-duration: 0ms !important;
  transform: none !important;
  scroll-behavior: auto !important;
}

/* Disable all hover effects */
*:hover {
  transform: none !important;
}

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #71a876;
  --primary-blue: #5ca7fa;
  --primary-orange: #e6a455;
  --primary-purple: #a981f2;
  --primary-teal: #54c892;
  
  /* Light Shades */
  --light-green: #cee1ce;
  --light-blue: #eeeeee;
  --light-orange: #fff2e5;
  --light-purple: #F4F1FC;
  --light-teal: #c4e3dc;
  
  /* Dark Shades */
  --dark-green: #396f50;
  --dark-blue: #38afd5;
  --dark-orange: #d36e2f;
  --dark-purple: #812e94;
  --dark-teal: #2ec283;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #666a6e;
  --dark-gray: #242932;
  --black: #000000;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: 16px;
}

.navbar-brand {
  font-size: 1.56rem;
  font-weight: 700;
  color: var(--primary-green);
}

h1 {
  font-size: 2.57rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.84rem;
}

h3 {
  font-size: 1.60rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.73rem;
}

h4 {
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.65rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Accessibility */
.visually-hidden-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:focus {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0.5rem 1rem !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background: var(--primary-green) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  z-index: 1060 !important;
  border-radius: 0 0 4px 0 !important;
}

/* Respect reduced motion preferences */
@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;
  }
}

/* Header */
.navbar {
  background: var(--white);
  box-shadow: 0 7px 12px rgba(0,0,0,0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(11px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(148, 213, 153, 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--light-gray);
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-7px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.64rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 19px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 17px rgba(0,0,0,0.08);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-card {
  background: var(--white);
  border-radius: 17px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 110px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

.team-role {
  color: var(--primary-blue);
  font-weight: 500;
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Case Study Section */
.case-study-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.53rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  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 Section */
.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Core Info Section */
.coreinfo-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  text-align: center;
}

/* Contact Section */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  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(147, 212, 165, 0.25);
}

.contact-info {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info h4 {
  color: var(--dark-green);
  margin-bottom: 1.65rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.65rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
  color: var(--dark-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray);
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
  margin-top: 76px; /* Account for fixed navbar */
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: linear-gradient(45deg, var(--light-green), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1050;
  font-weight: 500;
  max-width: 300px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: var(--primary-green);
}

.notification-error {
  background: var(--primary-orange);
}

.notification-info {
  background: var(--primary-blue);
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: var(--primary-orange);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23E67E22'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4-1.4 1.4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(238, 149, 34, 0.25);
} 


/* 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;
    }
}
