<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* Color Palette */
  --primary-color-1: #57467B; /* Deep purple */
  --primary-color-2: #7B88A7; /* Blue gray */
  --primary-color-3: #F2C879; /* Golden */
  --primary-color-4: #E95D5D; /* Coral red */
  --primary-color-5: #2D3E50; /* Dark blue */
  
  /* Light/dark variants */
  --primary-color-1-light: #786599;
  --primary-color-1-dark: #3A2D5A;
  --primary-color-2-light: #99A5BE;
  --primary-color-2-dark: #5C6A87;
  --primary-color-3-light: #FFE3A9;
  --primary-color-3-dark: #D4AA5B;
  --primary-color-4-light: #F68080;
  --primary-color-4-dark: #C83E3E;
  --primary-color-5-light: #4A5F73;
  --primary-color-5-dark: #1A2530;
  
  /* Grays */
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color-5);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  position: relative;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
}

/* Button Styles */
.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-4);
  border-color: var(--primary-color-4);
}

.btn-secondary:hover {
  background-color: var(--primary-color-4-dark);
  border-color: var(--primary-color-4-dark);
}

/* Header */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-color-5);
}

.navbar-scrolled {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(87, 70, 123, 0.9) 0%, rgba(45, 62, 80, 0.8) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../VEN_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* About Section */
.about-feature {
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  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);
}

/* Services Section */
.services-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-item-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.services-item-content {
  padding: 30px;
  background-color: #fff;
}

.services-item-price {
  display: inline-block;
  background-color: var(--primary-color-3);
  color: var(--primary-color-5);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 15px;
}

.services-item-features {
  margin-top: 20px;
  padding-left: 0;
}

.services-item-features li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.services-item-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  background-color: var(--light-gray);
}

.features-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-item i {
  font-size: 48px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-item {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.priceplan-item.featured {
  background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-5) 100%);
  color: #fff;
}

.priceplan-item.featured h3,
.priceplan-item.featured .price {
  color: #fff;
}

.priceplan-item .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color-1);
  margin: 20px 0;
}

.priceplan-item-features {
  padding-left: 0;
  margin: 30px 0;
}

.priceplan-item-features li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.priceplan-item.featured .priceplan-item-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Team Section */
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member-image {
  position: relative;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.team-member-name {
  font-size: 22px;
  margin-bottom: 5px;
}

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

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
}

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

.review-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
  position: relative;
}

.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;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: var(--primary-color-3);
}

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

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 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);
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 40px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  margin-bottom: 20px;
}

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

.contact-info {
  padding: 40px;
  background-color: var(--primary-color-1);
  color: #fff;
  border-radius: 10px;
  height: 100%;
}

.contact-info i {
  font-size: 24px;
  margin-right: 10px;
}

/* Blog Section */
.blog-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.blog-item-content {
  padding: 30px;
}

.blog-item-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-item-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: #fff;
  font-weight: 600;
  padding: 20px;
}

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

.accordion-body {
  padding: 20px;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

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

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

/* Footer */
footer {
  background-color: var(--primary-color-5-dark);
  color: #fff;
  padding: 80px 0 30px;
}

footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
}

footer p {
  margin-bottom: 15px;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  list-style: none;
  margin-bottom: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #fff;
}

#site-copyright {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: block;
}

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

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: rgba(242, 200, 121, 0.3);
  border-radius: 50%;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: rgba(123, 136, 167, 0.3);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
  top: 50%;
  right: 10%;
  width: 80px;
  height: 80px;
  background-color: rgba(233, 93, 93, 0.3);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

/* Additional Pages */
.page-header {
  background: linear-gradient(135deg, rgba(87, 70, 123, 0.9) 0%, rgba(45, 62, 80, 0.8) 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../VEN_images/page-header-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.4;
}

.page-header h1 {
  font-size: 48px;
  color: #fff;
}

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

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

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
} </pre></body></html>