:root {
  /* Color palette - 5 pastel high-contrast colors */
  --color-primary: #7c5793; /* Purple */
  --color-secondary: #538e94; /* Teal */
  --color-accent: #b69377; /* Bronze */
  --color-light: #F9F4FB; /* Off-white */
  --color-dark: #5e4a60; /* Dark purple */

  /* Shades */
  --color-primary-light: #8e6daf;
  --color-secondary-light: #74a8ad;
  --color-accent-light: #caad9b;
  --color-dark-light: #6b5268;
  
  /* Font sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-medium: 1.25rem;
  --font-size-large: 1.5rem;
  --font-size-xlarge: 2rem;
  --font-size-xxlarge: 2.5rem;
}

/* Base styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

p {
  line-height: 1.6;
  font-size: var(--font-size-base);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header */
.navbar-brand {
  font-size: var(--font-size-medium) !important;
  font-weight: 700;
}

.navbar {
  background-color: var(--color-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
  color: var(--color-dark) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

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

/* Hero section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.hero-section h1 {
  font-size: var(--font-size-xxlarge);
  margin-bottom: 1.5rem;
    padding-top: 200px;
}

.hero-section p {
  font-size: var(--font-size-medium);
  margin-bottom: 2rem;
}

.hero-section .hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: var(--font-size-xlarge);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-medium);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
}

/* About section */
.about-feature {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.about-feature h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-medium);
}

/* Services section */
.services-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.services-item:hover {
  transform: translateY(-5px);
}

.services-item-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.services-item-content {
  padding: 1.5rem;
}

.services-item-name {
  font-size: var(--font-size-medium);
  margin-bottom: 0.75rem;
}

.services-item-price {
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0;
}

.services-item-features {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.services-item-features li {
  margin-bottom: 0.5rem;
}

/* Features section */
.features-item {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.features-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.features-item-name {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* Price Plan section */
.priceplan-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.priceplan-item:hover {
  transform: translateY(-10px);
}

.priceplan-item-header {
  background-color: var(--color-primary);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.priceplan-item-name {
  font-size: var(--font-size-large);
  margin-bottom: 0.5rem;
}

.priceplan-item-price {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  margin-bottom: 0;
}

.priceplan-item-content {
  padding: 2rem;
}

.priceplan-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.priceplan-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

/* Team section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--color-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-name {
  font-size: var(--font-size-medium);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--color-primary);
  font-size: var(--font-size-small);
}

/* Reviews section */
.reviews-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.reviews-item-text:before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  left: -1.5rem;
  top: -2rem;
  opacity: 0.1;
}

.reviews-item-author {
  font-weight: 700;
  color: var(--color-primary);
}

/* Case Study section */
.casestudy-item {
  margin-bottom: 3rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.casestudy-item-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.casestudy-item-content {
  padding: 2rem;
}

.casestudy-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* Process section */
.process-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

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

.process-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

.process-items-container {
  position: relative;
}

.process-connector {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary-light);
  z-index: -1;
}

/* Timeline section */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-primary-light);
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item-content {
  width: 45%;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(odd) .timeline-item-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-item-content {
  margin-left: auto;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.timeline-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* Career section */
.career-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.career-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

.career-item-role {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Core Info section */
.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.coreinfo-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* Contact section */
.contact-section {
  background-color: #fff;
  padding: 4rem 0;
}

.contact-form {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  margin-bottom: 1rem;
}

.contact-info {
  padding-left: 2rem;
}

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

.contact-info-item i {
  margin-right: 1rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}

/* Blog section */
.blog-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.blog-item-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* FAQ section */
.faq-card {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 1px solid #eee;
}

.faq-answer {
  padding: 1.5rem;
  background-color: var(--color-light);
}

/* Gallery section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 0;
  padding-top: 100%;
  position: relative;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

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

.footer-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#site-disclaimer {
  font-size: var(--font-size-small);
  opacity: 0.7;
}

#site-copyright {
  font-size: var(--font-size-small);
  opacity: 0.7;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--color-light);
}

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

/* Button styles */
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

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

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
}

/* Additional page styling */
.additional-section {
  padding: 5rem 0;
}

.additional-section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.additional-section-title {
  font-size: var(--font-size-xlarge);
  margin-bottom: 1rem;
}

.additional-section-subtitle {
  font-size: var(--font-size-medium);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.additional-section-desc {
  max-width: 700px;
  margin: 0 auto;
}

.additional-section-element {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.additional-section-element-title {
  font-size: var(--font-size-medium);
  margin-bottom: 1rem;
}

/* Space page */
#space {
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin: 4rem 0;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

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

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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