:root {
  /* Primary color palette */
  --primary-color-1: #7A9EFF; /* Soft blue */
  --primary-color-2: #FFA07A; /* Light salmon */
  --primary-color-3: #9BDEAC; /* Mint green */
  --primary-color-4: #E0C3FC; /* Lavender */
  --primary-color-5: #FFE082; /* Light amber */
  
  /* Light/dark shades */
  --light-1: #F8F9FA;
  --light-2: #E9ECEF;
  --dark-1: #212529;
  --dark-2: #495057;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --heading-1: 2.5rem;
  --heading-2: 2rem;
  --heading-3: 1.75rem;
  --heading-4: 1.5rem;
  --heading-5: 1.25rem;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-1);
  background-color: var(--light-1);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-3);
}

.btn {
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  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-3);
  border-color: var(--primary-color-3);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

.btn-secondary:hover {
  background-color: var(--primary-color-4);
  border-color: var(--primary-color-4);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: var(--heading-2);
  margin-bottom: 15px;
  color: var(--dark-1);
}

.section-title p {
  color: var(--dark-2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .navbar {
  padding: 20px 0;
}

.header .navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-1);
}

.header .nav-item {
  margin: 0 10px;
}

.header .nav-link {
  font-weight: 600;
  color: var(--dark-1);
  position: relative;
}

.header .nav-link:hover {
  color: var(--primary-color-1);
}

.header .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.header .nav-link:hover:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--light-1);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: var(--heading-1);
  margin-bottom: 20px;
  color: var(--dark-1);
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: 30px;
  color: var(--dark-2);
}

.hero-image {
  position: relative;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color-1);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 30px;
}

.about-feature {
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--light-1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color-1);
  font-size: 40px;
}

.about-feature h4 {
  margin-bottom: 15px;
  color: var(--dark-1);
}

/* Services Section */
.services-section {
  position: relative;
  background-color: var(--light-2);
}

.service-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
  color: var(--primary-color-1);
  font-size: 40px;
}

.service-item h4 {
  margin-bottom: 15px;
  color: var(--dark-1);
}

.service-price {
  margin-top: 20px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color-1);
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--light-1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color-3);
  font-size: 40px;
}

.feature-item h4 {
  margin-bottom: 15px;
  color: var(--dark-1);
}

/* Price Plan Section */
.priceplan-section {
  position: relative;
  background-color: var(--light-2);
}

.price-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  border: 2px solid var(--primary-color-1);
  transform: scale(1.05);
}

.price-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-item h4 {
  margin-bottom: 20px;
  color: var(--dark-1);
}

.price-amount {
  margin: 20px 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.price-features {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-2);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-item {
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-item:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
  color: var(--dark-1);
}

.team-info p {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: var(--light-2);
}

.review-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--dark-2);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
}

.review-author-info h5 {
  margin-bottom: 5px;
  color: var(--dark-1);
}

.review-author-info p {
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--light-1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  margin-bottom: 20px;
  color: var(--primary-color-4);
  font-size: 40px;
}

.coreinfo-item h4 {
  margin-bottom: 15px;
  color: var(--dark-1);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--light-2);
}

.contact-form {
  padding: 40px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border: 1px solid var(--light-2);
  border-radius: 5px;
  padding: 10px 20px;
}

textarea.form-control {
  height: 150px;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

.contact-info {
  padding: 40px;
  background-color: var(--primary-color-1);
  border-radius: 10px;
  color: white;
}

.contact-info h4 {
  margin-bottom: 20px;
  color: white;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-info-icon {
  margin-right: 15px;
  font-size: 24px;
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-info {
  padding: 20px;
}

.blog-info h4 {
  margin-bottom: 15px;
  color: var(--dark-1);
}

.blog-info p {
  margin-bottom: 15px;
  color: var(--dark-2);
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  background-color: var(--dark-1);
  color: white;
}

.footer-logo {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  margin-bottom: 25px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Space page */
#space {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation */
.fadeIn {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shape elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-3);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-1);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-2);
  opacity: 0.05;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
} 