:root {
  --primary-color1: #e8f4f8; /* Light blue - main background */
  --primary-color2: #abd0e6; /* Soft blue - secondary elements */
  --primary-color3: #f8e8ea; /* Soft pink - accent */
  --primary-color4: #d5e8d4; /* Soft green - highlighting */
  --primary-color5: #f9eacf; /* Soft yellow - contrast elements */
  
  --dark-shade1: #2a4d69; /* Dark blue */
  --dark-shade2: #694a4e; /* Dark pink */
  --dark-shade3: #3d5a3c; /* Dark green */
  --dark-shade4: #6b5d2e; /* Dark yellow */
  
  --light-shade1: #f5fafc; /* Lighter blue */
  --light-shade2: #fdf5f6; /* Lighter pink */
  --light-shade3: #f4faf3; /* Lighter green */
  --light-shade4: #fffbf2; /* Lighter yellow */
  
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-shade1);
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--primary-color3);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-top: 1rem;
}

.btn-custom {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-custom {
  background: var(--dark-shade1);
  color: var(--text-light);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--dark-shade1);
  border-color: var(--dark-shade1);
}

.btn-secondary-custom {
  background: var(--primary-color3);
  color: var(--dark-shade2);
}

.btn-secondary-custom:hover {
  background: var(--dark-shade2);
  color: var(--text-light);
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color2);
  opacity: 0.2;
  z-index: -1;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-shade1);
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color3);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 80%;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* About Section */
.about-section {
  background-color: var(--light-shade1);
  position: relative;
  overflow: hidden;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
}

.about-content {
  padding-left: 30px;
}

.about-feature {
  margin-top: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--dark-shade1);
  margin-bottom: 15px;
}

.about-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: #fff;
  position: relative;
}

.service-item {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color2);
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0.1;
}

.service-item:hover:before {
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--dark-shade1);
  margin-bottom: 20px;
}

.service-name {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--dark-shade1);
}

.service-desc {
  margin-bottom: 20px;
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-shade3);
  margin: 20px 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--dark-shade3);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  background-color: var(--primary-color1);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--dark-shade1);
  margin-bottom: 20px;
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: #fff;
  position: relative;
}

.price-item {
  padding: 40px 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color4);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-name {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--dark-shade1);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-shade3);
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--dark-shade3);
  margin-right: 10px;
}

/* Team Section */
.team-section {
  background-color: var(--light-shade3);
  position: relative;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  background: #fff;
  padding: 20px;
  margin-top: -25px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-shade1);
}

.team-role {
  color: var(--text-medium);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
  position: relative;
}

.review-slider {
  margin-top: 50px;
}

.review-item {
  padding: 30px;
  background: var(--light-shade1);
  border-radius: 10px;
  margin: 15px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-item:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  color: var(--primary-color2);
  opacity: 0.2;
}

.review-text {
  margin-bottom: 20px;
  color: var(--text-medium);
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--dark-shade1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color1);
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--dark-shade1);
  margin-bottom: 20px;
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-shade1);
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  position: relative;
}

.contact-form {
  padding: 40px;
  background: var(--light-shade1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 15px;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
}

.form-select {
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 15px;
  font-size: 1rem;
}

.submit-btn {
  height: 50px;
  width: 100%;
  background: var(--dark-shade1);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--dark-shade3);
}

.contact-info {
  padding-left: 30px;
}

.contact-info h4 {
  margin-bottom: 20px;
  color: var(--dark-shade1);
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info p i {
  color: var(--dark-shade1);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade4);
  position: relative;
}

.blog-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-shade1);
}

.blog-excerpt {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.blog-link {
  display: inline-block;
  color: var(--dark-shade1);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-shade3);
}

/* Footer Section */
footer {
  background: var(--dark-shade1);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255,255,255,0.7);
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Space Page */
#space {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Page Styles */
.add-page-section {
  padding: 100px 0;
  position: relative;
}

.add-page-section:nth-child(odd) {
  background-color: var(--light-shade1);
}

.add-page-section:nth-child(even) {
  background-color: #fff;
}

.add-page-title {
  margin-bottom: 20px;
  color: var(--dark-shade1);
  font-size: 2.5rem;
}

.add-page-subtitle {
  margin-bottom: 30px;
  color: var(--text-medium);
  font-size: 1.2rem;
}

.add-page-desc {
  margin-bottom: 40px;
  color: var(--text-medium);
}

.add-page-elements {
  margin-top: 50px;
}

.add-page-element {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.add-page-element:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.add-page-element-icon {
  font-size: 2.5rem;
  color: var(--dark-shade1);
  margin-bottom: 20px;
}

.add-page-element-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-shade1);
}

/* Animations */
.animated-element {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.animated-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 991px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media(max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .contact-info {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media(max-width: 575px) {
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 