:root {
  --primary-color-1: #4A90E2; /* Electric blue */
  --primary-color-2: #8E44AD; /* Royal purple */
  --primary-color-3: #27AE60; /* Emerald green */
  --primary-color-4: #F39C12; /* Amber */
  --primary-color-5: #E74C3C; /* Coral red */
  
  --primary-color-1-light: #78B0FF;
  --primary-color-2-light: #B07CC6;
  --primary-color-3-light: #52D98B;
  --primary-color-4-light: #FFB746;
  --primary-color-5-light: #FF7B6E;
  
  --primary-color-1-dark: #2A6FC0;
  --primary-color-2-dark: #6C2E85;
  --primary-color-3-dark: #1D8348;
  --primary-color-4-dark: #D68910;
  --primary-color-5-dark: #C0392B;
  
  --neutral-light: #F8F9FA;
  --neutral-medium: #E9ECEF;
  --neutral-dark: #343A40;
}

/* General Typography */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Layout */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color-1);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color-1);
  color: var(--primary-color-1);
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  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;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.5;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  filter: blur(100px);
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  filter: blur(80px);
}

/* About Section */
.about {
  background-color: white;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

/* Services Section */
.services {
  background-color: var(--neutral-light);
}

.service-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1rem 0;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-medium);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: white;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--neutral-light);
}

.price-card {
  background-color: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-medium);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: white;
}

.team-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.team-image {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transition: all 0.3s ease;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-card:hover .team-info {
  background: linear-gradient(to top, var(--primary-color-1-dark), transparent);
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.review-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.info-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background-color: var(--neutral-light);
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

/* Contact Section */
.contact {
  background-color: var(--neutral-light);
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--neutral-medium);
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.blog-link:hover::after {
  width: 100%;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-light);
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A90E2'%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: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  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: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-desc {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.contact-info p {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

small {
  opacity: 0.7;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: var(--neutral-light);
}

/* Space page */
#space {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional pages styling */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
} 