:root {
  /* Main color palette */
  --primary-color-1: #4b6cb7; /* Deep blue */
  --primary-color-2: #7d93c5; /* Medium blue */
  --primary-color-3: #f3c06e; /* Gold accent */
  --primary-color-4: #e6f0f6; /* Light blue */
  --primary-color-5: #2d3e50; /* Dark navy */

  /* Light/dark variations */
  --primary-color-1-light: #6a84c5;
  --primary-color-1-dark: #385da4;
  --primary-color-2-light: #9badd3;
  --primary-color-2-dark: #6379b7;
  --primary-color-3-light: #f7d08b;
  --primary-color-3-dark: #eab051;
  --primary-color-4-light: #f5f9fc;
  --primary-color-4-dark: #d7e6f0;
  --primary-color-5-light: #3c526a;
  --primary-color-5-dark: #1e2a36;
}

/* Base styles */
html, body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color-5);
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

/* Utility classes */
.text-primary {
  color: var(--primary-color-1) !important;
}

.bg-primary {
  background-color: var(--primary-color-1) !important;
}

.bg-light {
  background-color: var(--primary-color-4) !important;
}

.bg-dark {
  background-color: var(--primary-color-5) !important;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-3);
}

/* Header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-out;
  background-color: transparent;
}

.header-area.sticky {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color-5);
}

.nav-link {
  font-weight: 500;
  padding: 10px 20px !important;
  color: var(--primary-color-5);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

.nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-area {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-4);
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-1-light);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-feature {
  padding: 30px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.about-feature h4 {
  margin-bottom: 15px;
}

/* Services Section */
.services-item {
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color-1);
  transition: all 0.4s ease;
  z-index: -1;
}

.services-item:hover:before {
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
}

.services-item:hover h4,
.services-item:hover p,
.services-item:hover .services-icon i {
  color: #fff;
}

.services-icon {
  margin-bottom: 25px;
}

.services-icon i {
  font-size: 50px;
  color: var(--primary-color-3);
  transition: all 0.3s ease;
}

.services-item h4 {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services-item p {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.services-features {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.services-features li {
  margin-bottom: 10px;
}

/* Features Section */
.features-item {
  text-align: center;
  margin-bottom: 30px;
}

.features-icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color-4);
}

.features-icon i {
  font-size: 40px;
  color: var(--primary-color-1);
}

.features-item h4 {
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-item {
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-item.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color-3);
}

.price-head {
  margin-bottom: 30px;
}

.price-head h4 {
  margin-bottom: 10px;
}

.price-tag {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.price-tag span {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.price-features {
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.4s ease;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 25px 20px;
  text-align: center;
  background-color: #fff;
}

.team-content h4 {
  margin-bottom: 5px;
}

.team-content p {
  color: #777;
  margin-bottom: 0;
}

/* Reviews/Testimonials Section */
.testimonial-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  margin: 15px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-item h5 {
  margin-bottom: 5px;
}

.testimonial-item span {
  color: #777;
  font-size: 14px;
}

.quote-icon {
  font-size: 30px;
  color: var(--primary-color-3);
  margin-bottom: 20px;
  display: inline-block;
}

/* Core Info Section */
.core-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.core-info-icon {
  flex: 0 0 60px;
  margin-right: 20px;
}

.core-info-icon i {
  font-size: 35px;
  color: var(--primary-color-3);
}

.core-info-content h4 {
  margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form {
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  padding: 15px 20px;
}

.custom-control-label {
  line-height: 1.6;
}

/* Blog Section */
.blog-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: all 0.4s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  margin-bottom: 15px;
}

.blog-content h4 a {
  color: var(--primary-color-5);
}

.blog-content h4 a:hover {
  color: var(--primary-color-1);
}

.blog-meta {
  margin-bottom: 15px;
}

.blog-meta span {
  margin-right: 15px;
  font-size: 14px;
  color: #777;
}

.blog-meta span i {
  margin-right: 5px;
  color: var(--primary-color-3);
}

/* FAQ Section */
.faq-accordion .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-accordion .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}

.faq-accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  color: var(--primary-color-5);
  font-weight: 600;
  position: relative;
  text-decoration: none;
  background-color: #fff;
}

.faq-accordion .btn-link:hover, 
.faq-accordion .btn-link:focus {
  text-decoration: none;
}

.faq-accordion .btn-link:after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq-accordion .btn-link.collapsed:after {
  transform: translateY(-50%) rotate(-180deg);
}

.faq-accordion .card-body {
  padding: 0 25px 20px;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(75, 108, 183, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  color: var(--primary-color-1);
  font-size: 18px;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer */
.footer-area {
  background-color: var(--primary-color-5);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-widget p {
  margin-bottom: 30px;
}

.footer-links {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-bottom {
  background-color: var(--primary-color-5-dark);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb-area {
  padding: 150px 0 100px;
  background-color: var(--primary-color-4);
  position: relative;
  overflow: hidden;
}

.breadcrumb-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumb-list {
  display: inline-block;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.breadcrumb-list li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}

.breadcrumb-list li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcrumb-list li:after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
}

.breadcrumb-list li:last-child:after {
  display: none;
}

.breadcrumb-list li a {
  color: var(--primary-color-5);
}

.breadcrumb-list li a:hover {
  color: var(--primary-color-1);
}

/* Button */
.btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--primary-color-5);
}

.btn-secondary:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
  color: var(--primary-color-5);
}

/* Space page */
#space {
  min-height: 600px;
  padding: 50px 0;
}

/* Responsive adjustment for swiper/slider */
@media (max-width: 768px) {
  .swiper-container {
    overflow: hidden;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
} 