:root {
  --primary-color: #5947e2;
  --secondary-color: #f2a421;
  --accent-color: #00ce85;
  --tertiary-color: #ff444a;
  --quaternary-color: #915ced;
  --light-shade: #f9fafb;
  --dark-shade: #1b212b;
  --text-dark: #2d313d;
  --text-light: #8e919a;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--tertiary-color));
  --gradient-tertiary: linear-gradient(135deg, var(--quaternary-color), var(--primary-color));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-shade);
  padding-top: 77px; /* Account for fixed navbar */
}

.navbar-brand {
  font-size: 1.53rem !important;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../XUY_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.64rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.71rem;
}

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.36rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.section-desc {
  font-size: 1.20rem;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-19px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-light);
  margin-bottom: 1.68rem;
}

/* Services */
.service-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-name {
  font-size: 1.26rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.67rem;
}

.service-price {
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.service-features li::before {
  content: '‚úì';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.52rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.21rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-light);
  font-size: 1.02rem;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 5px solid var(--light-shade);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.56rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* Reviews */
.review-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 13px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  padding: 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  display: none;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #cbcdd3;
  border-radius: 13px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(109, 118, 242, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 13px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: var(--dark-shade);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: #8f96a7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.56rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    text-align: center;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.gallery-item img.loaded {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(89, 101, 226, 0.80);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 10px;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: 'üîç';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Blog */
.blog-item {
  margin-bottom: 2rem;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.67rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Price Plans */
.price-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.price-item:nth-child(2) {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.price-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.price-name {
  font-size: 1.54rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-item:nth-child(2) .price-amount {
  color: white;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #cbcdd3;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 1.37rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.60rem;
}

.process-desc {
  color: var(--text-light);
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.69rem;
}

.timeline-desc {
  color: var(--text-light);
}

/* Career */
.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-title {
  font-size: 1.30rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}

.career-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-desc {
  color: var(--text-light);
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
}

.coreinfo-icon {
  font-size: 2.64rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-size: 1.19rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.58rem;
}

.coreinfo-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Case Studies */
.casestudy-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

.casestudy-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--text-light);
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Breadcrumb Styling */
.breadcrumb-section {
  padding: 1rem 0;
  margin-top: 76px;
}

.breadcrumb-icon {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.29rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 9999;
  border-left: 4px solid var(--primary-color);
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: var(--accent-color);
}

.notification-error {
  border-left-color: var(--tertiary-color);
}

.notification-warning {
  border-left-color: var(--secondary-color);
}

.notification-content {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.22rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 0;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: var(--text-dark);
}

/* Form Validation States */
.form-control.is-invalid {
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 0.2rem rgba(242, 83, 92, 0.25);
}

.form-control.is-valid {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(29, 190, 111, 0.25);
}

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Improved Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .card,
  .service-item,
  .review-item,
  .faq-item,
  .contact-form,
  .price-item,
  .career-item,
  .casestudy-item {
    border: 1px solid var(--text-dark);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .back-to-top,
  .notification {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
} 


/* 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;
}

.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;
    }
}

/* ===============================================
   DISABLE ALL ANIMATIONS AND TRANSITIONS GLOBALLY
   =============================================== */
*, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

/* Force all fade-in elements to be visible */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Disable all transforms on hover */
.card:hover,
.service-item:hover,
.career-item:hover,
.casestudy-item:hover,
.price-item:hover,
.gallery-item:hover img,
.back-to-top:hover,
.social-link:hover {
    transform: none !important;
}

/* Disable notification transforms */
.notification {
    transform: none !important;
}

.notification.show {
    transform: none !important;
}

/* Disable back-to-top button transforms */
.back-to-top {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top.show {
    transform: none !important;
}
