:root {
  /* Primary colors - pastel high-contrast palette */
  --primary-color-1: #7848a6; /* Purple */
  --primary-color-2: #61b09d; /* Teal */
  --primary-color-3: #f79e94; /* Coral */
  --primary-color-4: #e4c054; /* Yellow */
  --primary-color-5: #6cb8bb; /* Sky blue */
  
  /* Light/dark shades */
  --light-1: #ffffff;
  --light-2: #f8f9fa;
  --light-3: #e4f0ff;
  --dark-1: #383c40;
  --dark-2: #3e4549;
  --dark-3: #5c6066;
  
  /* Font sizes - conservative */
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;
  --fs-hero: 2.5rem;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-1);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--fs-hero);
}

h2 {
  font-size: var(--fs-xxl);
}

h3 {
  font-size: var(--fs-xl);
}

p {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--dark-3);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--primary-color-1);
  opacity: 0.9;
  border-color: var(--primary-color-1);
}

.btn-outline-primary {
  border-color: var(--primary-color-1);
  color: var(--primary-color-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color-1);
  color: white;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--primary-color-1);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: var(--fs-lg);
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--light-2);
}

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

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: var(--primary-color-3);
  opacity: 0.1;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  z-index: 0;
}

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

.feature-card {
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--light-3);
  height: 100%;
}

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

.feature-card h3 {
  margin: 20px 0 15px;
  font-size: var(--fs-lg);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--light-2);
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  background-color: var(--light-1);
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color-1);
  font-size: var(--fs-lg);
  margin: 15px 0;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--dark-3);
}

.service-features li i {
  color: var(--primary-color-2);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  position: relative;
  background-color: var(--light-1);
}

.features-card {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
  height: 100%;
}

.features-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-card h3 {
  margin-bottom: 15px;
  font-size: var(--fs-lg);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-2);
}

.price-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--light-1);
}

.price-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.price-header {
  padding: 25px;
  background-color: var(--primary-color-1);
  color: var(--light-1);
  text-align: center;
}

.price-header h3 {
  color: var(--light-1);
  margin-bottom: 10px;
}

.price-content {
  padding: 25px;
}

.price-value {
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 20px 0;
  text-align: center;
}

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

.price-features li {
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--dark-3);
}

.price-features li i {
  color: var(--primary-color-2);
  margin-right: 10px;
}

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

.team-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--light-1);
}

.team-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-1);
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-2);
}

.review-card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background-color: var(--light-1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  font-size: var(--fs-md);
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--light-3);
  position: absolute;
  top: -10px;
  left: -15px;
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--dark-1);
  font-size: var(--fs-md);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-1);
}

.case-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  background-color: var(--light-1);
}

.case-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.case-image {
  position: relative;
  overflow: hidden;
}

.case-content {
  padding: 25px;
}

.case-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

/* Process Section */
.process-section {
  background-color: var(--light-2);
  position: relative;
}

.process-step {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.process-title {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--light-3);
  z-index: -1;
}

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

.timeline-item {
  padding-left: 30px;
  padding-bottom: 30px;
  position: relative;
  border-left: 2px solid var(--primary-color-1);
  margin-left: 20px;
}

.timeline-item:last-child {
  border-left-color: transparent;
}

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

.timeline-content {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: var(--light-1);
}

.timeline-title {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

/* Career Section */
.career-section {
  background-color: var(--light-2);
}

.career-card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  background-color: var(--light-1);
  transition: all 0.3s ease;
}

.career-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.career-title {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.career-role {
  color: var(--primary-color-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-1);
}

.info-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
  background-color: var(--light-1);
  text-align: center;
}

.info-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.info-title {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

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

.contact-form {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--light-1);
}

.form-control {
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

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

.contact-info {
  padding-left: 30px;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text {
  font-size: var(--fs-md);
}

.contact-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-1);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  background-color: var(--light-1);
}

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

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

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

.faq-card {
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  background-color: var(--light-1);
}

.faq-question {
  font-weight: 600;
  font-size: var(--fs-md);
  margin-bottom: 10px;
  color: var(--dark-1);
}

.faq-answer {
  font-size: var(--fs-sm);
  color: var(--dark-3);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-1);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.gallery-item a {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

/* Footer */
.footer {
  background-color: var(--dark-1);
  padding: 80px 0 30px;
  color: var(--light-2);
}

.footer h4 {
  color: var(--light-1);
  margin-bottom: 25px;
  font-size: var(--fs-lg);
}

.footer-desc {
  color: var(--light-3);
  margin-bottom: 30px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--light-3);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color-1);
  text-decoration: none;
}

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

.copyright {
  font-size: var(--fs-sm);
  color: var(--light-3);
}

.disclaimer {
  font-size: var(--fs-sm);
  color: var(--light-3);
  margin-bottom: 20px;
}

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

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

/* Space Page */
#space {
  min-height: 100vh;
  background-color: var(--light-1);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
} 


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