:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-purple: #8B5CF6;
  --primary-green: #10B981;
  --primary-orange: #F59E0B;
  --primary-pink: #EC4899;
  
  /* Light Shades */
  --light-blue: #EBF4FF;
  --light-purple: #F3F0FF;
  --light-green: #ECFDF5;
  --light-orange: #FEF3C7;
  --light-pink: #FCE7F3;
  
  /* Dark Shades */
  --dark-blue: #2563EB;
  --dark-purple: #7C3AED;
  --dark-green: #059669;
  --dark-orange: #D97706;
  --dark-pink: #BE185D;
  
  /* Neutral Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --bg-light: #F9FAFB;
  --border-color: #E5E7EB;
}

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
    overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header */
#header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  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-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  top: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  bottom: -100px;
  left: -100px;
}

/* About Section */
#about {
  padding: 80px 0;
  background: white;
}

.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;
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background: var(--bg-light);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 80px;
  height: 80px;
  background: var(--light-green);
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: block;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Features Section */
#features {
  padding: 80px 0;
  background: white;
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background: var(--bg-light);
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* Team Section */
#team {
  padding: 80px 0;
  background: white;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-purple);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background: var(--bg-light);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid var(--border-color);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* Case Study Section */
#casestudy {
  padding: 80px 0;
  background: white;
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
#process {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background: white;
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* Career Section */
#career {
  padding: 80px 0;
  background: var(--bg-light);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background: white;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.info-card:hover {
  transform: translateY(-5px);
}

/* Contact Section */
#contacts {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background: white;
}

.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%;
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--light-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background: white;
}

.gallery-item {
  background: var(--light-pink);
  border-radius: 12px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Footer */
#footer {
  background: var(--text-primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-link {
  color: #D1D5DB;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* 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;
}

.section-padding {
  padding: 80px 0;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.hero-content {
    padding-top: 275px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
