<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-logo {
  height: 250px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}


.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-text button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-text button:hover {
  background-color: #e65c00;
}

/* Responsive - stack vertically on small screens */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 20px;
  }
}


/* Features Section */
.features {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.features-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card img {
  width: 60px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
}

/* Animation on scroll */
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature {
    width: 30%;
  }
}

/* Report Section */
.report-section {
  padding: 50px 20px;
  background-color:black;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: whitesmoke;
}

.report-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.report-card {
  background-color: whitesmoke;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.report-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111;
}

.report-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Animation Class */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout */
@media (min-width: 768px) {
  .report-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .report-card {
    width: 30%;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.pricing-heading h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.pricing-heading span {
  font-size: 1.1rem;
  color: #666;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 1;
}


.pricing-card img {
  max-width: 100px;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.pricing-card .price {
  font-size: 1.1rem;
  margin: 10px 0 20px;
  color: #1d4ed8;
}

.pricing-card .price del {
  color: #888;
  margin-right: 6px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card ul li {
  font-size: 0.95rem;
  color: #444;
  margin: 8px 0;
}

.pricing-card .order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1d4ed8;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.pricing-card .order-btn:hover {
  background-color: #0f3dc2;
}

.sale-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ef4444;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}



/* Testamonial section */

.testimonials-section {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  max-width: 300px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
  color: #facc15; /* yellow stars */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer img {
  width: 20px;
  height: 15px;
  object-fit: contain;
  border-radius: 2px;
}

.reviewer span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
  }
}



.footer {
  background-color: #000000;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
  margin-top: 20px;
}

.footer-links h3,
.footer-contact h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #888;
}
</pre></body></html>