:root {
  /* Color Palette - Pastel high-contrast colors for professional mentoring theme */
  --primary-blue: #4187cf;
  --primary-green: #63c31b;
  --primary-purple: #7421f5;
  --primary-orange: #f9b81b;
  --primary-teal: #47d8ba;
  
  /* Light shades */
  --light-blue: #e7ecf3;
  --light-green: #d8eac6;
  --light-purple: #fdfbff;
  --light-orange: #fffdf0;
  --light-teal: #f5fffb;
  
  /* Dark shades */
  --dark-blue: #29619c;
  --dark-green: #5eaf16;
  --dark-purple: #5502bb;
  --dark-orange: #be9327;
  --dark-teal: #52ceb2;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #5d6469;
  --dark-gray: #343b42;
  --black: #000000;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.5;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect prefers-reduced-motion */
@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;
  }
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: var(--font-size-lg);
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.service-image {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-price {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-orange) 100%);
}

/* Price Plan Section */
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

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

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

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

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

/* Team Section */
.team-section {
  background-color: var(--light-gray);
}

.team-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid var(--primary-teal);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.review-author {
  font-weight: 600;
  color: var(--dark-blue);
}

/* Case Studies Section */
.casestudy-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-teal) 100%);
}

.casestudy-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-step {
  background: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-blue);
}

.process-card {
  text-align: center;
  padding: 2rem 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-gray);
}

.timeline-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-purple);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Career Section */
.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-purple) 100%);
}

.coreinfo-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 15px;
  padding: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-teal);
}

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

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

.blog-image {
  height: 200px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.faq-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray);
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-blue) 100%);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  background: var(--light-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 2rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  background: var(--primary-blue);
  border-radius: 4px;
}

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

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

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

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

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

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
