/* CSS class for the logo */
.logo {
    width: 50px;  /* Adjust width */
    height: auto;  /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;  /* Center the logo if desired */
}

/* Optional: Additional classes for different background logos */
.logo-white {
    /* background-image: url("/static/assets/logo_white_background.621e9dbabef8.png"); */
    background-image: url("/static/assets/logo_transparent_blue.8dc92e0a62a8.png");
    background-size: contain;  /* Ensure the logo fits the container */
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}

.logo-black {
    /* background-image: url("/static/assets/logo_black_background_new_foreground.29157ffcdbae.png");  */
    background-image: url("/static/assets/logo_transparent_green_from_black_bg.7037722e1992.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}

/* Style for footer */
.site-footer--container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #f8f9fa; /* Light grey background */
}

.footer-logo {
    display: block;
    margin-bottom: 30px;
}
.footer-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-align: left; /* Align the title to the left */
    margin-bottom: 15px;
}

.footer-title a {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.footer-title, .footer-list a {
    font-family: 'Montserrat', sans-serif;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    text-align: left; /* Align list items to the left */
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #4ec6c2;
}

.footer-social-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
}

.footer-social-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-list li a:hover {
    color: #4ec6c2;
}

.site-footer--copyright p {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}
.site-footer ul {
    margin-left: 0px;

}
/* Responsive Design */
@media (max-width: 768px) {
    .site-footer--container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .site-footer--container {
        grid-template-columns: 1fr;
    }
    .footer-social-list {
        justify-content: center;
    }
}



.demo-articles {
  margin-top: 40px;
  text-align: center;
}
.demo-articles-title {
  font-size: 2rem;
  color: #4ec6c2;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.demo-articles-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.demo-article-card {
  background: rgba(30, 35, 40, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(78, 198, 194, 0.12);
  width: 300px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #4ec6c2;
}
.demo-article-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 28px rgba(78, 198, 194, 0.22);
}
.demo-article-img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2.5px solid #4ec6c2;
  background: #111;
}
.demo-article-content {
  width: 100%;
}
.demo-article-link {
  font-size: 1.08rem;
  font-weight: bold;
  color: #4ec6c2;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
.demo-article-link:hover {
  color: #fff;
  text-shadow: 0 0 6px #4ec6c2aa;
}
.demo-article-desc {
  color: #e8eaea;
  font-size: 0.98rem;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .demo-articles-list {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .demo-article-card {
    width: 94vw;
    max-width: 330px;
  }
}


.qimeta-contact-line {
  margin-top: 44px;
  padding: 18px 0 0 0;
  text-align: center;
  font-size: 1.08em;
  color: #e0e4ea;
  letter-spacing: 0.01em;
  border-top: 1px solid #333d;
}
.qimeta-contact-line a {
  font-weight: 600;
  transition: color 0.2s;
}
.qimeta-contact-line a:hover {
  color: #fff;
  text-decoration: underline;
}


.qimeta-features-section {
  background: rgba(10,14,18,0.92);
  padding: 60px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qimeta-h2 {
  color: #4ec6c2;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.qimeta-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1050px;
}
.qimeta-feature-card {
  background: rgba(30,35,40,0.97);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(78,198,194,0.09);
  border: 1.2px solid #4ec6c2;
  padding: 28px 20px 20px 20px;
  width: 215px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.qimeta-feature-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(78,198,194,0.20);
}
.qimeta-feature-icon {
  font-size: 2.2em;
  color: #4ec6c2;
  margin-bottom: 12px;
  display: block;
}
.qimeta-feature-card h4 {
  color: #fff;
  font-size: 1.08em;
  margin: 0 0 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}
.qimeta-feature-card p {
  color: #e8eaea;
  font-size: 0.96em;
  text-align: center;
  margin: 0;
}
@media (max-width: 950px) {
  .qimeta-features-grid {
    gap: 20px;
  }
  .qimeta-feature-card {
    width: 46vw;
    min-width: 185px;
    max-width: 260px;
  }
}
@media (max-width: 700px) {
  .qimeta-features-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .qimeta-feature-card {
    width: 90vw;
    min-width: 160px;
    max-width: 340px;
  }
}


.case-study-download-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(78, 198, 194, 0.12);
  color: #4ec6c2;
  border-radius: 100px;
  padding: 7px 18px 7px 14px;
  font-size: 0.97em;
  font-weight: 600;
  margin-top: 8px;
  text-decoration: none;
  border: 1px solid #4ec6c2;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.case-study-download-btn:hover,
.case-study-download-btn:focus {
  background: #4ec6c2;
  color: #222;
  border: 1.5px solid #4ec6c2;
  text-decoration: underline;
}
