:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-green: #7ED321;
  --primary-coral: #FF6B6B;
  --primary-purple: #9013FE;
  --primary-amber: #FFB74D;
  
  /* Light Shades */
  --light-blue: #E3F2FD;
  --light-green: #F1F8E9;
  --light-coral: #FFEBEE;
  --light-purple: #F3E5F5;
  --light-amber: #FFF8E1;
  
  /* Dark Shades */
  --dark-blue: #1565C0;
  --dark-green: #388E3C;
  --dark-coral: #D32F2F;
  --dark-purple: #6A1B9A;
  --dark-amber: #F57C00;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --line-height-base: 1.6;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #333;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  padding: 1rem 0;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  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="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* About Section */
#about {
  padding: 5rem 0;
  background-color: var(--light-green);
}

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: #fff;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Features Section */
#features {
  padding: 5rem 0;
  background-color: var(--light-coral);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background-color: #fff;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.price-featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: var(--light-amber);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-amber);
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background-color: #fff;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: none;
}

/* Case Study Section */
#casestudy {
  padding: 5rem 0;
  background-color: var(--light-purple);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  border: none;
}

/* Process Section */
#process {
  padding: 5rem 0;
  background-color: #fff;
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background-color: var(--light-blue);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background-color: #fff;
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: none;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background-color: var(--light-green);
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: none;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background-color: #fff;
}

.contact-form {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background-color: var(--light-coral);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: none;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: #fff;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--light-purple);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  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.1);
}

/* Footer */
#footer {
  background: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

#footer a {
  color: var(--light-blue);
  text-decoration: none;
}

#footer a:hover {
  color: white;
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

/* Form Styles */
.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-blue);
}

.bg-primary-custom {
  background-color: var(--primary-blue);
}

.section-padding {
  padding: 5rem 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  /* No scroll animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .price-card,
  .case-card {
    margin-bottom: 2rem;
  }
} 


/* 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;
    }
}
