:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-lavender: #8b7cc7;
  --primary-mint: #7fbfae;
  --primary-coral: #ff8a80;
  --primary-peach: #ffcc80;
  --primary-sky: #81d4fa;
  
  /* Light/Dark Shades */
  --lavender-light: #b8a8e8;
  --lavender-dark: #6a4c93;
  --mint-light: #a8d8cc;
  --mint-dark: #5a9688;
  --coral-light: #ffb3b3;
  --coral-dark: #e57373;
  --peach-light: #ffe0b3;
  --peach-dark: #ffb74d;
  --sky-light: #b3e5fc;
  --sky-dark: #4fc3f7;
  
  /* System Colors */
  --white: #ffffff;
  --black: #2c2c2c;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
    overflow-x: hidden;
}

/* Image loading styles */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 1;
}

/* Ensure images don't break layout while loading */
img:not([src]) {
  opacity: 0;
}

/* Fallback for failed image loads */
img:not([alt=""]) {
  min-height: 100px;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-lavender);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--mint-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-decorative {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(50%, -50%);
}

.hero-decorative::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.2;
}

/* Services Section */
.services-card {
  background: var(--white);
  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%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.services-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-lavender);
}

.services-features {
  list-style: none;
  padding: 0;
}

.services-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.services-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.team-image {
  height: 250px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.review-rating {
  color: var(--primary-peach);
  font-size: 1.2rem;
}

/* Features Section */
.feature-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  height: 100%;
  text-align: center;
}

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

/* Price Plans */
.priceplan-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.priceplan-featured {
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-dark));
  color: var(--white);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-lavender);
}

.priceplan-featured .priceplan-price {
  color: var(--white);
}

/* Case Studies */
.casestudy-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  height: 100%;
}

.casestudy-image {
  height: 200px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

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

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

/* Timeline */
.timeline-item {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.timeline-year {
  background: var(--primary-sky);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Career Section */
.career-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  height: 100%;
}

.career-role {
  color: var(--primary-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info */
.coreinfo-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  text-align: center;
  height: 100%;
}

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

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

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

.blog-image {
  height: 200px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* FAQ Section */
.faq-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  padding: 1.5rem;
}

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

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

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 0.2rem rgba(139, 124, 199, 0.25);
}

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

.btn-primary:hover {
  background: var(--lavender-dark);
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  height: 250px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

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

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

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Breadcrumb */
.breadcrumb-img {
  height: 50px;
  width: auto;
  background: var(--gray-200);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  padding: 1rem;
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
