:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-color: #6B73FF;
  --secondary-color: #FF6B9D;
  --accent-color: #4ECDC4;
  --warning-color: #FFA726;
  --success-color: #66BB6A;
  
  /* Light Shades */
  --primary-light: #E8E9FF;
  --secondary-light: #FFE4ED;
  --accent-light: #E6F9F7;
  --warning-light: #FFF3E0;
  --success-light: #E8F5E8;
  
  /* Dark Shades */
  --primary-dark: #3D46CC;
  --secondary-dark: #CC4570;
  --accent-dark: #2B9E95;
  --warning-dark: #CC7A1C;
  --success-dark: #4A8F4E;
  
  /* Neutral Colors */
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
    overflow-x: hidden;
}

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

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  min-height: 100vh;
  padding: 80px 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0.1;
  z-index: -1;
}

.hero-blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  background: var(--accent-color);
}

/* Section Spacing */
.section-padding {
  padding: 60px 0;
}

/* Cards */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Service Cards */
.service-card .card-header {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 15px 15px 0 0;
  text-align: center;
  padding: 1.5rem;
}

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

/* Team Cards */
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
}

/* Price Plans */
.price-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.price-badge {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--primary-light);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

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

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

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

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--primary-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-light);
  color: var(--text-dark);
  padding: 1rem;
  margin: 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  margin: 0;
  background: var(--white);
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.6s ease;
  }
}

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

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

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

/* Case Study Cards */
.case-study-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: -7.5px;
  top: 0;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Career Cards */
.career-card {
  border: 2px solid var(--primary-light);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Info Grid */
.core-info-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

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

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

.bg-accent-light {
  background-color: var(--accent-light);
} 

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


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
