:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-color: #6B73FF;
  --primary-light: #9BA3FF;
  --primary-dark: #4A52CC;
  
  --secondary-color: #FF9F7A;
  --secondary-light: #FFB396;
  --secondary-dark: #CC7F61;
  
  --accent-color: #7AFFD6;
  --accent-light: #96FFE0;
  --accent-dark: #61CCAB;
  
  --neutral-color: #F5F7FA;
  --neutral-light: #FFFFFF;
  --neutral-dark: #E1E5E9;
  
  --text-color: #2D3748;
  --text-light: #4A5568;
  --text-dark: #1A202C;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--neutral-light);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
  color: var(--primary-color);
}

/* Section Spacing */
section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

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

.hero-content h1 {
  color: white;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

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

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

/* Cards */
.custom-card {
  background: var(--neutral-light);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-card .card-body {
  padding: var(--spacing-lg);
}

.custom-card .card-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.custom-card .card-text {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* Services Items */
.service-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-top: var(--spacing-sm);
}

/* Team Photos */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
}

/* Contact Form */
.contact-form {
  background: var(--neutral-color);
  padding: var(--spacing-xl);
  border-radius: 12px;
}

.contact-form .form-control {
  border: 2px solid var(--neutral-dark);
  border-radius: 8px;
  padding: var(--spacing-sm);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
}

.contact-form .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer h5 {
  color: var(--accent-color);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-sm);
}

.footer a:hover {
  color: var(--accent-color);
}

/* Gallery */
.gallery-item {
  margin-bottom: var(--spacing-md);
  border-radius: 8px;
  overflow: hidden;
}

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

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

/* FAQ Cards */
.faq-card {
  background: var(--neutral-light);
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--spacing-md);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: var(--spacing-sm) 0;
  background-color: var(--neutral-color);
}

.breadcrumb-nav img {
  height: 24px;
  width: auto;
}

/* Blog Grid */
.blog-item {
  margin-bottom: var(--spacing-lg);
}

.blog-item .card-img-top {
  height: 200px;
  object-fit: cover;
}


  
  .custom-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

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

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

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

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


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