:root {
  /* Color Palette - Pastel */
  --primary-1: #a3cef1;
  /* Soft blue */
  --primary-2: #e8c1c5;
  /* Rose pink */
  --primary-3: #f1dca7;
  /* Light yellow */
  --primary-4: #b6c8a9;
  /* Sage green */
  --primary-5: #d8b4e2;
  /* Lavender */

  /* Shades */
  --primary-1-light: #c5e0f7;
  --primary-1-dark: #7ba9d9;
  --primary-2-light: #f5dde0;
  --primary-2-dark: #c99ea3;
  --primary-3-light: #f7ecd3;
  --primary-3-dark: #d4c082;
  --primary-4-light: #d5e1cd;
  --primary-4-dark: #95a789;
  --primary-5-light: #ebceef;
  --primary-5-dark: #b790c2;

  /* Neutrals */
  --dark: #334155;
  --light: #f8fafc;
  --grey: #94a3b8;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--primary-1-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1);
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1-dark);
}

.btn-outline:hover {
  background: var(--primary-1);
  color: var(--dark);
}

/* Section Styling */
section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 38px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title h2::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 20px;
  background-color: var(--primary-3-light);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.section-subtitle {
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Header */
header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
  padding: 8px 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 10px;
  color: var(--primary-1-dark);
}

.nav-link {
  font-weight: 600;
  padding: 10px 15px !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  bottom: 5px;
  left: 15px;
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

/* About Section */
.about-section {
  background-color: var(--light);
}

.about-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-feature {
  padding: 25px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-feature-icon i {
  font-size: 24px;
  color: var(--primary-3-dark);
}

.about-feature h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: #f9fafb;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-4-light);
  opacity: 0.4;
  border-radius: 0 0 0 300px;
  z-index: 0;
}

.services-card {
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--primary-1);
  top: 0;
  left: 0;
  transition: height 0.3s ease;
  z-index: -1;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-card:hover::before {
  height: 10px;
}

.services-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.services-icon i {
  font-size: 30px;
  color: var(--primary-1-dark);
}

.services-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.services-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-1-dark);
  margin: 15px 0;
}

.services-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.services-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.services-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Features Section */
.features-section {
  background-color: white;
  position: relative;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}

.features-item {
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--primary-2-light);
  bottom: 0;
  left: 0;
  transition: height 0.3s ease;
  z-index: -1;
  opacity: 0.3;
}

.features-item:hover::before {
  height: 100%;
}

.features-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-2-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.features-item:hover .features-icon {
  background-color: var(--primary-2);
  transform: rotate(5deg);
}

.features-icon i {
  font-size: 28px;
  color: var(--primary-2-dark);
}

.features-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: #f9fafb;
  position: relative;
}

.price-card {
  padding: 40px 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
  z-index: 2;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.price-name {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 15px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-1-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.price-amount::before {
  content: '$';
  font-size: 24px;
  position: absolute;
  top: 5px;
  left: -15px;
}

.price-period {
  font-size: 14px;
  color: var(--grey);
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 30px;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

.price-footer {
  text-align: center;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-5-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.reviews-slider {
  overflow: visible;
}

.review-card {
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
  z-index: 1;
}

.review-text {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.review-text::before {
  content: '\201C';
  font-size: 60px;
  color: var(--primary-5-light);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  z-index: -1;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.review-author-info p {
  color: var(--grey);
  font-size: 14px;
  margin: 0;
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.coreinfo-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--primary-4);
  bottom: 0;
  left: 0;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-4-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.coreinfo-icon i {
  font-size: 24px;
  color: var(--primary-4-dark);
}

.coreinfo-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: #f9fafb;
  position: relative;
}

.contact-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  height: 100%;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 15px 0;
  font-size: 16px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.contact-form .form-select {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 15px 0;
  font-size: 16px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.contact-form .form-label {
  color: var(--grey);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info {
  padding: 30px;
  background-color: var(--primary-1-light);
  border-radius: 12px;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-icon i {
  font-size: 18px;
  color: var(--primary-1-dark);
}

.contact-info-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-info-content p {
  margin: 0;
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  transition: all 0.5s ease;
  width: 100%;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary-1-dark);
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-1-dark);
  position: relative;
  transition: all 0.3s ease;
}

.blog-link::after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-1);
}

.blog-link:hover::after {
  margin-left: 10px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 18px;
  color: white;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links a:hover::before {
  left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.footer-contact p i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}

/* Space Page */
#space {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.page-header {
  height: 40vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.page-title {
  position: relative;
  z-index: 1;
  font-size: 48px;
  text-align: center;
}

/* Decorative Elements */
.shape-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* Animation Utilities */
/* Utility Classes */
.bg-light-1 {
  background-color: var(--primary-1-light);
}

.bg-light-2 {
  background-color: var(--primary-2-light);
}

.bg-light-3 {
  background-color: var(--primary-3-light);
}

.bg-light-4 {
  background-color: var(--primary-4-light);
}

.bg-light-5 {
  background-color: var(--primary-5-light);
}

.rounded-custom {
  border-radius: 12px;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.text-primary-1 {
  color: var(--primary-1-dark);
}

.text-primary-2 {
  color: var(--primary-2-dark);
}

.text-primary-3 {
  color: var(--primary-3-dark);
}

.text-primary-4 {
  color: var(--primary-4-dark);
}

.text-primary-5 {
  color: var(--primary-5-dark);
}

.overflow-hidden {
  overflow: hidden;
}

.z-1 {
  z-index: 1;
  position: relative;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-60 {
  margin-bottom: 60px;
}