/* Translation & Localization Services - Main CSS */

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-1: #5d6ae3; /* Indigo */
  --primary-2: #00cea3; /* Emerald */
  --primary-3: #ffc600; /* Amber */
  --primary-4: #f83b55; /* Red */
  --primary-5: #8e50ff; /* Violet */
  
  /* Light Shades */
  --primary-1-light: #e6ebf6;
  --primary-2-light: #c4fddc;
  --primary-3-light: #fcfac4;
  --primary-4-light: #f8cec7;
  --primary-5-light: #f1e7ff;
  
  /* Dark Shades */
  --primary-1-dark: #3939a9;
  --primary-2-dark: #117f69;
  --primary-3-dark: #bf6107;
  --primary-4-dark: #a72537;
  --primary-5-dark: #7922e0;
  
  /* Neutral Colors */
  --text-primary: #233543;
  --text-secondary: #666a6e;
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-darker: #b9bfd3;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-1), var(--primary-5));
  --gradient-2: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  --gradient-3: linear-gradient(135deg, var(--primary-4), var(--primary-1));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: 80px;
}

/* 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;
  }
}

/* Conservative font sizes */
h1 { font-size: 2.37rem; font-weight: 700; }
h2 { font-size: 1.91rem; font-weight: 600; }
h3 { font-size: 1.55rem; font-weight: 600; }
h4 { font-size: 1.32rem; font-weight: 500; }
p { font-size: 1rem; line-height: 1.6; }
.navbar-brand { font-size: 1.30rem !important; font-weight: 600; }

/* Header Styles */
.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-1) !important;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../LIY_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: white;
  margin-bottom: 1.56rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.29rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.66rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.feature-card {
  background: rgb(151, 151, 151);
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1.60rem;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: var(--gradient-2);
  color: white;
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section .section-desc {
  color: white;
}

/* Price Plan Section */
.price-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border: 3px solid var(--primary-1);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--primary-1);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.92rem;
  font-weight: 600;
}

.price-amount {
  font-size: 2.64rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Reviews Section */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.69rem;
  color: var(--text-secondary);
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Case Study Section */
.casestudy-section {
  background: var(--gradient-3);
  color: white;
}

.casestudy-section .section-title,
.casestudy-section .section-subtitle,
.casestudy-section .section-desc {
  color: white;
}

.casestudy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Process Section */
.process-item {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.60rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--bg-light);
}

.timeline-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 9px solid var(--primary-2);
  margin-bottom: 1.70rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Career Section */
.career-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.58rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--gradient-1);
  color: white;
}

.coreinfo-section .section-title,
.coreinfo-section .section-subtitle,
.coreinfo-section .section-desc {
  color: white;
}

.coreinfo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

/* Contact Form */
.contact-section {
  background-color: var(--bg-light);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
  padding: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--primary-1);
  font-size: 1.29rem;
}

.form-control {
  border: 2px solid var(--bg-darker);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(104, 107, 218, 0.25);
  outline: none;
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(85, 90, 221, 0.40);
  background: var(--gradient-1);
  color: white;
}

/* FAQ Section */
.faq-card {
  background: white;
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-card .card-header {
  background: transparent;
  border: none;
  padding: 1.5rem;
}

.faq-card .btn-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
}

.faq-card .btn-link:hover {
  color: var(--primary-1);
}

.faq-card .card-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content a {
  color: var(--primary-1);
  text-decoration: none;
  font-weight: 600;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-1-light);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-1-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.56rem;
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--bg-light);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-pattern {
  position: relative;
  overflow: hidden;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f3f4f6' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
}

.bg-pattern > * {
  position: relative;
  z-index: 2;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Form validation styles */
.form-control.is-invalid {
  border-color: var(--primary-4);
}

.form-check-input.is-invalid {
  border-color: var(--primary-4);
}

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
