:root {
  --primary-color-1: #483D8B; /* Primary brand color - deep slate blue */
  --primary-color-2: #7B68EE; /* Medium slate blue */
  --primary-color-3: #E6E6FA; /* Lavender - light */
  --primary-color-4: #FFD700; /* Gold for accents */
  --primary-color-5: #4B0082; /* Indigo - dark accent */
  
  --light-shade-1: #F8F9FA;
  --light-shade-2: #E9ECEF;
  --dark-shade-1: #343A40;
  --dark-shade-2: #212529;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-shade-1);
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

.section-padding {
  padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-2);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1);
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--primary-color-4);
  color: var(--dark-shade-1);
}

.btn-secondary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color-4);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  margin-top: 20px;
  color: #6c757d;
}

/* 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.scrolled {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 600;
  padding: 8px 15px !important;
  margin: 0 5px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(123, 104, 238, 0.2);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 30px;
}

.about-feature {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--primary-color-3);
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.about-feature:hover::after {
  height: 100%;
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 15px;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(123, 104, 238, 0.1);
}

.service-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-3);
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color-1);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 15px 0;
}

.service-features {
  margin-top: 20px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color-4);
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color-1);
}

.feature-item h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-shade-1);
  position: relative;
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color-1);
  color: white;
  padding: 20px;
  text-align: center;
}

.price-header h4 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.price-body {
  padding: 30px;
}

.price-amount {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 25px;
}

.price-features {
  margin-bottom: 25px;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-shade-2);
  position: relative;
  padding-left: 25px;
}

.price-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color-4);
}

.price-footer {
  text-align: center;
  padding: 0 30px 30px;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  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;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-2);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-shade-1);
  position: relative;
}

.reviews-slider {
  padding: 30px 15px;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color-4);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.reviews-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color-2);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid var(--primary-color-2);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.coreinfo-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-shade-1);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border: 1px solid var(--light-shade-2);
  border-radius: 5px;
  padding: 10px 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-2);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info h4 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary-color-1);
}

.contact-details {
  flex: 1;
}

.contact-details h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  background: 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;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--primary-color-1);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: white;
  color: var(--dark-shade-1);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-3);
  color: var(--primary-color-1);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-2);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23483D8B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-shade-1);
  color: white;
  padding-top: 70px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-4);
  bottom: 0;
  left: 0;
}

.footer-about p {
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color-4);
}

.footer-links ul li a:hover {
  color: var(--primary-color-4);
  padding-left: 20px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color-4);
}

.footer-contact-text {
  flex: 1;
}

.footer-bottom {
  background-color: var(--dark-shade-2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Additional Pages Styling */
.page-header {
  height: 300px;
  background-color: var(--primary-color-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.15);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: rgba(123, 104, 238, 0.2);
}

.page-header h1 {
  font-size: 2.5rem;
  position: relative;
  z-index: 10;
}

.space-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation Elements */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.shape-blob-1 {
  top: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: rgba(123, 104, 238, 0.1);
  animation: float 8s ease-in-out infinite;
}

.shape-blob-2 {
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Space Page Styling */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 