:root {
  /* Primary Color Palette - Eco-friendly theme */
  --primary-green: #4a7c59;
  --primary-green-light: #6b9c7a;
  --primary-green-dark: #2d4a35;
  
  --secondary-earth: #8b7355;
  --secondary-earth-light: #a68b6f;
  --secondary-earth-dark: #5c4a37;
  
  --accent-blue: #5a7ba7;
  --accent-blue-light: #7a9bc7;
  --accent-blue-dark: #3a5b87;
  
  --neutral-gray: #6c7b7f;
  --neutral-gray-light: #8c9b9f;
  --neutral-gray-dark: #4c5b5f;
  
  --highlight-orange: #d4a574;
  --highlight-orange-light: #e4b584;
  --highlight-orange-dark: #b48554;
  
  /* Light/Dark variations */
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --text-light: #ffffff;
  --text-dark: #2c3e50;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

/* Header Styles */
#header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#header .navbar-brand {
  color: var(--text-light);
}

#header .nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

#header .nav-link:hover {
  color: var(--highlight-orange-light);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-light), #e8f5e8);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--accent-blue-light);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

/* Services Section */
#services {
  background: var(--bg-light);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* About Section */
#about {
  background: white;
  padding: 5rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: var(--bg-light);
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team Section */
#team {
  background: var(--bg-light);
  padding: 5rem 0;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-green-light);
}

/* Reviews Section */
#reviews {
  background: white;
  padding: 5rem 0;
}

.review-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

/* FAQ Section */
#faq {
  background: var(--bg-light);
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.faq-answer {
  color: var(--text-dark);
}

/* Gallery Section */
#gallery {
  background: white;
  padding: 5rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

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

/* Contact Section */
#contacts {
  background: var(--primary-green);
  color: var(--text-light);
  padding: 5rem 0;
}

#contacts .form-control {
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

#contacts .btn-primary {
  background: var(--highlight-orange);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

#contacts .btn-primary:hover {
  background: var(--highlight-orange-dark);
}

/* Footer */
#footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

#footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--highlight-orange-light);
}

/* Blog Section */
#blog {
  background: var(--bg-light);
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

/* Process Section */
#process {
  background: white;
  padding: 5rem 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-container {
  counter-reset: step-counter;
}

/* Features Section */
#features {
  background: var(--bg-light);
  padding: 5rem 0;
}

/* Price Plan Section */
#priceplan {
  background: white;
  padding: 5rem 0;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Case Study Section */
#casestudy {
  background: var(--bg-light);
  padding: 5rem 0;
}

.case-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Timeline Section */
#timeline {
  background: white;
  padding: 5rem 0;
}

.timeline-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

/* Career Section */
#career {
  background: var(--bg-light);
  padding: 5rem 0;
}

.career-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Core Info Section */
#coreinfo {
  background: white;
  padding: 5rem 0;
}

.info-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

.text-primary-green {
  color: var(--primary-green);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 2rem 0;
  background: var(--bg-light);
}

.breadcrumb-container img {
  max-height: 30px;
  width: auto;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
