:root {
  /* Primary Color Palette */
  --primary-color: #458c45;      /* Green - primary brand color */
  --secondary-color: #7bc463;    /* Light green - secondary brand color */
  --accent-color: #efc752;       /* Yellow - accent color */
  --dark-color: #202c3e;         /* Dark blue-gray - text and dark elements */
  --light-color: #F7F9FB;        /* Off-white - backgrounds and light elements */
  
  /* Shades and Tints */
  --primary-light: #4c9d5f;
  --primary-dark: #326a3c;
  --secondary-light: #7ebe5d;
  --secondary-dark: #67a95c;
  --accent-light: #ffc56a;
  --accent-dark: #e8a517;
  
  /* Text Colors */
  --text-dark: #484241;
  --text-light: #FFFFFF;
  --text-muted: #686a6d;
  
  /* Other Variables */
  --section-padding: 5rem 0;
  --card-border-radius: 0.5rem;
  --transition-speed: 0.3s;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

section {
  padding: var(--section-padding);
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

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

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-dark);
}

/* Header Styles */
.navbar {
  padding: 1rem 0;
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color var(--transition-speed);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 1;
    padding-top: 125px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-description {
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-img-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Section */
.about {
  background-color: var(--light-color);
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  transition: transform var(--transition-speed);
  height: 100%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

/* Services Section */
.services {
  background-color: #fff;
}

.service-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed);
  margin-bottom: 2rem;
  height: 100%;
  background-color: var(--light-color);
}

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

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

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.service-features {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

/* Features Section */
.features {
  background-color: var(--light-color);
}

.feature-item {
  margin-bottom: 2rem;
}

.feature-item-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.price-plan {
  background-color: #fff;
}

.price-card {
  padding: 2rem;
  border-radius: var(--card-border-radius);
  background-color: var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform var(--transition-speed);
}

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

.price-card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

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

.price-features {
  margin-bottom: 1.5rem;
}

/* Team Section */
.team {
  background-color: var(--light-color);
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-name {
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--text-muted);
}

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

.review-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--card-border-radius);
  background-color: var(--light-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-author {
  font-weight: 600;
  margin-top: 1rem;
}

/* Case Studies Section */
.case-studies {
  background-color: var(--light-color);
}

.case-study-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.case-study-content {
  padding: 1.5rem;
}

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

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Section */
.timeline {
  background-color: var(--light-color);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
  border-left: 2px solid var(--primary-color);
}

.timeline-date {
  position: absolute;
  left: -0.75rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Career Section */
.career {
  background-color: #fff;
}

.job-card {
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  background-color: var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
}

.job-title {
  margin-bottom: 0.5rem;
}

.job-role {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Core Info Section */
.core-info {
  background-color: var(--light-color);
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

.contact-form {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info-icon {
  margin-right: 1rem;
  width: 1.5rem;
  color: var(--primary-color);
}

/* Blog Section */
.blog {
  background-color: var(--light-color);
}

.blog-card {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  background-color: #fff;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-title {
  margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq {
  background-color: #fff;
}

.faq-card {
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  background-color: var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-color);
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer Section */
.footer {
  background-color: var(--accent-light);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.8;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity var(--transition-speed);
}

.footer-link a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.site-copyright {
  color: var(--text-light);
  opacity: 0.6;
}

.site-disclaimer {
  color: var(--text-light);
  opacity: 0.6;
}

/* Additional Pages */
.breadcrumb-section {
  background-color: var(--primary-light);
  padding: 2rem 0;
  color: var(--text-light);
}

.breadcrumb-image {
  max-height: 50px;
}

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


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