/* Base styling */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
  line-height: 1.6;
}

.theme-light {
  background-color: #f4f4f4;
  color: #1a1a1a;
}

.theme-dark {
  background-color: #1a1a1a;
  color: #f4f4f4;
}

/* Header & Navigation */
.header {
  background: transparent;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
  background-color: transparent;
  padding: 0.25rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.menu {
  color: rgb(0, 76, 153);
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.menu li a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
}

/* General Section */
.section {
  padding: 4rem 2rem;
  transition: background-color 0.5s ease;
}

.section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.hero-image {
  width: 100%;
  max-width: 1200px; /* Prevents overly stretched images on large screens */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  object-fit: cover;
  display: block;
  margin: 0 auto; /* Center image horizontally */
}

@media (max-width: 768px) {
  .hero-image {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }
}


/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

.contact-form label {
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #0057ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #003fcc;
}

/* Blockquotes for Testimonials */
blockquote {
  font-style: italic;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  padding: 1rem;
  border-left: 4px solid #ccc;
}

cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: #888;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .contact-form {
    width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .section h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.25rem;
  }

  .menu {
    gap: 0.5rem;
  }
}
.hero-section {
  position: relative;
  background-image: url('fabio.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* White text over dark overlay */
}

.hero-section2 {
  position: relative;
  background-image:;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* White text over dark overlay */
}

.hero-section3 {
  position: relative;
  background-image:;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff; /* White text over dark overlay */
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  padding: 2rem;
  border-radius: 12px;
  max-width: 80%;
  backdrop-filter: blur(8px); /* Optional: adds glassmorphism effect. increase from 4 to 8 */
}

.overlay2 {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  max-width: 100%;
  width: 100%;
  max-height: 80vh; /* Prevents it from taking more than 80% of screen height */
  /*overflow-y: auto;   Enables scrolling if content is too tall */
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}



@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 4rem 1rem;
  }

  .overlay {
    padding: 1.5rem;
  }
}

.packages {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.package {
  flex: 1 1 250px;
  border: 2px solid;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease-in-out;
}

.package:hover {
  transform: translateY(-5px);
}

.package h3 {
  margin-top: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 1.2rem;
}

.essential {
  border-color: #007bff;
}
.essential h3 {
  background-color: #007bff;
}

.business {
  border-color: #28a745;
}
.business h3 {
  background-color: #28a745;
}

.growth {
  border-color: #ffc107;
}
.growth h3 {
  background-color: #ffc107;
}

.services-wrapper {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  width: 100%;
}

.services-list li {
  margin-bottom: 1rem;
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.services-zigzag {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.service-box {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 600px;
  position: relative;
}

.service-box.left {
  align-self: flex-start;
}

.service-box.right {
  align-self: flex-end;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .service-box {
    align-self: center !important;
    width: 100%;
  }
}

.service-box .icon {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 0.75rem;
  vertical-align: middle;
}
.service-box strong {
  font-size: 1.1rem;
}
.service-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

