:root {
  --primary-color-1: #f0e6ff; /* Light lavender */
  --primary-color-2: #d5c7f2; /* Soft purple */
  --primary-color-3: #c3a9e5; /* Medium lavender */
  --primary-color-4: #a9d8b8; /* Soft mint */
  --primary-color-5: #ffefd5; /* Peach */
  
  --light-1: #f8f9fa;
  --light-2: #e9ecef;
  --dark-1: #495057;
  --dark-2: #343a40;
  
  --transition: all 0.3s ease-in-out;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-1);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color-3);
  color: var(--light-1);
}

.btn-primary:hover {
  background-color: var(--dark-1);
}

/* Section Styles */
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--light-1);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-1);
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px !important;
  margin: 0 5px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color-3);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-1);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  position: relative;
}

/* About Section */
.about-section {
  background-color: var(--light-1);
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content {
  padding: 30px 0;
}

.feature-card {
  padding: 25px;
  background-color: var(--light-1);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 35px;
  color: var(--primary-color-3);
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-1);
  position: relative;
}

.service-card {
  background-color: var(--light-1);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 15px 0;
}

.service-features {
  margin: 15px 0;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-4);
}

/* Features Section */
.features-section {
  background-color: var(--light-1);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-1);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 45px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--primary-color-1);
}

.pricing-card {
  background-color: var(--light-1);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary-color-3);
  color: var(--light-1);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 14px;
  font-weight: 500;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.pricing-features {
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.pricing-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Team Section */
.team-section {
  background-color: var(--light-1);
}

.team-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  transition: var(--transition);
  width: 100%;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: var(--light-1);
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-3);
  font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-color-1);
  position: relative;
}

.testimonial-card {
  background-color: var(--light-1);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 20px 0;
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--primary-color-2);
  font-size: 30px;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color-3);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-1);
}

.coreinfo-item {
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  background-color: var(--light-1);
  height: 100%;
  border-top: 3px solid var(--primary-color-3);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 35px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-1);
  position: relative;
}

.contact-form {
  background-color: var(--light-1);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--light-2);
  border-radius: var(--border-radius);
  padding: 10px 20px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color-3);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-info-icon {
  font-size: 22px;
  color: var(--primary-color-3);
  margin-right: 15px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-1);
}

.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  background-color: var(--light-1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-3);
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--dark-1);
}

/* Footer */
footer {
  background-color: var(--dark-2);
  color: var(--light-1);
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-info p {
  margin-bottom: 10px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  text-align: center;
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 20%;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-2);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-4);
  opacity: 0.2;
  border-radius: 62% 38% 46% 54% / 30% 64% 36% 70%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    transform: translate(15px, 15px) rotate(10deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--light-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color-3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-3);
}

/* Additional Pages */
.inner-page-header {
  height: 300px;
  background-color: var(--primary-color-1);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.inner-page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.inner-page-section {
  padding: 80px 0;
}

.inner-page-card {
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
  background-color: var(--light-1);
}

.inner-page-card:hover {
  transform: translateY(-5px);
}

.inner-page-icon {
  font-size: 40px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

/* Space Page */
#space {
  min-height: 500px;
  background-color: var(--light-1);
  display: flex;
  align-items: center;
  justify-content: center;
} 