/* Color Variables */
:root {
  --primary-color: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #5F3DC4;
  
  --secondary-color: #FD79A8;
  --secondary-light: #FDCB6E;
  --secondary-dark: #E84393;
  
  --accent-color: #00B894;
  --accent-light: #55EFC4;
  --accent-dark: #00A085;
  
  --neutral-color: #636E72;
  --neutral-light: #B2BEC3;
  --neutral-dark: #2D3436;
  
  --background-color: #DDD6FE;
  --background-light: #F8F7FF;
  --background-dark: #C4B5FD;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header Styles */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-color);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero-content h1 {
  color: var(--primary-dark);
  font-size: 2.5rem;
}

.hero-content h2 {
  color: var(--secondary-color);
}

.hero-content p {
  color: var(--neutral-color);
  font-size: 1.1rem;
}

/* Section Styling */
section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--background-light) !important;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.15);
}

.card-img-top {
  border-radius: 0.75rem 0.75rem 0 0;
  height: 200px;
  object-fit: cover;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: var(--neutral-color) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

.display-4 {
  font-size: 2.5rem;
}

.h3 {
  font-size: 1.75rem;
}

.h4 {
  font-size: 1.5rem;
}

.h5 {
  font-size: 1.25rem;
}

.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

.small {
  font-size: 0.9rem;
}

/* Services Section */
.card .card-body ul li {
  margin-bottom: 0.25rem;
}

/* Team Section */
.team img {
  transition: transform 0.3s ease;
}

.team img:hover {
  transform: scale(1.05);
}

/* Gallery Section */
.gallery img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Contact Form */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* Footer */
footer {
  background-color: var(--neutral-dark) !important;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light) !important;
}

/* Process Section */
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* FAQ Section */
.faq .card {
  background-color: var(--background-light);
}

/* Pricing Cards */
.border-primary {
  border-color: var(--primary-color) !important;
}

/* Animation Classes for Sal.js */
.sal-animate {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Breadcrumb Styling */
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
  opacity: 1;
}

/* Utility Classes */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(108, 92, 231, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(108, 92, 231, 0.15) !important;
}

/* Icon Styling */
.fas, .fab {
  color: var(--primary-color);
}

.text-warning .fas {
  color: #FFC107 !important;
}

.text-success .fas {
  color: var(--accent-color) !important;
}

/* Lightbox Customization */
.lb-data .lb-caption {
  font-size: 14px;
  font-weight: 500;
}

/* Hover Effects */
.img-fluid {
  transition: transform 0.3s ease;
}

.rounded:hover {
  transform: scale(1.02);
}

/* Text Selection */
::selection {
  background-color: var(--primary-light);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-light);
  color: white;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Print Styles */
@media print {
  .navbar, footer, .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
} 


/* 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;
    }
}
