<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* Primary Colors */
  --primary-color: #7E57C2;      /* Main Purple */
  --secondary-color: #FFAB91;    /* Peach */
  --accent-color: #4ECDC4;       /* Teal */
  --neutral-color: #F7F7F7;      /* Light Grey */
  --dark-color: #37474F;         /* Dark Blue-Grey */
  
  /* Shades */
  --primary-light: #B39DDB;
  --primary-dark: #5E35B1;
  --secondary-light: #FFCCBC;
  --secondary-dark: #FF8A65;
  --accent-light: #A7FFEB;
  --accent-dark: #26A69A;
  --neutral-dark: #E0E0E0;
  --dark-light: #546E7A;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  background-color: var(--neutral-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 171, 145, 0.3);
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--neutral-color);
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-light);
  z-index: -1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-1 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hero-desc-1 {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 62% 38% 46% 54% / 60% 68% 32% 40%;
  opacity: 0.1;
  z-index: -1;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(126, 87, 194, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  background-color: #f9f8ff;
  position: relative;
}

.services-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
  z-index: 1;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.1);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
overflow-x: hidden;
  padding: 2rem;
}

.service-card-price {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card-features {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.service-card-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Features Section */
.features {
  position: relative;
  background-color: white;
}

.feature-item {
  display: flex;
  margin-bottom: 3rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 20px;
  margin-right: 1.5rem;
  font-size: 2rem;
}

.feature-content h3 {
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background-color: #f9f8ff;
  position: relative;
}

.price-card {
  background-color: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-light);
  z-index: -1;
  transition: all 0.5s ease;
}

.price-card:hover::before {
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.15);
}

.price-card-header {
  margin-bottom: 2rem;
}

.price-card-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-card-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2rem;
}

.price-card-features li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f1f1;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-member-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: #f9f8ff;
  position: relative;
}

.swiper-reviews {
  overflow: hidden;
  padding-bottom: 50px;
}

.review-card {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: serif;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background-color: var(--neutral-color);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  background-color: var(--primary-color);
  color: white;
}

.coreinfo-item:hover h3 {
  color: white;
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact {
  background-color: #f9f8ff;
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 10px;
  border: 2px solid #eaeaea;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.1);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-body {
overflow-x: hidden;
  padding: 2rem;
}

.blog-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background-color: #f9f8ff;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  font-weight: 600;
  padding: 1.25rem;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237E57C2'%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 {
overflow-x: hidden;
  padding: 1.25rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: white;
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #B0BEC5;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  padding-left: 5px;
}

#site-copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #B0BEC5;
}

/* Shape Decorations */
.shape-decoration {
  position: absolute;
  z-index: -1;
}

.shape-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-light);
  opacity: 0.1;
}

.shape-blob {
  width: 300px;
  height: 300px;
  background-color: var(--secondary-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Additional Pages */
.page-header {
  height: 400px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(126, 87, 194, 0.9) 0%, rgba(78, 205, 196, 0.7) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  background: none;
  margin: 0;
  padding: 0;
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a {
  color: white;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.page-section {
  padding: 6rem 0;
}

/* Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Media Query for Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .float-animation {
    animation: none;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .transition-effect {
    transition: none !important;
  }
} </pre></body></html>