@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css');

:root {
  /* 5-color pastel palette */
  --primary-color: #a8dadc;
  --secondary-color: #f1faee;
  --accent-color: #e63946;
  --neutral-light: #457b9d;
  --neutral-dark: #1d3557;
  
  /* Light/dark shades */
  --primary-light: #c7e9eb;
  --primary-dark: #89c5c8;
  --secondary-light: #ffffff;
  --secondary-dark: #e8f2ec;
  --accent-light: #ff4757;
  --accent-dark: #d32f2f;
  --neutral-light-shade: #5a8fb0;
  --neutral-dark-shade: #0f1a2e;
}

/* Conservative typography - no large sizes */
.navbar-brand {
  font-size: 1.1rem !important;
}

h1 {
  font-size: 2rem;
}

.hero-title {
  font-size: 2.5rem;
    padding-top: 150px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hero section styles */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Section spacing */
.section-padding {
  padding: 4rem 0;
}

/* Service cards */
.service-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Feature cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--secondary-color);
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--neutral-light);
  margin-bottom: 1rem;
}

/* Team member cards */
.team-card {
  text-align: center;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Testimonial cards */
.testimonial-card {
  border-left: 4px solid var(--accent-color);
  background: var(--secondary-light);
  height: 100%;
}

/* FAQ cards */
.faq-card {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  color: var(--neutral-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Gallery styles */
.gallery-item {
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Timeline items */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Contact form */
.contact-form {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info {
  background: var(--neutral-dark);
  color: white;
  padding: 2rem;
  border-radius: 8px;
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--secondary-light);
}

/* Blog cards */
.blog-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* Case study cards */
.casestudy-card {
  background: var(--secondary-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--neutral-light);
  height: 100%;
}

/* Career cards */
.career-card {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

/* Core info cards */
.coreinfo-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: 8px;
  height: 100%;
}

.coreinfo-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Price plan cards */
.priceplan-card {
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.priceplan-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Navbar scroll styles */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb styles */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--secondary-color);
  margin-top: 76px; /* Account for fixed navbar */
}

.breadcrumb img {
  height: 24px;
  width: auto;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
