:root {
  /* Eco-friendly color palette - 5 primary colors with light/dark shades */
  --eco-primary: #2d5016;
  --eco-primary-light: #4a7c2a;
  --eco-primary-dark: #1a300d;
  
  --eco-secondary: #8fbc8f;
  --eco-secondary-light: #b8d4b8;
  --eco-secondary-dark: #6b9a6b;
  
  --eco-accent: #f0f8e8;
  --eco-accent-light: #f8fcf4;
  --eco-accent-dark: #e8f4dc;
  
  --eco-earth: #8b7355;
  --eco-earth-light: #a89177;
  --eco-earth-dark: #6e5a44;
  
  --eco-sky: #87ceeb;
  --eco-sky-light: #b3ddf2;
  --eco-sky-dark: #5bb3d9;
  
  /* Typography - Conservative font sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--eco-primary-dark);
  background-color: var(--eco-accent);
    overflow-x: hidden;
}

/* Conservative typography */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--eco-primary);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--eco-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--eco-primary);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--eco-primary-dark);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--eco-primary-dark);
  margin-bottom: 0.5rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  color: var(--eco-primary-dark);
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  color: var(--eco-primary-dark);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--eco-primary-dark);
}

/* Header styles */
#header {
  background-color: var(--eco-accent);
  border-bottom: 2px solid var(--eco-secondary-light);
  padding: 0.5rem 0;
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-nav .nav-link {
  color: var(--eco-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-primary-light);
}

/* Hero section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-accent) 0%, var(--eco-secondary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  background-color: var(--eco-secondary);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* Section styling */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--eco-secondary-dark);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* About section */
#about {
  background-color: #fff;
}

.feature-card {
  background-color: var(--eco-accent);
  border: 1px solid var(--eco-secondary-light);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--eco-primary);
  margin-bottom: 1rem;
}

/* Services section */
#services {
  background-color: var(--eco-accent-light);
}

.service-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 80, 22, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--eco-primary);
  margin-top: 1rem;
}

/* Features section */
#features {
  background-color: #fff;
}

/* Price Plan section */
#priceplan {
  background-color: var(--eco-accent);
}

.price-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--eco-primary);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-primary);
  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(--eco-secondary-light);
}

/* Team section */
#team {
  background-color: var(--eco-accent-light);
}

.team-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--eco-secondary-light);
}

/* Reviews section */
#reviews {
  background-color: #fff;
}

.review-card {
  background-color: var(--eco-accent);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--eco-primary);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 600;
  color: var(--eco-primary);
}

/* Case Studies section */
#casestudy {
  background-color: var(--eco-accent-light);
}

.case-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
}

/* Process section */
#process {
  background-color: #fff;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--eco-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline section */
#timeline {
  background-color: var(--eco-accent);
}

.timeline-item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--eco-primary);
}

/* Career section */
#career {
  background-color: var(--eco-accent-light);
}

.career-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
}

/* Core Info section */
#coreinfo {
  background-color: #fff;
}

.info-card {
  background-color: var(--eco-accent);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--eco-secondary-light);
}

/* Contact section */
#contact {
  background-color: var(--eco-accent-light);
}

.contact-form {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 3rem;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
}

.form-control {
  border: 2px solid var(--eco-secondary-light);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--eco-primary);
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

.btn-primary {
  background-color: var(--eco-primary);
  border-color: var(--eco-primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.btn-primary:hover {
  background-color: var(--eco-primary-dark);
  border-color: var(--eco-primary-dark);
}

/* Blog section */
#blog {
  background-color: #fff;
}

.blog-card {
  background-color: var(--eco-accent);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--eco-secondary-light);
}

/* FAQ section */
#faq {
  background-color: var(--eco-accent);
}

.faq-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--eco-primary);
  margin-bottom: 1rem;
}

/* Gallery section */
#gallery {
  background-color: var(--eco-accent-light);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--eco-primary-dark);
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--eco-secondary-light);
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--eco-secondary-light);
}

.footer-bottom {
  border-top: 1px solid var(--eco-earth-dark);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb styling */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility classes */
.text-eco-primary { color: var(--eco-primary); }
.text-eco-secondary { color: var(--eco-secondary-dark); }
.bg-eco-accent { background-color: var(--eco-accent); }
.bg-eco-light { background-color: var(--eco-accent-light); } 

.hero-content {
    padding-top: 275px;
}


/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
