:root {
  --primary-1: #e6f2ff; /* Light blue */
  --primary-2: #ffece6; /* Light peach */
  --primary-3: #e6ffef; /* Light mint */
  --primary-4: #f2e6ff; /* Light lavender */
  --primary-5: #fff6e6; /* Light amber */
  
  --dark-1: #2b5a8c;
  --dark-2: #8c4a2b;
  --dark-3: #2b8c56;
  --dark-4: #5a2b8c;
  --dark-5: #8c7a2b;
  
  --light-1: #f0f8ff;
  --light-2: #fff0f0;
  --light-3: #f0fff5;
  --light-4: #f5f0ff;
  --light-5: #fffaf0;
  
  --white: #ffffff;
  --black: #212529;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  padding: 100px 0;
  position: relative;
}

section.bg-light {
  background-color: var(--light-gray);
}

.section-title {
  margin-bottom: 60px;
}

.btn-primary {
  background-color: var(--dark-1);
  border-color: var(--dark-1);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--dark-1);
}

.bg-shape {
  position: absolute;
  z-index: -1;
}

.bg-shape-1 {
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  opacity: 0.1;
  background-color: var(--primary-1);
  border-radius: 0 0 0 100%;
}

.bg-shape-2 {
  bottom: 0;
  left: 0;
  width: 30%;
  height: 30%;
  opacity: 0.1;
  background-color: var(--primary-3);
  border-radius: 0 100% 0 0;
}

/* Header */
header {
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-1);
}

.nav-link {
  font-weight: 600;
  padding: 10px 15px !important;
  color: var(--black);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--dark-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

.hero-slide {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* About Section */
.about-feature {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: var(--white);
  transition: all 0.3s ease;
  height: 100%;
}

.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: 20px;
  color: var(--dark-1);
}

/* Services Section */
.service-card {
  padding: 40px 30px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--dark-1), var(--dark-3));
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-1);
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 1rem;
  color: var(--dark-1);
}

.service-price {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--primary-3);
  color: var(--dark-3);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--dark-3);
  margin-right: 10px;
}

/* Features Section */
.feature-item {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.feature-item:hover {
  background-color: var(--primary-4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--primary-4);
  color: var(--dark-4);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Price Plan Section */
.price-card {
  padding: 50px 30px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-2);
  z-index: -1;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.price-card:hover::before {
  transform: translateY(0);
}

.price-card:hover {
  transform: scale(1.05);
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark-2);
}

.price-features {
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

.price-features li i {
  color: var(--dark-2);
  margin-right: 10px;
}

/* Team Section */
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.team-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.team-member:hover .team-info {
  transform: translateY(0);
}

.team-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-slider {
  padding-bottom: 60px;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 20px 10px;
  position: relative;
}

.review-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 30px;
  background-color: var(--primary-5);
  color: var(--dark-5);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  color: var(--dark-1);
}

/* Core Info Section */
.core-info-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background-color: var(--primary-1);
}

.core-info-icon {
  font-size: 2rem;
  color: var(--dark-1);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-form {
  padding: 40px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
  height: 50px;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.1);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  padding: 40px;
  border-radius: 15px;
  background-color: var(--primary-1);
  height: 100%;
}

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--dark-1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 15px;
}

/* Blog Section */
.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--dark-1);
  font-weight: 600;
  text-decoration: none;
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

footer .sitename {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

footer .sitedesc {
  margin-bottom: 30px;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

#site_disclaimer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Additional Pages */
.add-page-section {
  padding: 100px 0;
  position: relative;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-gray);
}

.add-page-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.add-page-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Space Page */
#space {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-1);
} 