:root {
  --primary-1: #e0f1f9; /* Light Blue - Pale Sky */
  --primary-2: #ffece5; /* Soft Peach */
  --primary-3: #e5f5ec; /* Mint Green */
  --primary-4: #f1eaf7; /* Lavender */
  --primary-5: #fff8e6; /* Cream */

  --dark-1: #2a4157;
  --dark-2: #5e4a42;
  --dark-3: #2f4d3c;
  --dark-4: #493c57;
  --dark-5: #6a5f3c;

  --light-text: #f8f9fa;
  --dark-text: #212529;
  --body-text: #495057;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-3);
  transform: translateX(-50%);
}

.btn-primary {
  background-color: var(--dark-3);
  border-color: var(--dark-3);
}

.btn-primary:hover {
  background-color: var(--dark-1);
  border-color: var(--dark-1);
}

/* Header Styles */
.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-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
}

.header .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

/* Hero Section */
.hero-slider {
  height: 100vh;
  min-height: 600px;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: var(--primary-3);
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.about-feature {
  padding: 2rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-3);
}

/* Services Section */
.services-section {
  background-color: #fff;
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-price {
  font-weight: 700;
  color: var(--dark-3);
  margin: 1rem 0;
}

.service-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--primary-1);
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-1);
}

/* Price Plan Section */
.priceplan-section {
  background-color: #fff;
}

.price-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  background: var(--primary-5);
  border: 2px solid var(--dark-5);
}

.price-card.featured:before {
  content: 'Popular';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--dark-5);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  transform: rotate(45deg);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--dark-text);
}

.price-features {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--primary-4);
}

.team-member {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--body-text);
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
}

.review-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before, .review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-3);
  line-height: 0;
  position: relative;
}

.review-author {
  font-weight: 700;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-2);
  position: relative;
  overflow: hidden;
}

.coreinfo-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.coreinfo-item {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-2);
}

/* Contact Section */
.contact-section {
  background-color: #fff;
}

.contact-form {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-select {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-box {
  padding: 2rem;
  background: var(--primary-3);
  border-radius: 8px;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1rem;
  color: var(--dark-3);
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-5);
}

.blog-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--dark-1);
  color: var(--light-text);
  padding: 5rem 0 2rem;
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Space Page */
#space {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1);
}

/* Animations */
.animate-up {
  animation: fadeInUp 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Additional Pages */
.page-header {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header-content h1 {
  color: #fff;
  font-size: 3.5rem;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
} 