:root {
  /* Color Variables - Pastel Palette */
  --primary-color: #91c4d9; /* Soft blue */
  --secondary-color: #f5c8c3; /* Soft coral */
  --accent-color: #c8e6c9; /* Mint green */
  --highlight-color: #e6c5e9; /* Lavender */
  --neutral-color: #f2e9dc; /* Cream */
  
  /* Shades */
  --primary-light: #b9d7e5;
  --primary-dark: #6a97ab;
  --secondary-light: #fae2de;
  --secondary-dark: #d6a59f;
  --accent-light: #e0f2e1;
  --accent-dark: #a3c7a4;
  --highlight-light: #f1dcf3;
  --highlight-dark: #c1a1c4;
  --neutral-light: #f9f5ee;
  --neutral-dark: #d9cfc0;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 15px 0;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 15px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--neutral-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 30px;
}

.about-feature {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--neutral-light);
  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: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.service-item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item:hover:before {
  height: 6px;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-item .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 1rem;
}

.service-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f1f1;
}

.service-features ul {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: white;
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--neutral-light);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-light);
  position: relative;
}

.price-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  border: 2px solid var(--primary-color);
}

.price-item.featured:before {
  content: 'Popular';
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 500;
}

.price-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.price-features {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-features ul {
  padding-left: 0;
  list-style-type: none;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

/* Team Section */
.team-section {
  background-color: white;
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-img img {
  transition: all 0.3s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 15px;
}

.team-name {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-light);
  position: relative;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  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-light);
  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;
}

.review-author-name {
  font-size: 1.1rem;
}

.review-swiper {
  padding: 30px 10px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--neutral-light);
  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 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.coreinfo-item h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-light);
  position: relative;
}

.contact-info {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 10px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(145, 196, 217, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

/* Blog Section */
.blog-section {
  background-color: white;
  position: relative;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 80px 0 20px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-desc {
  margin-bottom: 30px;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 60px;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Space Page */
#space {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-light);
}

/* Utility Classes */
.bg-light {
  background-color: var(--neutral-light) !important;
}

.bg-white {
  background-color: white !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* Animations */
.animated-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animated-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* Shapes */
.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: 80px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

.shape-divider.top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

.shape-divider.top .shape-fill {
  fill: var(--neutral-light);
}

.shape-blob {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.shape-blob-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: var(--primary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-animation 25s linear infinite alternate;
}

.shape-blob-2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  border-radius: 58% 42% 33% 67% / 63% 25% 75% 37%;
  animation: blob-animation 20s linear infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 71% 29% 38% 62% / 72% 48% 52% 28%;
  }
}

/* Additional Pages */
.page-header {
  height: 50vh;
  min-height: 400px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: white;
}

.page-header-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.page-section {
  padding: 80px 0;
}

.page-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .service-item,
  .feature-item,
  .price-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .page-header-title {
    font-size: 2.2rem;
  }
} 