:root {
  /* Pastel High-Contrast Color Palette */
  --primary-color: #2E8B57; /* Sea Green */
  --secondary-color: #4682B4; /* Steel Blue */
  --accent-color: #DAA520; /* Golden Rod */
  --neutral-color: #708090; /* Slate Gray */
  --highlight-color: #FF6347; /* Tomato */
  
  /* Light shades */
  --primary-light: #90EE90; /* Light Green */
  --secondary-light: #87CEEB; /* Sky Blue */
  --accent-light: #F0E68C; /* Khaki */
  --neutral-light: #D3D3D3; /* Light Gray */
  --highlight-light: #FFB6C1; /* Light Pink */
  
  /* Dark shades */
  --primary-dark: #1F5F3F; /* Dark Sea Green */
  --secondary-dark: #2F4F4F; /* Dark Slate Gray */
  --accent-dark: #B8860B; /* Dark Golden Rod */
  --neutral-dark: #2F2F2F; /* Dark Gray */
  --highlight-dark: #DC143C; /* Crimson */
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
}

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

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

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--highlight-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* Services Section */
.services-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  padding: 2rem;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-5px);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price-tag {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background: var(--neutral-light);
  padding: 5rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Features Section */
.features-section {
  background: white;
  padding: 5rem 0;
}

.feature-card {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  border: 2px solid var(--primary-color);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--secondary-light);
  padding: 5rem 0;
}

.price-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: white;
  padding: 5rem 0;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--neutral-light);
  border-radius: 15px;
  margin-bottom: 2rem;
}

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

/* Reviews Section */
.reviews-section {
  background: var(--accent-light);
  padding: 5rem 0;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Case Studies Section */
.casestudy-section {
  background: white;
  padding: 5rem 0;
}

.case-card {
  background: var(--secondary-light);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Process Section */
.process-section {
  background: var(--neutral-light);
  padding: 5rem 0;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

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

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

/* FAQ Section */
.faq-section {
  background: var(--highlight-light);
  padding: 5rem 0;
}

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

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

/* Contact Section */
.contact-section {
  background: var(--primary-light);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--secondary-color);
  color: white;
  padding: 3rem;
  border-radius: 15px;
}

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

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--accent-light);
  margin-right: 1rem;
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-light);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

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

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

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

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

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

/* Animation Classes for Sal.js */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .sal-animate {
    transition: none !important;
    animation: none !important;
  }
  
  .services-item {
    transition: none;
  }
  
  .services-item:hover {
    transform: none;
  }
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.section-desc {
  color: var(--neutral-dark);
  max-width: 600px;
  margin: 0 auto;
} 


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