:root {
  --primary-color: #5c6bc0; /* Indigo */
  --primary-light: #8e99f3;
  --primary-dark: #26418f;
  --secondary-color: #ff8a65; /* Coral */
  --accent-color: #43a047; /* Green */
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --background-light: #ffffff;
  --background-off: #f5f7fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* General Styling */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-shape {
  position: absolute;
  z-index: -1;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(92, 107, 192, 0.2);
}

.section-padding {
  padding: 80px 0;
}

/* Header */
.header {
  background-color: var(--background-light);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background-color: var(--background-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  background-color: var(--primary-light);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 30%;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  opacity: 0.1;
  border-radius: 0 100% 0 0;
  z-index: 0;
}

#hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

#hero-subtitle-1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

#hero-desc-1 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* About Section */
.about-section {
  background-color: var(--background-off);
  position: relative;
}

.about-feature {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--background-light);
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  background-color: var(--background-light);
}

.service-card: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: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-body {
  padding: 1.5rem;
}

.service-body h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.service-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.service-body ul li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-body ul li::before {
  content: '✓';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* Features Section */
.features-section {
  background-color: var(--background-off);
}

.feature-card {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--background-light);
}

.price-card {
  background-color: var(--background-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
}

.price-card.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-light);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 2rem 1.5rem;
  text-align: center;
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.price-body {
  padding: 2rem 1.5rem;
}

.price-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.price-body ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.price-body ul li::before {
  content: '✓';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: var(--background-off);
}

.team-card {
  background-color: var(--background-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-body {
  padding: 1.5rem;
  text-align: center;
}

.team-body h4 {
  margin-bottom: 0.25rem;
}

.team-body p {
  color: var(--gray-600);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--background-light);
  padding: 100px 0;
}

.review-card {
  background-color: var(--background-off);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: 'Georgia', serif;
  line-height: 1;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

.reviews-swiper {
  padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--background-off);
}

.info-card {
  background-color: var(--background-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  right: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
}

.contact-form .form-control {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.contact-info {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
}

.contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--background-off);
}

.blog-card {
  background-color: var(--background-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-body {
  padding: 1.5rem;
}

.blog-body h4 {
  margin-bottom: 0.5rem;
}

.blog-body p {
  margin-bottom: 1rem;
}

.blog-body a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.blog-body a:hover {
  color: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-light);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background-color: var(--background-light);
  color: var(--text-dark);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--text-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--background-light);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--background-off);
}

.gallery-img {
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--gray-800);
  color: var(--text-light);
}

.footer h4, .footer h5 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--gray-300);
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--text-light);
}

#site-copyright {
  color: var(--gray-500);
  border-top: 1px solid var(--gray-600);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.zoom-in {
  animation: zoomIn 1s ease-in;
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 50px 0;
} 