:root {
  /* Color Palette - Pastel harmonious colors */
  --primary-1: #d6e5f3; /* Soft pastel blue */
  --primary-2: #f3e2d6; /* Warm beige */
  --primary-3: #e5d6f3; /* Soft lavender */
  --primary-4: #d6f3e2; /* Mint green */
  --primary-5: #f3d6e5; /* Soft pink */
  
  /* Light/dark variations */
  --primary-1-light: #eaf2fa;
  --primary-1-dark: #a7c7e7;
  --primary-2-light: #faf2ea;
  --primary-2-dark: #e7c7a7;
  --primary-3-light: #f2eafa;
  --primary-3-dark: #c7a7e7;
  --primary-4-light: #eafaf2;
  --primary-4-dark: #a7e7c7;
  --primary-5-light: #faeaf2;
  --primary-5-dark: #e7a7c7;
  
  /* Text colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

p {
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem !important;
  color: var(--primary-1-dark);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1-dark);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: var(--spacing-xl) 0;
}

.hero-title {

  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: var(--spacing-md);
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 600px;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-1);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  font-size: 2.5rem;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-1-dark);
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
  font-size: 1.2rem;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* About Section */
.about-section {
  background-color: var(--primary-1-light);
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: var(--spacing-md);
}

/* Services Section */
.services-section {
  background-color: #ffffff;
}

.service-card {
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-1-light);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1-dark);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.service-price {
  font-weight: 700;
  color: var(--primary-1-dark);
  margin-bottom: var(--spacing-sm);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

.service-features {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--primary-2-light);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2-dark);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.feature-desc {
  color: var(--text-medium);
}

/* Price Plan Section */
.priceplan-section {
  background-color: #ffffff;
}

.price-card {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-3-light);
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3-dark);
  margin-bottom: var(--spacing-md);
}

.price-desc {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

.price-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.price-features li {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Team Section */
.team-section {
  background-color: var(--primary-4-light);
}

.team-card {
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.team-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: var(--spacing-sm);
}

.team-img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-4-dark);
  margin-bottom: var(--spacing-sm);
}

/* Reviews Section */
.reviews-section {
  background-color: #ffffff;
}

.review-card {
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-5-light);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding: 0 1.5rem;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-5-dark);
  position: absolute;
}

.review-text:before {
  left: 0;
  top: -10px;
}

.review-text:after {
  right: 0;
  bottom: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-5-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-5-light);
}

.coreinfo-card {
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-5-dark);
}

.coreinfo-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.coreinfo-desc {
  color: var(--text-medium);
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
}

.contact-form-wrapper {
  background-color: #ffffff;
  padding: var(--spacing-md);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1-dark);
}

.btn-submit {
  background-color: var(--primary-1-dark);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-1);
  color: var(--text-dark);
}

.contact-info {
  margin-top: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-1-dark);
}

.contact-info-text {
  color: var(--text-medium);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.footer-desc {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-1);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.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-info p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.5);
}

/* Shape Decorations */
.shape-decorator {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-2 {
  bottom: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments will be in responsive.css */ 