:root {
  --color-primary-1: #F0E6FF;  /* Light Lavender */
  --color-primary-2: #FFE6E8;  /* Light Pink */
  --color-primary-3: #E8FFF0;  /* Light Mint */
  --color-primary-4: #FFF0E6;  /* Light Peach */
  --color-primary-5: #E6F0FF;  /* Light Sky Blue */
  
  --color-dark-1: #6A4C93;     /* Dark Lavender */
  --color-dark-2: #D35269;     /* Dark Pink */
  --color-dark-3: #4CAF50;     /* Dark Mint */
  --color-dark-4: #E67E22;     /* Dark Peach */
  --color-dark-5: #3498DB;     /* Dark Sky Blue */
  
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 10px;
  color: var(--color-dark-1);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-dark-1);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slide {
  height: 100%;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fff;
}

/* About Section */
.about-section {
  background-color: var(--color-primary-1);
  position: relative;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-1);
}

.about-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-1);
}

.about-desc {
  margin-bottom: 30px;
}

.about-feature {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-dark-1);
}

.about-feature-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: #fff;
  position: relative;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-2);
}

.services-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-2);
}

.services-desc {
  margin-bottom: 30px;
}

.service-card {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background-color: var(--color-primary-2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-dark-2);
}

.service-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  margin-bottom: 15px;
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-2);
  margin-top: 15px;
}

.service-features {
  margin-top: 15px;
}

.service-features li {
  margin-bottom: 5px;
}

/* Features Section */
.features-section {
  background-color: var(--color-primary-3);
  position: relative;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-3);
}

.features-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-3);
}

.features-desc {
  margin-bottom: 30px;
}

.feature-item {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-dark-3);
}

.feature-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: #fff;
  position: relative;
}

.priceplan-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-4);
}

.priceplan-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-4);
}

.priceplan-desc {
  margin-bottom: 30px;
}

.price-card {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background-color: var(--color-primary-4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark-4);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--color-dark-4);
}

.price-desc {
  margin-bottom: 20px;
}

.price-features {
  margin-bottom: 20px;
  text-align: left;
}

.price-features li {
  margin-bottom: 8px;
}

/* Team Section */
.team-section {
  background-color: var(--color-primary-5);
  position: relative;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-5);
}

.team-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-5);
}

.team-desc {
  margin-bottom: 30px;
}

.team-member {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--color-dark-5);
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
  position: relative;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-1);
}

.reviews-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-1);
}

.reviews-desc {
  margin-bottom: 30px;
}

.review-item {
  background-color: var(--color-primary-1);
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--color-dark-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--color-primary-2);
  position: relative;
}

.coreinfo-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-2);
}

.coreinfo-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-2);
}

.coreinfo-desc {
  margin-bottom: 30px;
}

.coreinfo-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-dark-2);
}

.coreinfo-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-dark-2);
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  position: relative;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-3);
}

.contact-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-3);
}

.contact-desc {
  margin-bottom: 30px;
}

.contact-form {
  background-color: var(--color-primary-3);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  margin-bottom: 20px;
}

.form-control label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control input,
.form-control textarea,
.form-control select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.form-control textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--color-dark-3);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--color-dark-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--color-primary-5);
  position: relative;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark-5);
}

.blog-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-dark-5);
}

.blog-desc {
  margin-bottom: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-item-excerpt {
  margin-bottom: 15px;
}

.blog-item-link {
  display: inline-block;
  color: var(--color-dark-5);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-desc {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary-1);
}

.contact-info p {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* SVG Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  bottom: 0;
  left: 0;
  width: 20%;
  height: auto;
  opacity: 0.2;
}

.shape-2 {
  top: 0;
  right: 0;
  width: 15%;
  height: auto;
  opacity: 0.2;
}

/* Additional Pages */
.add-page-section {
  padding: 80px 0;
}

.add-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.add-page-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.add-page-desc {
  margin-bottom: 30px;
}

.add-page-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.add-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.add-page-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Animation Classes */
.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: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Image Handling */
.img-fluid {
  max-width: 100%;
  height: auto;
} 