/* Import Bootstrap 5 and required libraries */
@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');

/* Color Variables - Pastel High-Contrast Palette */
:root {
  --primary-color: #6879ff;
  --primary-light: #8799e3;
  --primary-dark: #4424bd;
  --secondary-color: #0ea289;
  --secondary-light: #6bf3ac;
  --secondary-dark: #118350;
  --accent-color: #f28909;
  --accent-light: #f1c23a;
  --accent-dark: #d48b0b;
  --neutral-color: #7e8395;
  --neutral-light: #f3f4f6;
  --neutral-dark: #37404d;
  --success-color: #22cf9b;
  --warning-color: #f8a900;
  --danger-color: #e94b59;
  --info-color: #2656ed;
  --light-color: #f8fafc;
  --dark-color: #161a25;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

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

.hero-decorative {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: -150px;
  right: -150px;
}

.hero-decorative:nth-child(2) {
  bottom: -150px;
  left: -150px;
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Services Section */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--neutral-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-color);
  margin-top: 15px;
}

/* Features Section */
.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Price Plan Section */
.price-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--neutral-light);
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

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

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-card {
  text-align: center;
  padding: 20px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-light);
}

/* Reviews Section */
.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.review-stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 15px;
}

/* Case Study Section */
.casestudy-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid var(--neutral-light);
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Timeline Section */
.timeline-item {
  padding: 20px;
  border-left: 3px solid var(--primary-color);
  margin-left: 20px;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: -9px;
  top: 25px;
}

/* Career Section */
.career-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--neutral-light);
  height: 100%;
}

/* Core Info Section */
.coreinfo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--neutral-light);
  height: 100%;
  text-align: center;
}

.coreinfo-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(88, 106, 224, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Blog Section */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--neutral-light);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 25px;
}

/* FAQ Section */
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--neutral-light);
  margin-bottom: 20px;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

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

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

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-section h5 {
  color: var(--primary-light);
  margin-bottom: 20px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--neutral-color);
  padding-top: 20px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 20px 0;
  background: var(--light-color);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-light-custom {
  background-color: var(--light-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

/* Animation-ready classes for Sal.js */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .sal-animate {
    transition-duration: 0.01ms !important;
  }
} 

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


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

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
