@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://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #4d88f5;
  --secondary-color: #91cc31;
  --accent-color: #ffd22c;
  --neutral-color: #a5a5a5;
  --danger-color: #dd1513;
  
  /* Light/Dark Shades */
  --primary-light: #e9edf1;
  --primary-dark: #1e7ad4;
  --secondary-light: #d9e8cd;
  --secondary-dark: #479b47;
  --accent-light: #fff6df;
  --accent-dark: #fd3000;
  --neutral-light: #F5F5F5;
  --neutral-dark: #363232;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
}

/* Base Typography */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

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

/* Conservative navbar brand sizing */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Service Items */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Team Member Cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
}

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

.faq-answer {
  color: var(--neutral-dark);
}

/* Contact Form */
.contact-form {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 12px 16px;
}

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

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 3rem 0 2rem;
}

footer h5 {
  color: var(--primary-color);
}

footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

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

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
  
  .gallery-item img {
    transition: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-step:before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* Timeline Items */
.timeline-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-color);
}

/* Career Items */
.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--neutral-light);
}

/* Case Study Items */
.casestudy-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Core Info Items */
.coreinfo-item {
  background: var(--primary-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Price Plan Items */
.priceplan-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--neutral-light);
  height: 100%;
}

.priceplan-item.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

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

/* Blog Items */
.blog-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Feature Items */
.feature-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

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

/* About Features */
.about-feature {
  background: var(--secondary-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--neutral-light);
  border-radius: 12px;
  margin: 2rem 0;
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
