:root {
  /* Primary Colors - Pastel Palette */
  --primary-1: #e6d7ff; /* Soft Lavender */
  --primary-2: #ffccd0; /* Soft Coral */
  --primary-3: #c9f0e4; /* Mint Green */
  --primary-4: #ffe8b3; /* Pale Yellow */
  --primary-5: #d1e5f7; /* Sky Blue */

  /* Shades */
  --primary-1-dark: #bda8e0;
  --primary-2-dark: #e6a9ad;
  --primary-3-dark: #a8d4c8;
  --primary-4-dark: #e6ce96;
  --primary-5-dark: #a9c6de;
  
  --primary-1-light: #f7f2ff;
  --primary-2-light: #fff0f1;
  --primary-3-light: #e8f8f3;
  --primary-4-light: #fff9e6;
  --primary-5-light: #ebf5fd;

  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  
  /* Common Colors */
  --white: #ffffff;
  --black: #000000;
  --dark-overlay: rgba(0, 0, 0, 0.7);
  --light-overlay: rgba(255, 255, 255, 0.8);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-title {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.section-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
  color: var(--text-medium);
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Header */
header {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1-dark);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-5-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: #666666;
  padding: 24px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-overlay);
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  max-width: 600px;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--primary-3-light);
  position: relative;
}

.services-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--primary-1-light);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 0;
}

.service-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1rem;
  color: var(--primary-1);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-top: 15px;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
}

.service-features li {
  list-style: none;
  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;
  color: var(--primary-3);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background-color: var(--primary-4-light);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-4);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-5-light);
  position: relative;
}

.price-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin: 20px 0;
}

.price-features {
  margin: 30px 0;
  padding-left: 0;
}

.price-features li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-5-light);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, var(--dark-overlay), transparent);
  padding: 30px 20px;
  color: var(--white);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.review-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-1);
  font-size: 1rem;
}

.review-author {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-item {
  background-color: var(--primary-3-light);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-3);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-2-light);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--text-light);
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
  background-color: var(--white);
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.blog-title:hover {
  color: var(--primary-1);
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Shape Decorations */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-1-light);
  border-radius: 0 0 50% 0;
}

.shape-2 {
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 50% 0 0 0;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-1);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-1);
  background-color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-5-light);
} 