:root {
  /* Primary Colors */
  --primary-1: #4A6FA5; /* Deep Blue */
  --primary-2: #E09F3E; /* Golden Yellow */
  --primary-3: #9D4EDD; /* Purple */
  --primary-4: #2A9D8F; /* Teal */
  --primary-5: #E63946; /* Coral Red */

  /* Shades & Tints */
  --primary-1-light: #7393C0;
  --primary-1-dark: #2E4C82;
  --primary-2-light: #EEBE78;
  --primary-2-dark: #B77A1F;
  --primary-3-light: #B97FE9;
  --primary-3-dark: #7B2CBF;
  --primary-4-light: #4FB5A9;
  --primary-4-dark: #1E756A;
  --primary-5-light: #ED6D78;
  --primary-5-dark: #C91E2D;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --mid-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #1A1A1A;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-gray);
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-2);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline-primary {
  border-color: var(--primary-1);
  color: var(--primary-1);
}

.btn-outline-primary:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Header */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-2);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--off-white);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary-3-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  margin-bottom: 30px;
}

.about-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-2-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--off-white);
  position: relative;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  background: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-4);
  font-weight: 700;
}

/* Features Section */
.features-section {
  position: relative;
}

.features-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-3);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--off-white);
  position: relative;
}

.price-card {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-4);
  font-weight: 700;
}

.price-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary-3-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
  background: var(--white);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--off-white);
  position: relative;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.review-text:before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: var(--primary-2-light);
  opacity: 0.3;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.review-author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--mid-gray);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-4);
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.coreinfo-shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--primary-4-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Contact Section */
.contact-section {
  background-color: var(--off-white);
  position: relative;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-control {
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  background: var(--white);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--off-white);
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  color: var(--dark-gray);
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
}

.footer-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-contact h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-menu h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 10px;
}

.footer-menu ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
  color: var(--primary-2);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
}

/* Space Page */
.space-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.breadcrumb-area {
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  position: relative;
  margin-bottom: 80px;
}

.breadcrumb-area:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-nav li {
  color: var(--white);
  margin: 0 10px;
}

.breadcrumb-nav li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-nav li a:hover {
  color: var(--primary-2);
}

/* For sliders */
.swiper-container {
  width: 100%;
  padding-bottom: 50px;
}

.swiper-pagination-bullet {
  background: var(--primary-1);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fadeInUp {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
} 