:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-blue: #6366f1;
  --primary-blue-light: #a5b4fc;
  --primary-blue-dark: #4338ca;
  
  --primary-green: #10b981;
  --primary-green-light: #6ee7b7;
  --primary-green-dark: #047857;
  
  --primary-purple: #8b5cf6;
  --primary-purple-light: #c4b5fd;
  --primary-purple-dark: #7c3aed;
  
  --primary-orange: #f59e0b;
  --primary-orange-light: #fcd34d;
  --primary-orange-dark: #d97706;
  
  --primary-pink: #ec4899;
  --primary-pink-light: #f9a8d4;
  --primary-pink-dark: #db2777;
  
  /* Neutral Colors */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--neutral-700);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-800);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-800);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-700);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-700);
}

p {
  font-size: 1rem;
  color: var(--neutral-600);
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* Header */
#header {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--neutral-600);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-purple-light) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--neutral-800);
    padding-top: 200px;
}

.hero-title {
  color: var(--neutral-900);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  top: 20%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  bottom: 30%;
  left: 5%;
}

/* About Section */
#about {
  background: var(--neutral-50);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--neutral-200);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* Services Section */
#services {
  background: white;
}

.service-card {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 2px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Features Section */
#features {
  background: var(--neutral-50);
}

/* Price Plan Section */
#priceplan {
  background: white;
}

.price-card {
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.price-period {
  color: var(--neutral-500);
  font-size: 0.875rem;
}

/* Team Section */
#team {
  background: var(--neutral-50);
}

.team-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--neutral-200);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-blue-light);
}

/* Reviews Section */
#reviews {
  background: white;
}

.review-card {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  height: 100%;
}

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--neutral-800);
}

/* Case Studies Section */
#casestudy {
  background: var(--neutral-50);
}

.case-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  height: 100%;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
}

/* Process Section */
#process {
  background: white;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--neutral-50);
}

.timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--neutral-200);
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* Career Section */
#career {
  background: white;
}

.career-card {
  background: var(--neutral-50);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  height: 100%;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-4px);
}

/* Core Info Section */
#coreinfo {
  background: var(--neutral-50);
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--neutral-200);
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

/* Contact Section */
#contact {
  background: white;
}

.contact-form {
  background: var(--neutral-50);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--neutral-200);
}

.form-control {
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info {
  background: var(--primary-blue);
  color: white;
  padding: 3rem;
  border-radius: 16px;
}

.contact-info h4 {
  color: white;
}

.contact-info p {
  color: var(--primary-blue-light);
}

/* Blog Section */
#blog {
  background: var(--neutral-50);
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  background: white;
}

.faq-card {
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-200);
}

.faq-question {
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-600);
  margin: 0;
}

/* Gallery Section */
#gallery {
  background: var(--neutral-50);
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Footer */
#footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 4rem 0 2rem;
}

.footer-brand {
  color: var(--primary-blue-light);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
}

.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)) 1;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
