:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-green: #2f6d2d;
  --primary-green-light: #6cae74;
  --primary-green-dark: #235f26;
  
  --primary-blue: #1d84bb;
  --primary-blue-light: #66bbf8;
  --primary-blue-dark: #1a58a2;
  
  --primary-orange: #fc620f;
  --primary-orange-light: #ffb548;
  --primary-orange-dark: #d65a0d;
  
  --primary-purple: #8a27ba;
  --primary-purple-light: #a561b2;
  --primary-purple-dark: #340778;
  
  --primary-teal: #006352;
  --primary-teal-light: #4eccca;
  --primary-teal-dark: #004b3e;
  
  /* Background and Text */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #21282b;
  --text-secondary: #768085;
  --text-light: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  --gradient-hero: linear-gradient(135deg, var(--primary-teal-dark), var(--primary-blue-dark));
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Conservative Font Sizes */
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.82rem; font-weight: 600; }
h3 { font-size: 1.51rem; font-weight: 600; }
h4 { font-size: 1.32rem; font-weight: 600; }
h5 { font-size: 1.21rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

/* Header Styles */
.navbar {
  background: var(--bg-primary);
  box-shadow: 0 3px 9px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
    padding-top: 125px;
}

.hero-subtitle {
  font-size: 1.57rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.20rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

/* Services Cards */
.service-card {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-plan {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.price-plan:hover {
  transform: translateY(-5px);
}

.price-plan .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-plan li:last-child {
  border-bottom: none;
}

/* Team */
.team-member {
  text-align: center;
  padding: 1rem;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h5 {
  color: var(--primary-green);
  margin-bottom: 0.67rem;
}

.team-member .role {
  color: var(--text-secondary);
  font-style: italic;
}

/* Reviews */
.review-card {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-card .stars {
  color: var(--primary-orange);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card .author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Case Studies */
.case-study {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.case-study h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.57rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }
.process-step:nth-child(5)::before { content: '5'; }

.process-step h4 {
  margin-top: 4rem;
  color: var(--primary-green);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
}

.timeline-item h4 {
  color: var(--primary-green);
  margin-bottom: 0.66rem;
}

/* Career */
.career-position {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.career-position h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.career-position .role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Core Info */
.core-info-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-primary);
  border-radius: 10px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.core-info-item h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 7px solid #e1e2e2;
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(56, 131, 56, 0.25);
}

.contact-form .btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
}

/* Blog */
.blog-post {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.blog-post h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-post .excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-post .read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-post .read-more:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-item {
  background: var(--bg-primary);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-green);
  color: white;
  padding: 1rem;
  margin: 0;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Gallery */
.gallery-item {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--primary-green-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.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 .copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  opacity: 0.8;
}

/* 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-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  color: white;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

/* Breadcrumb */
.breadcrumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
} 


/* 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;
    }
}
