:root {
  /* Primary color palette - 5 pastel high-contrast colors */
  --primary-blue: #3b82f6;
  --primary-orange: #f97316;
  --primary-green: #10b981;
  --primary-purple: #8b5cf6;
  --primary-red: #ef4444;
  
  /* Light shades */
  --light-blue: #dbeafe;
  --light-orange: #fed7aa;
  --light-green: #d1fae5;
  --light-purple: #e9d5ff;
  --light-red: #fecaca;
  
  /* Dark shades */
  --dark-blue: #1e40af;
  --dark-orange: #ea580c;
  --dark-green: #047857;
  --dark-purple: #7c3aed;
  --dark-red: #dc2626;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --black: #0f172a;
}

/* Conservative typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
    overflow-x: hidden;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--black);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dark-gray);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-gray);
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

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

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

/* Hero section styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
  pointer-events: none;
}

/* Services section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

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

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

/* Features section */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Price plan section */
.priceplan-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-orange);
  transform: scale(1.05);
}

/* Team section */
.team-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.team-card {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-blue);
}

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

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

/* Case studies section */
.casestudy-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.case-card {
  background: var(--light-green);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

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

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Gallery section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.gallery-image {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

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

/* Contact section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-form {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2.5rem;
}

.contact-info {
  padding: 2rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-right: 1rem;
  width: 30px;
}

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Button styles */
.btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  font-weight: 500;
}

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

.btn-outline-primary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

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

/* Decorative shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-orange);
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-purple);
  bottom: 30%;
  left: 5%;
}

/* Animation support with reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Form styles */
.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
} 

.hero-section h1 {
    padding-top: 150px;
}


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

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
