:root {
  /* Color Palette */
  --primary-color-1: #492e7c; /* Deep Purple */
  --primary-color-2: #a09bd7; /* Lavender */
  --primary-color-3: #d4c2fc; /* Light Lavender */
  --primary-color-4: #e6883a; /* Orange Accent */
  --primary-color-5: #f5f5f7; /* Light Gray */
  
  /* Shades */
  --primary-color-1-light: #5b3e96;
  --primary-color-1-dark: #362159;
  --primary-color-2-light: #b9b5e3;
  --primary-color-2-dark: #8c89c0;
  --primary-color-3-light: #e4d8fd;
  --primary-color-3-dark: #bba9e9;
  --primary-color-4-light: #f3a665;
  --primary-color-4-dark: #c46b1e;
  --primary-color-5-light: #ffffff;
  --primary-color-5-dark: #e0e0e3;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: var(--primary-color-5);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-4);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-light);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-4);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-4-light);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color-4);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 600;
  padding: 10px 15px !important;
  color: #333 !important;
}

.nav-link.active, .nav-link:hover {
  color: var(--primary-color-1) !important;
}

/* Hero Section */
#hero {
  position: relative;
  background-color: var(--primary-color-1);
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(73, 46, 124, 0.8), rgba(230, 136, 58, 0.7));
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-title {
  font-size: 60px;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* About Section */
#about {
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-feature {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  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: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

.about-feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Services Section */
#services {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-color-3);
  color: var(--primary-color-1);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-features {
  margin: 15px 0;
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 5px;
}

/* Features Section */
#features {
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-1);
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  z-index: 1;
}

.features-content {
  position: relative;
  z-index: 2;
}

.features-content .section-title h2,
.features-content .section-title p {
  color: white;
}

.feature-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-3);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary-color-1);
}

.feature-content {
  padding: 30px;
  text-align: center;
}

.feature-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-color-5-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  text-align: center;
  background-color: var(--primary-color-1);
  color: white;
}

.price-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: white;
}

.price-content {
  padding: 30px;
}

.price-features {
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li i {
  color: var(--primary-color-4);
  margin-right: 10px;
}

/* Team Section */
#team {
  position: relative;
}

.team-member {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-content p {
  color: var(--primary-color-4);
  font-weight: 600;
}

/* Reviews Section */
#reviews {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.reviews-slider {
  margin-top: 50px;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: o 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.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-color-2);
  font-size: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.review-author-info p {
  color: var(--primary-color-4);
  font-size: 14px;
}

/* Core Info Section */
#coreinfo {
  position: relative;
  overflow: hidden;
}

.coreinfo-content {
  position: relative;
  z-index: 2;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-icon {
  font-size: 40px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Contact Section */
#contact {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--primary-color-5-dark);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
}

textarea.form-control {
  height: 150px;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: 0 0 0 0.2rem rgba(160, 155, 215, 0.25);
}

.contact-info {
  background-color: var(--primary-color-1);
  padding: 50px;
  border-radius: 10px;
  color: white;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
}

.contact-info-text {
  font-size: 18px;
}

/* Blog Section */
#blog {
  position: relative;
}

.blog-item {
  background-color: white;
  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-img {
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
#faq {
  background-color: var(--primary-color-5-light);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: white;
  color: var(--primary-color-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px 25px;
  background-color: white;
}

/* Gallery Section */
#gallery {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 300px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-1-dark);
  padding: 50px 0 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  color: white;
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color-4);
  bottom: -10px;
  left: 0;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color-4);
  padding-left: 5px;
}

.contact-info-footer {
  margin-bottom: 15px;
  display: flex;
}

.contact-info-icon-footer {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
}

.footer-copyright {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Additional Pages Styles */
.page-header {
  background-color: var(--primary-color-1);
  padding: 150px 0 100px;
  position: relative;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  font-size: 48px;
}

.page-section {
  padding: 100px 0;
}

.page-section:nth-child(even) {
  background-color: var(--primary-color-5-light);
}

/* Animation Elements */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* Shapes */
.shape-decorator {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
}

.shape-2 {
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-4);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  opacity: 0.1;
}

/* Breadcrumb style without text */
.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-img {
  width: 16px;
  height: 16px;
}

/* Space page styles */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 