:root {
  /* Eco-friendly color palette - 5 primary colors */
  --primary-green: #7cb342;
  --primary-earth: #8d6e63;
  --primary-sky: #81c784;
  --primary-cream: #f1f8e9;
  --primary-forest: #388e3c;
  
  /* Light shades */
  --light-green: #aed581;
  --light-earth: #bcaaa4;
  --light-sky: #a5d6a7;
  --light-cream: #f9fbe7;
  --light-forest: #66bb6a;
  
  /* Dark shades */
  --dark-green: #558b2f;
  --dark-earth: #5d4037;
  --dark-sky: #4caf50;
  --dark-cream: #dcedc8;
  --dark-forest: #2e7d32;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --line-height-base: 1.6;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: var(--line-height-base);
  color: #333;
  background-color: var(--primary-cream);
    overflow-x: hidden;
}

/* Conservative typography sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-forest);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-earth);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-forest);
}

p {
  font-size: var(--font-size-base);
  color: #666;
  margin-bottom: 1rem;
}

/* Header styles */
#header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-link {
  color: var(--primary-forest);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green);
}

/* Hero section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-green);
  top: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-sky);
  bottom: -100px;
  left: -100px;
}

/* Section spacing */
.section {
  padding: 5rem 0;
}

/* About section */
#about {
  background-color: #fff;
}

.feature-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, var(--light-cream) 0%, #fff 100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services section */
#services {
  background-color: var(--light-cream);
}

.service-card {
  border: none;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-top: 1rem;
}

/* Features section */
#features {
  background-color: #fff;
}

.features-grid .card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: var(--light-cream);
  height: 100%;
}

/* Price Plan section */
#priceplan {
  background-color: var(--primary-cream);
}

.price-card {
  border: none;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: #fff;
  height: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
}

/* Team section */
#team {
  background-color: #fff;
}

.team-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Reviews section */
#reviews {
  background-color: var(--light-cream);
}

.review-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: #fff;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
}

/* Case Studies section */
#casestudy {
  background-color: #fff;
}

.case-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: var(--light-cream);
  height: 100%;
}

/* Process section */
#process {
  background-color: var(--primary-cream);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline section */
#timeline {
  background-color: #fff;
}

.timeline-item {
  padding: 1.5rem;
  background: var(--light-cream);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

/* Career section */
#career {
  background-color: var(--light-cream);
}

.career-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: #fff;
  height: 100%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* Core Info section */
#coreinfo {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-cream);
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact section */
#contacts {
  background-color: var(--primary-cream);
}

.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  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(124, 179, 66, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* Blog section */
#blog {
  background-color: #fff;
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  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;
}

/* FAQ section */
#faq {
  background-color: var(--light-cream);
}

.faq-card {
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  margin-bottom: 0;
}

/* Gallery section */
#gallery {
  background-color: #fff;
  padding: 3rem 0;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--primary-forest);
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--light-green);
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--light-green);
}

#site-copyright {
  background-color: var(--dark-forest);
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Utility classes */
.text-primary-green {
  color: var(--primary-green);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-green);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Reduced motion support */
@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;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
