:root {
  /* Primary Color Palette */
  --primary-color-1: #6a98f0;  /* Soft blue */
  --primary-color-1-light: #8eaef5;
  --primary-color-1-dark: #4a78d0;
  
  --primary-color-2: #f092b0;  /* Soft pink */
  --primary-color-2-light: #f5b7cd;
  --primary-color-2-dark: #e06a93;
  
  --primary-color-3: #9de0a6;  /* Mint green */
  --primary-color-3-light: #baebc0;
  --primary-color-3-dark: #7fc58a;
  
  --primary-color-4: #f2d09a;  /* Soft yellow */
  --primary-color-4-light: #f8e0bc;
  --primary-color-4-dark: #e9b868;
  
  --primary-color-5: #b6a8e8;  /* Lavender */
  --primary-color-5-light: #d0c7f0;
  --primary-color-5-dark: #9c89e0;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #343a40;
  --black: #212529;
  
  /* Font sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.8rem;
  --h3-size: 2.3rem;
  --h4-size: 1.8rem;
  --h5-size: 1.5rem;
  --h6-size: 1.2rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  margin-bottom: 1rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color-1);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  position: relative;
}

.hero-slide {
  padding: 9rem 1rem 6rem;
}

.hero-title {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.hero-subtitle {
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.hero-desc {
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-color-3);
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
  font-weight: bold;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-card {
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 2rem;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--primary-color-4);
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
  font-weight: bold;
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color-5);
}

.team-role {
  font-size: 1rem;
  color: var(--primary-color-5-dark);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
}

.review-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background-color: var(--primary-color-1);
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  height: 100%;
}

.contact-input {
  height: 50px;
  margin-bottom: 1.5rem;
}

.contact-textarea {
  height: 150px;
  margin-bottom: 1.5rem;
}

.submit-btn {
  background-color: var(--primary-color-1);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-color-1-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-link {
  color: var(--medium-gray);
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--medium-gray);
}

/* Additional Pages Styling */
.page-header {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color-1);
  color: var(--white);
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-title {
  position: relative;
  z-index: 2;
}

.page-content {
  padding: 5rem 0;
}

/* Decorative Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1-light);
  opacity: 0.2;
  border-radius: 50%;
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-2-light);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space Page */
#space {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
} 