* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

header {
  background: rgba(173, 255, 173, 0.8);
  color: #1a1a1a;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 1.2rem;
  width: 1.5rem;
  vertical-align: middle;
  margin-right: 0.2rem;
}

.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #1a1a1a;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(173, 255, 173, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

nav.nav-open {
  max-height: 500px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  text-align: center;
}

nav ul li {
  margin: 0.5rem 0;
}

nav ul li a {
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #77dd77;
}

.hero {
  background: linear-gradient(135deg, #f5f5dc 0%, #fff8dc 100%);
  color: #1a1a1a;
  padding: 2rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 1rem auto;
  display: block;
}

main {
  flex: 1;
  padding: 0;
}

section {
  margin-bottom: 2rem;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  line-height: 1.3;
  text-align: center;
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 1rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 0.75rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.4;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background-color: #f9f9f9;
  border: 1px solid #1a1a1a;
  padding: 1.5rem;
  text-align: center;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.about-fixora {
  padding: 2rem 1rem;
  margin-bottom: 1rem;
}

.customer-reviews {
  padding: 2rem 1rem;
}

.reviews-slider {
  position: relative;
  min-height: 120px;
}

.review {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 1rem 0;
}

.review.active {
  opacity: 1;
}

.review p {
  font-style: italic;
  margin-bottom: 1rem;
}

.review cite {
  font-weight: bold;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #1a1a1a;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  font-family: "Courier New", Courier, monospace;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  left: -50px;
}

.right {
  right: -50px;
}

.why-choose {
  background-color: #f5f5f5;
  padding: 2rem 1rem;
  margin: 2rem 0 0 0;
}

.why-choose ul {
  list-style: none;
  margin-top: 1rem;
}

.why-choose ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.why-choose ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #1a1a1a;
}

.quick-contact {
  background-color: #add8e6;
  color: #1a1a1a;
  padding: 2rem 1rem;
  text-align: center;
  margin-bottom: 0;
}

.quick-contact h2 {
  color: #1a1a1a;
}

.quick-contact a {
  color: #1a1a1a;
  text-decoration: underline;
}

.software-list {
  list-style: none;
  margin-top: 1.25rem;
  padding-left: 0;
}

.software-list li {
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.software-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-item {
  cursor: pointer;
  color: #0066cc;
  font-weight: bold;
}

.service-item:hover {
  text-decoration: underline;
  color: #004499;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90vw;
  position: relative;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-size: 0.9rem;
}

.contact-option:hover {
  background-color: #f5f5f5;
}

.contact-option img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.disclaimer {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.05rem;
  line-height: 1.6;
}

.virtual-assistant-list {
  list-style: none;
  margin-top: 1.25rem;
  padding-left: 0;
}

.virtual-assistant-list li {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.virtual-assistant-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about-content {
  background-color: #f5f5f5;
  padding: 2.5rem 1rem;
  margin: 2rem 0;
}

.statement {
  background-color: #000000;
  color: yellow;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 2rem;
  line-height: 1.6;
}

.statement h2 {
  color: yellow;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-link {
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
}

.icon {
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.icon:hover {
  transform: scale(1.1);
}

.contact-links .icon {
  filter: none;
}

.policy-content {
  background-color: #f9f9f9;
  padding: 1rem 0.5rem;
  margin: 0.75rem 0;
  border-radius: 4px;
}

.policy-content h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.3rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.policy-content ul {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}



.trusted-by-section {
  margin-bottom: 0;
  background: linear-gradient(135deg, #add8e6 0%, #b0e0e6 100%);
}

.trusted-by {
  text-align: center;
  padding: 1rem 0;
  margin-top: 0;
}

.trusted-by h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0.5rem;
}

.marquee-content {
  display: inline-block;
  animation: marquee 60s linear infinite;
  font-size: 0.8rem;
}

.company {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 0.5rem;
}

.easeus { color: #ff6600; }
.adobe { color: #ff0000; }
.microsoft { color: #00bcff; }
.google { color: #4285f4; }
.apple { color: #000000; }
.norton { color: #ff0000; }
.mcafee { color: #ff6600; }
.avast { color: #00bfff; }
.malwarebytes { color: #ff6600; }
.kaspersky { color: #0066cc; }

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}

.footer-left {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-left h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-left img {
  height: 1.2rem;
  width: 1.5rem;
  vertical-align: middle;
  margin-right: 0.2rem;
}

.footer-left p {
  font-size: 0.85rem;
  line-height: 1.4;
  max-height: none;
  overflow: visible;
}

.footer-middle,
.footer-explore,
.footer-right {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid #bbb;
  margin: 1rem 0;
}

.footer-contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 300px;
}

.footer-contact-links .contact-link {
  background: none;
  padding: 0;
}

.footer-contact-links .contact-link:hover {
  background: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem 0 2rem 0;
  text-align: center;
  margin-top: auto;
}

.copyright {
  text-align: center;
  padding: 0;
  font-size: 0.75rem;
  color: #ccc;
}

#typing-section {
  padding: 0.5rem 0;
  text-align: center;
  background-color: #fff;
  margin: 0;
}

#typing {
  font-size: 1rem;
  color: #1a1a1a;
  min-height: 1.2rem;
  border-right: 2px solid #1a1a1a;
}

@media (min-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 1.5rem;
    width: 1.8rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  .policy-content {
    padding: 1.5rem 0.75rem;
    margin: 1rem 0;
  }

  .software-list li {
    font-size: 1rem;
    padding: 0.875rem 0.375rem;
  }

  .footer-content {
    padding: 0.75rem;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 2rem;
  }

  header {
    padding: 1rem 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo img {
    height: 2rem;
    width: 2.4rem;
    margin-right: 0.3rem;
  }

  .hamburger {
    display: none;
  }

  nav {
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: none;
    overflow: visible;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    gap: 0.5rem;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: none;
    display: inline-block;
    width: auto;
  }

  .hero {
    padding: 4rem 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    margin: 2rem auto;
  }

  section {
    margin-bottom: 3rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: 1fr;
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card img {
    margin-bottom: 1.5rem;
  }

  .arrow {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    padding: 0.25rem;
  }

  .left {
    left: 10px;
  }

  .right {
    right: 10px;
  }

  .why-choose {
    padding: 3rem 2rem;
    margin: 3rem 0 0 0;
  }

  .quick-contact {
    padding: 3rem 2rem;
  }

  .trusted-by {
    padding: 1.5rem 0;
  }

  .trusted-by h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }

  .marquee-content {
    font-size: 1rem;
  }

  .company {
    font-size: 1.5rem;
    margin: 0 0.75rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .footer-left {
    flex: 1;
    padding-right: 2rem;
    text-align: left;
    margin-bottom: 0;
  }

  .footer-left h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .footer-left img {
    height: 1.5rem;
    width: 1.8rem;
    margin-right: 0.3rem;
  }

  .footer-left p {
    font-size: 0.9rem;
    max-height: 5rem;
    overflow: hidden;
  }

  .footer-middle,
  .footer-explore,
  .footer-right {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 0;
  }

  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-section li {
    margin-bottom: 0.75rem;
  }

  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-contact-links {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    max-width: none;
  }

  .footer-links {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  footer {
    padding: 1.5rem 0 3rem 0;
  }

  .copyright {
    font-size: 0.85rem;
  }

  #typing {
    font-size: 1.2rem;
    min-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .hero {
    padding: 5rem 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .why-choose {
    padding: 4rem 3rem;
  }

  .quick-contact {
    padding: 4rem 3rem;
  }

  .footer-content {
    padding: 0 3rem;
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 3rem;
  }

  .service-card {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    padding: 0.25rem;
  }

  .left {
    left: 10px;
  }

  .right {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 1rem;
    max-width: none;
    width: 95vw;
  }

  .close-btn {
    font-size: 1.2rem;
    top: 5px;
    right: 10px;
  }

  .contact-options {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .contact-option {
    padding: 0.4rem;
    font-size: 0.8rem;
  }

  .contact-option img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.4rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 10px;
  }

  .container {
    padding: 0 0.25rem;
  }

  header {
    padding: 0.25rem 0;
  }

  .logo {
    font-size: 0.8rem;
  }

  .logo img {
    height: 1rem;
    width: 1.2rem;
  }

  .hamburger {
    padding: 0.25rem;
  }

  .bar {
    width: 1rem;
    height: 1.5px;
  }

  nav ul li a {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }

  h1 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .virtual-assistant-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0.25rem;
  }

  .why-choose {
    padding: 1rem 0.25rem;
    margin: 1rem 0 0 0;
  }

  .why-choose ul li {
    padding: 0.25rem 0;
    padding-left: 1rem;
  }

  footer {
    padding: 0.5rem 0 1rem 0;
  }

  .footer-left h4 {
    font-size: 0.9rem;
  }

  .footer-left img {
    height: 0.8rem;
    width: 1rem;
  }

  .footer-left p {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .footer-section h4 {
    font-size: 0.9rem;
  }

  .footer-section a {
    font-size: 0.7rem;
  }

  .copyright {
    font-size: 0.5rem;
  }

  .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .popup-content {
    padding: 0.75rem;
    width: 98vw;
  }

  .close-btn {
    font-size: 1rem;
    top: 5px;
    right: 5px;
  }

  .contact-options {
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .contact-option {
    padding: 0.3rem;
    font-size: 0.7rem;
  }

  .contact-option img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
  }
}
