:root {
  --primary-color: #715ff2;
  --secondary-color: #acaeff;
  --accent-color: #5390e6;
  --success-color: #11beb5;
  --warning-color: #e7b979;
  --light-color: #F8F9FA;
  --dark-color: #161a1d;
  --text-muted: #545c62;
  --border-color: #e9e1ff;
  --bg-light: #F1F3F4;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

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

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

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

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

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  top: 10%;
  right: 10%;
}

.hero-decorative-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  bottom: 20%;
  left: 5%;
}

/* Services Cards */
.service-card {
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
}

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

/* Team Cards */
.team-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(78, 71, 209, 0.10);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border-color);
}

/* Testimonials */
.review-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--border-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(127, 101, 210, 0.15);
}

.price-featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--light-color) 0%, #FAFBFC 100%);
}

/* Contact Form */
.contact-form {
  background: var(--light-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 90, 215, 0.25);
}

/* Footer */
.footer-section {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
}

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

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

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

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Process Timeline */
.process-step {
  background: white;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  position: relative;
}

.process-number {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

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

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

/* Career Cards */
.career-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(105, 76, 209, 0.10);
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-3px);
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
} 

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


/* 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;
    }
}
