<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* Color palette - pastel tones for cybersecurity */
  --primary-1: #8ac6d0; /* Soft teal */
  --primary-2: #e6b89c; /* Muted terracotta */
  --primary-3: #d9a5b3; /* Dusty rose */
  --primary-4: #9cada4; /* Sage green */
  --primary-5: #c6c09c; /* Sand */
  
  /* Light/dark shades */
  --primary-1-light: #a8d7df;
  --primary-1-dark: #5d9aa6;
  --primary-2-light: #f6d4c4;
  --primary-2-dark: #b6937c;
  --primary-3-light: #ebc8d1;
  --primary-3-dark: #ad7f8f;
  --primary-4-light: #b9d2c2;
  --primary-4-dark: #708b80;
  --primary-5-light: #dbd6bc;
  --primary-5-dark: #9e9878;
  
  /* Neutrals */
  --dark: #1c2a39;
  --light: #f8f9fa;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-small-padding: 3rem 0;
}

/* Base styling */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary-1-dark);
}

.section-subtitle {
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header .navbar-brand {
  font-weight: 700;
  color: var(--primary-1-dark);
  font-size: 1rem;
}

.header .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.header .nav-link:hover {
  color: var(--primary-1);
}

.header .nav-link.active {
  color: var(--primary-1);
}

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

.hero-slide {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  color: var(--light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-desc {
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* About Section */
.about-section {
  background-color: var(--light);
  position: relative;
}

.about-feature {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

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

.about-feature-name {
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.services-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.services-item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.services-item-content {
  padding: 2rem;
}

.services-item-name {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-1-dark);
}

.services-item-price {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.services-item-features li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--primary-2);
  font-weight: 700;
}

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

.features-item {
  padding: 2rem;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.features-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--primary-3);
  transition: all 0.3s ease;
}

.features-item:hover::after {
  width: 100%;
}

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

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

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

.priceplan-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

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

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--primary-4);
}

.priceplan-item-name {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary-4-dark);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-4);
}

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

.priceplan-item-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.priceplan-item-features li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--primary-4);
  font-weight: 700;
}

/* Team Section */
.team-section {
  background-color: var(--light);
  position: relative;
}

.team-member {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.team-member-content {
  padding: 1.5rem;
  text-align: center;
}

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

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

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

.reviews-slide {
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  height: auto;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1.5rem;
}

.reviews-item-text::before,
.reviews-item-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-5-light);
  position: absolute;
  font-family: serif;
}

.reviews-item-text::before {
  top: -1.5rem;
  left: 0;
}

.reviews-item-text::after {
  bottom: -2.5rem;
  right: 0;
}

.reviews-item-author {
  font-weight: 600;
  text-align: right;
  color: var(--primary-5-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light);
  position: relative;
}

.coreinfo-item {
  padding: 2rem;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.coreinfo-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent var(--primary-1-light) transparent transparent;
}

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

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

.coreinfo-item-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 1.5rem;
}

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

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

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info i {
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light);
  position: relative;
}

.blog-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

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

.blog-item-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-item-link {
  color: var(--primary-1-dark);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
  transition: all 0.3s ease;
}

.blog-item-link::after {
  content: 'â†’';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-1);
}

.blog-item-link:hover::after {
  right: -5px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* SVG shapes */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: #f9f9f9;
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider-top .shape-fill {
  fill: #f9f9f9;
}

/* Animation effects */
.animated-box {
  position: relative;
  overflow: hidden;
}

.animated-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.8s;
}

.animated-box:hover::before {
  left: 100%;
}

/* Space page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
} </pre></body></html>