:root {
  /* Color Palette - Pastel colors */
  --primary-color1: #6e9eff; /* Soft blue */
  --primary-color2: #ffc4dd; /* Soft pink */
  --primary-color3: #9effdf; /* Mint green */
  --primary-color4: #ffe29e; /* Pale yellow */
  --primary-color5: #d9c4ff; /* Lavender */
  
  /* Light/dark shades */
  --primary-color1-light: #a5c2ff;
  --primary-color1-dark: #456bc7;
  --primary-color2-light: #ffe0ed;
  --primary-color2-dark: #d99eb8;
  --primary-color3-light: #c7ffef;
  --primary-color3-dark: #6ad0ac;
  --primary-color4-light: #fff2c7;
  --primary-color4-dark: #d5bb6e;
  --primary-color5-light: #ede2ff;
  --primary-color5-dark: #b09cd6;

  /* Text colors */
  --text-dark: #2a2a4a;
  --text-light: #f9f9fc;
  --text-muted: #7a7a8c;
  
  /* Background colors */
  --bg-light: #ffffff;
  --bg-dark: #121220;
  --bg-muted: #f3f4f8;
}

/* Base styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.bg-primary-1 {
  background-color: var(--primary-color1);
}

.bg-primary-2 {
  background-color: var(--primary-color2);
}

.bg-primary-3 {
  background-color: var(--primary-color3);
}

.bg-primary-4 {
  background-color: var(--primary-color4);
}

.bg-primary-5 {
  background-color: var(--primary-color5);
}

.text-primary-1 {
  color: var(--primary-color1);
}

.text-primary-2 {
  color: var(--primary-color2);
}

.text-primary-3 {
  color: var(--primary-color3);
}

.text-primary-4 {
  color: var(--primary-color4);
}

.text-primary-5 {
  color: var(--primary-color5);
}

/* Header Styles */
header {
  position: fixed;
  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);
}

header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color1);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color1);
}

/* Hero Section */
.hero-section {
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* About Section */
.about-section {
  position: relative;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  background-color: var(--bg-muted);
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--bg-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color1);
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.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-color3);
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color1);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--bg-muted);
}

.price-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color1);
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
}

.price-content {
  padding: 2rem;
  flex-grow: 1;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color1);
}

.price-features {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color3);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--bg-light);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px 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: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-muted);
}

.review-card {
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--bg-light);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color1);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color1);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-muted);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.75rem;
}

.btn-submit {
  background-color: var(--primary-color1);
  border: none;
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-color1-dark);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color1);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color1-dark);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-text {
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color1);
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Additional Pages */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background-color: var(--primary-color1);
  color: var(--text-light);
  position: relative;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-section {
  padding: 5rem 0;
}

.space-container {
  min-height: calc(100vh - 300px);
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 65px;
}

.shape-divider .shape-fill {
  fill: var(--bg-light);
}

.rotating-bg {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: 0;
  background: linear-gradient(45deg, rgba(110, 158, 255, 0.15) 0%, rgba(157, 236, 223, 0.15) 100%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Utilities */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color1);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Swiper Styles */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-color1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color1);
} 