:root {
  /* Primary color palette - pastel high-contrast colors */
  --primary-green: #85c76e;
  --primary-blue: #4095cc;
  --primary-orange: #f4ab56;
  --primary-purple: #b88dcd;
  --primary-teal: #52b7b4;
  
  /* Light/dark shades */
  --light-green: #a2c39d;
  --dark-green: #5c8950;
  --light-blue: #72b4dc;
  --dark-blue: #5186cf;
  --light-orange: #feb36f;
  --dark-orange: #fd8a1a;
  --light-purple: #e6d3ea;
  --dark-purple: #9769b6;
  --light-teal: #65b4a2;
  --dark-teal: #269248;
  
  /* Conservative typography */
  --font-size-small: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-padding: 2rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header font size reduction for all pages */
.navbar-nav .nav-link {
  font-size: 10px !important;
}

.navbar-brand {
  font-size: 10px !important;
}

/* Disable horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Conservative typography adjustments */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #1f1f1f;
}

h1 {
  font-size: var(--font-size-xxl);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: 0.93rem;
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: 0.67rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Navbar brand conservative sizing */
.navbar-brand {
    font-size: 10px !important;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Section spacing */
.section {
  padding: var(--section-padding);
}

/* Card styles */
.custom-card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service cards */
.service-card {
  background: white;
  padding: var(--card-padding);
  text-align: center;
}

.service-card i {
  font-size: 2.53rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--dark-green);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-orange);
}

/* Feature cards */
.feature-card {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  color: white;
  padding: var(--card-padding);
  text-align: center;
}

.feature-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Price plan cards */
.price-card {
  background: white;
  padding: var(--card-padding);
  text-align: center;
  border: 2px solid var(--light-green);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 2.59rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team cards */
.team-card {
  background: white;
  padding: var(--card-padding);
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-green);
}

/* Review cards */
.review-card {
  background: var(--light-teal);
  padding: var(--card-padding);
  border-radius: 1rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-teal);
  line-height: 1;
}

/* Process cards */
.process-card {
  background: white;
  padding: var(--card-padding);
  text-align: center;
  border-radius: 1rem;
  border-top: 4px solid var(--primary-purple);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline cards */
.timeline-card {
  background: linear-gradient(135deg, var(--light-orange), var(--light-purple));
  color: white;
  padding: var(--card-padding);
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-orange);
  border-radius: 50%;
}

/* FAQ cards */
.faq-card {
  background: white;
  padding: var(--card-padding);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.65rem;
}

.faq-answer {
  color: #776e6d;
}

/* Contact form */
.contact-form {
  background: var(--light-green);
  padding: var(--card-padding);
  border-radius: 1rem;
}

.contact-form .form-control {
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.contact-form .btn {
  background: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
}

.contact-form .btn:hover {
  background: var(--dark-green);
}

/* Gallery images */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-green);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Utility classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }

/* Blog cards */
.blog-card {
  background: white;
  padding: var(--card-padding);
  border-radius: 0.75rem;
  border: 1px solid #f1f6f8;
}

.blog-card h3 {
  color: var(--dark-blue);
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* Career cards */
.career-card {
  background: white;
  padding: var(--card-padding);
  border-radius: 0.75rem;
  border: 2px solid var(--light-purple);
}

.career-card h3 {
  color: var(--primary-purple);
}

.career-role {
  color: var(--dark-purple);
  font-weight: 500;
}

/* Core info cards */
.coreinfo-card {
  background: linear-gradient(135deg, var(--light-blue), var(--light-teal));
  color: white;
  padding: var(--card-padding);
  text-align: center;
  border-radius: 1rem;
}

.coreinfo-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Case study cards */
.casestudy-card {
  background: white;
  padding: var(--card-padding);
  border-radius: 0.75rem;
  border-top: 4px solid var(--primary-teal);
}

.casestudy-card h3 {
  color: var(--primary-teal);
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
