:root {
  --primary-color-1: #3A7CA5; /* Primary blue */
  --primary-color-2: #F39237; /* Vibrant orange */
  --primary-color-3: #D63230; /* Accent red */
  --primary-color-4: #2F4858; /* Dark blue */
  --primary-color-5: #81C14B; /* Fresh green */
  
  /* Light shades */
  --primary-color-1-light: #5B9CCC;
  --primary-color-2-light: #F7B06A;
  --primary-color-3-light: #E16967;
  --primary-color-4-light: #4A6A7E;
  --primary-color-5-light: #A2D778;
  
  /* Dark shades */
  --primary-color-1-dark: #2A5B7A;
  --primary-color-2-dark: #D66F0E;
  --primary-color-3-dark: #A92927;
  --primary-color-4-dark: #1A2A33;
  --primary-color-5-dark: #5E9432;
}

/* 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;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-1);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color-1);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-weight: 500;
  margin-left: 20px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f8f9fa;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-desc-1 {
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 50%;
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(243, 146, 55, 0.1);
  border-radius: 50%;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-feature {
  margin-top: 40px;
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-feature-icon i {
  font-size: 24px;
  color: var(--primary-color-1);
}

/* Services Section */
.services {
  background-color: #f8f9fa;
  position: relative;
}

.service-item {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-color-1);
}

.service-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 15px 0;
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary-color-5);
  margin-right: 10px;
}

/* Features Section */
.features {
  position: relative;
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-color-1);
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: white;
}

/* Price Plan Section */
.price-plan {
  background-color: #f8f9fa;
  position: relative;
}

.price-item {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  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-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(58, 124, 165, 0.05);
  transition: all 0.5s ease;
  z-index: -1;
}

.price-item:hover::before {
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 30px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.price-features li i {
  color: var(--primary-color-5);
  margin-right: 10px;
}

/* Team Section */
.team {
  position: relative;
}

.team-item {
  text-align: center;
  margin-bottom: 40px;
}

.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.team-img img {
  transition: all 0.5s ease;
}

.team-item:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  color: var(--primary-color-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: #f8f9fa;
  position: relative;
}

.review-item {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--primary-color-1-light);
  position: absolute;
  top: 0;
  left: 0;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-info h5 {
  margin-bottom: 5px;
}

.review-author-info p {
  font-size: 14px;
  color: #777;
}

/* Core Info Section */
.core-info {
  position: relative;
}

.core-info-item {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.core-info-icon i {
  font-size: 30px;
  color: var(--primary-color-1);
}

/* Contact Section */
.contact {
  background-color: #f8f9fa;
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 52px;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  height: 140px;
  padding: 20px;
}

.form-check {
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(58, 124, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--primary-color-1);
}

/* Blog Section */
.blog {
  position: relative;
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  background-color: white;
}

.blog-date {
  font-size: 14px;
  color: var(--primary-color-1);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(58, 124, 165, 0.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='%233A7CA5'%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;
  background-color: white;
}

/* Gallery Section */
.gallery {
  position: relative;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--primary-color-4);
  color: white;
  padding: 70px 0 20px;
  position: relative;
}

.footer-heading {
  font-size: 24px;
  margin-bottom: 30px;
  color: white;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

/* Space page */
.space-wrapper {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-color-4);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: white;
  position: relative;
  z-index: 2;
}

.page-header-shape {
  position: absolute;
  z-index: 1;
}

.page-header-shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.page-header-shape-2 {
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

.delay-3 {
  animation-delay: 3s;
}

/* Shapes */
.shape-circle {
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(58, 124, 165, 0.1);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(243, 146, 55, 0.1);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background-color: rgba(129, 193, 75, 0.1);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
} 