:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --primary-teal: #14B8A6;
  --primary-orange: #F59E0B;
  --primary-pink: #EC4899;
  
  /* Light Shades */
  --light-purple: #F3F4F6;
  --light-blue: #EFF6FF;
  --light-teal: #F0FDFA;
  --light-orange: #FFFBEB;
  --light-pink: #FDF2F8;
  
  /* Dark Shades */
  --dark-purple: #5B21B6;
  --dark-blue: #1E40AF;
  --dark-teal: #0F766E;
  --dark-orange: #D97706;
  --dark-pink: #BE185D;
  
  /* Typography */
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #374151;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
}

h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--dark-purple);
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--dark-blue);
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header */
#header {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--primary-purple);
}

.navbar-nav .nav-link {
  color: var(--dark-purple);
  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(--light-purple) 0%, var(--light-teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-purple);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(15deg);
}

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

/* About Section */
#about {
  background: var(--light-blue);
  padding: 80px 0;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

/* Services Section */
#services {
  background: white;
  padding: 80px 0;
}

.service-card {
  background: var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
}

/* Features Section */
#features {
  background: var(--light-teal);
  padding: 80px 0;
}

/* Price Plan Section */
#priceplan {
  background: white;
  padding: 80px 0;
}

.price-card {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--primary-blue);
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-purple);
  background: var(--light-purple);
  transform: scale(1.05);
}

/* Team Section */
#team {
  background: var(--light-orange);
  padding: 80px 0;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

/* Reviews Section */
#reviews {
  background: var(--light-pink);
  padding: 80px 0;
}

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

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  background: white;
  padding: 80px 0;
}

.case-card {
  background: var(--light-teal);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-teal);
}

/* Process Section */
#process {
  background: var(--light-blue);
  padding: 80px 0;
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

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

/* Timeline Section */
#timeline {
  background: var(--light-purple);
  padding: 80px 0;
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-purple);
}

/* Career Section */
#career {
  background: white;
  padding: 80px 0;
}

.career-card {
  background: var(--light-orange);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
#coreinfo {
  background: var(--light-teal);
  padding: 80px 0;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* Contact Section */
#contact {
  background: white;
  padding: 80px 0;
}

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

.form-control {
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.btn-primary {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Blog Section */
#blog {
  background: var(--light-pink);
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background: white;
  padding: 80px 0;
}

.faq-card {
  background: var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-purple);
}

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

.faq-answer {
  color: #6B7280;
}

/* Gallery Section */
#gallery {
  background: var(--light-teal);
  padding: 80px 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background: var(--dark-purple);
  color: white;
  padding: 60px 0 20px;
}

#footer h5 {
  color: var(--light-purple);
  margin-bottom: 1.5rem;
}

#footer a {
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #6B7280;
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.section-desc {
  color: #9CA3AF;
  max-width: 600px;
  margin: 0 auto;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.decorative-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

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


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