header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 801px) {
.smaller-text {
  font-size: 20px;  
  text-align: left !important;
  position: absolute;
  bottom: 40px;
  }
}

.input_text {
  border-radius: 5px;
  width: 600px;
  height: 30px;
  white-space: nowrap;
  word-wrap: break-word;
  overflow: auto
  margin: 10px;
}
.input_button {
  border: none;
  border-radius: 5px;
  margin: 5px 10px;  
  margin-left: 10px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

/* Shared base styles for both pages */
.page-home,
.page-about {
  height: 100vh;
  width: 100vw;
  background-image: url('/static/QDmarketing.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top -110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .page-home,
  .page-about {
    background-position: center top; /* removes the -110px offset */
  }
}


/* ABOUT PAGE ONLY: dark overlay */
.page-chat::before,
.page-chatter::before,
.page-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}



/* About page content above overlay */
.page-about .content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


/* Optional: Home content styling */
.page-home .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}



h1, h3, h4, h5 {
  color: #a8b3af;
}

h2 {
  color: #bed1ca;
  opacity: 0.6;
}


p {
  color: #ffffff;
  font-size: 1.1em;
    
}

h6 {
  color: #5C7F71;
  font-size: 1.2em; 
}

.text-block {
  width: 100%;
  padding: 0 50px;

  /*color: #d3d3d3;  light grey */
  /* color: #333; darker grey for visibility */
  box-sizing: border-box;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

.text-block p {
  color: #333;

}


.small-font {
  font-size: 0.8em;
}


.content-section {
  background-color: rgba(0, 0, 0, 0);
  padding: 100px 0px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
}

a.article-title:hover {
  color: #428bca;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}


.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.hover-menu {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5); /* 50% transparency */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;

  overflow: auto; /* Enable scrolling if the menu content overflows */
}

.hover-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hover-menu li {
  margin-bottom: 10px;
}

.hover-menu a {
  display: block;
  padding: 10px 15px;
  background-color: #eee;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease-in-out;
}

.hover-menu a:hover {
  background-color: #ddd;
}

/*This below is on page web_site*/
.tiered-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tiered-option {
  width: 25%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #333;
  text-align: center;
}

.tiered-option h3 {
  font-size: 20px;
  font-weight: bold;
}

.tiered-option p {
  font-size: 16px;
}

.tiered-option .price {
  font-size: 24px;
  font-weight: bold;
  color: green;
}

.tiered-option button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}

.tiered-option button:hover {
  background-color: darkblue;
}

.container {
  position: relative;
}

.text1 {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: showText1;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
  }


.text2 {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: showText2;
  animation-duration: 1s;
  animation-delay: 0s; /* Initially hidden */
  animation-fill-mode: forwards;
}

@keyframes showText1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes showText2 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.footer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212529; /* matches Bootstrap's bg-dark */
  color: #ffffff;
}

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

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #bed1ca;
  opacity: 0.6;
}

.tiered-option {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  color: #333;
  width: 100%; /* Let Bootstrap col define size */
  min-width: 250px; /* Prevent shrinking too far */
  max-width: 350px; /* Optional, keeps design tidy */
  margin: 0 auto;
}

.tiered-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tiered-option h3,
.tiered-option p,
.tiered-option h5 {
  color: #333 !important;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tiered-option .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}

.tiered-option button {
  margin-top: 10px;
  padding: 10px 20px;
}

/* ✅ Google box */
.google-box {
    position: relative;
    overflow: hidden;
}

.google-box::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg');
    background-size: 220px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
}

.google-box > * {
    position: relative;
    z-index: 1;
}

/* ✅ Meta box (identical sizing) */
.meta-box {
    position: relative;
    overflow: hidden;
}

.meta-box::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/static/meta.png');
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.meta-box > * {
    position: relative;
    z-index: 1;
}

.Amazon-box::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/static/Amazon-Logo.png');
    background-size: 180px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.Amazon-box > * {
    position: relative;
    z-index: 1;
}

.service-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
}

.service-box h5 {
    font-weight: 600;
}

.read-more {
    color: #2e4735;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Subtle Google colors with opacity for backgrounds */
.google-blue {
    background-color: rgba(66, 133, 244, 0.9);
}
.google-red {
    background-color: rgba(234, 67, 53, 0.9);
}
.google-yellow {
    background-color: rgba(251, 188, 5, 0.9);
}
.google-green {
    background-color: rgba(52, 168, 83, 0.9);
}
.google-blue-alt {
    background-color: rgba(66, 133, 244, 0.9);
}
.google-red-alt {
    background-color: rgba(234, 67, 53, 0.9);
}


