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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.centered-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.light {
    color: white
}

.dark {
    color: #34495E
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }


/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
}

.h1-small {
    font-size: 30px !important;
}

.h2-large {
    font-size: 36px;
    font-weight: 700;
}

.lora-h1 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
  }

  .lora-h2 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    text-align: center;
  }


  .lora-h3 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
  }

.open-sans-h3 {
font-family: "Open Sans", sans-serif;
font-size: 16;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
font-variation-settings:
    "wdth" 100;
}

.p-centered {
    text-align: center;
}

.open-sans-p {
font-family: "Open Sans", sans-serif;
font-size: 18;
font-optical-sizing: auto;
font-weight: 200;
font-style: normal;
font-variation-settings:
    "wdth" 100;
}

.raleway-button {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  .poppins-h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    text-align: center
  }
  .poppins-h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px
  }

  .poppins-h2-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0; /* Changed from 10px 10px to 10px 0 */
}

.primary {
    background-color: #4ecdc4;
    color: white;
}

.secondary {
    background-color: white;
    color: #333;
    border: 1px solid #333;
}

/* Add this new class for the centered button on the services page */
.btn-centered {
    display: block;
    margin: 20px auto;
    width: fit-content;
}

/* Update the cta-buttons class */
.cta-buttons {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Add gap between buttons */
}

/* Responsive Design */
@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px; /* Maintain gap on desktop */
    }

    .btn {
        margin: 0; /* Remove vertical margin on desktop */
    }
}

#qv-logo-bolt {
    width: 20px;
}

/* Header styles */
header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: relative;
}

.booking-wrapper {
    background: linear-gradient(to right, #2c3e50, #203141);
}

.header-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo-unit-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.logo-unit-link:hover {
    text-decoration: none;
}

.logo-unit {
    display: flex;
    align-items: center;
}

#qv-logo-bolt {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.quantavista-text {
    font-size: 20px;
    color: white;
}

/* Hamburger menu styles */
.hamburger-menu {
    position: relative;
}

#hamburger-icon {
    width: 30px;
    height: auto;
    cursor: pointer;
}

#menu-items {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f4f4f4;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-width: 150px;
    z-index: 1001; /* Add this line */
}

#menu-items.hidden {
    display: none;
}

.menu-link {
    color: #333;
    text-decoration: none;
    padding: 5px 0;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

.menu-link:hover {
    text-decoration: underline;
}

/* Header */
.title {
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* Services Section */
.services-wrapper {
    width: 100%;
    padding: 20px 0;
}

.service-title {
    padding-bottom: 50px
}

.services {
    color: white;
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 30px
}

.service-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service-item p {
    margin: 0;
    margin-top: 10px; /* Add this line to restore spacing between image and text */
}

/* Tools Section */
.tools {
    color: white;
    padding: 40px 20px;
    margin: 0;
    width: 100%;
}

.tools h2 {
    color: white;
}

.faq-item h3 {
    color: white;
}

.faq-item p {
    padding-left: 10px;
    color: #f4f4f4;
}

.hipaa-badges {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial {
    background-color: #f4f4f4;
    padding: 40px 0;
    margin-bottom: 40px;
    width: 100%;
}

.testimonial .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-logo {
    width: 120px;
    height: auto;
    margin-right: 20px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
    font-size: 24px;
}

.testimonial-text {
    width: 100%;
}

.quote {
    font-style: italic;
    margin-bottom: 10px;
}

.author {
    font-weight: bold;
    text-align: right;
}

.testimonial .btn {
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonial-content {
        display: flex;
        align-items: flex-start;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        margin-right: 20px;
    }

    .testimonial-logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .testimonial-text {
        flex: 1;
    }
}

/* Footer styles */
.footer {
    background: linear-gradient(to right, #2c3e50, #203141);
    color: white;
    padding: 40px 0 20px;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 12px;
    margin-bottom: 10px;
}

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

.footer-link {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.8;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

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

    .cta-buttons {
        display: flex;
        justify-content: center;
    }

    .btn {
        margin: 0 10px;
    }

    /* New styles for increased padding on non-mobile screens */
    .full-width-gradient-bg {
        padding: 80px 0px 0px 0px; /* Increased from 40px */
    }

    .title-section {
        padding: 60px 0; /* Increased from 20px */
    }

    .centered-section {
        padding: 80px 0; /* Increased padding for response and testimonial sections */
    }

    .services-section {
        padding: 80px 10px; /* Added padding for services section */
    }

    .tools {
        padding: 80px 20px; /* Increased from 40px 20px */
    }

    .footer {
        padding: 80px 0 40px; /* Increased from 40px 0 20px */
    }
}

/* Response Section */
.response {
    background-color: #f4f4f4;
    padding: 50px 10px;
    /* margin-bottom: 20px; */
    width: 100%;
}

.response .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Add this line to set a max-width */
    margin: 0 auto; /* Center the container */
}

.response-item {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure full width within the container */
}

.vendor-list {
    list-style-type: none;
    padding-left: 0;
    width: 100%; /* Ensure full width */
}

.vendor-list li {
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

/* URL Form */
.url-form {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Allow it to take full width of its container */
}

.url-form label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

.url-input-container {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 40px; /* Set a fixed height for the container */
}

.url-prefix {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #f0f0f0;
    color: #666;
    border-right: 1px solid #ddd;
    font-size: 14px; /* Adjust font size if needed */
}

.url-input-container input[type="text"] {
    flex: 1;
    border: none;
    padding: 0 10px;
    font-size: 14px; /* Match font size with prefix */
    min-width: 0; /* Allows input to shrink if needed */
}

.url-input-container input[type="text"]:focus {
    outline: none;
}

/* Remove conflicting styles */
.url-form input[type="text"] {
    width: 100%;
    margin-bottom: 0;
}

.url-form button {
    width: 100%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .url-form {
        max-width: 500px;
    }
    
    .url-form button {
        width: auto;
    }
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: block; /* Ensure it's centered */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New full-width background classes */
.full-width-gradient-bg {
    background: linear-gradient(to right, #2c3e50, #203141);
    width: 100%;
    min-height: 100vh; /* Ensure it covers the full viewport height */
    display: flex;
    flex-direction: column;
}

/* Update title styles */
.title-section {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.title-section .btn {
    margin: 0;
}

@media (min-width: 768px) {
    .title-section {
        padding: 60px 0;
    }

    .button-container {
        margin-top: 30px;
    }
}

/* Update services styles */


.services {
    color: white;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0;
}

/* Services Page Styles */
.services-page-main-content {
    padding: 40px 0;
    /* Remove the background-color property */
}

/* Adjust the container to have proper spacing */
.services-page-main-content .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Ensure the services grid has proper spacing */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

/* Keep the accordion tiles styled as before */
.services-page-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.services-page-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.services-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    padding-right: 40px; /* Add padding to the right to make space for the toggle */
}

.services-page-logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    background-color: #2c3e50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 12px;
}

.services-page-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-page-header h2 {
    margin: 0;
    line-height: 1.2;
    flex-grow: 1;
}

.services-page-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-top 0.5s ease-out;
}

.services-page-content.active {
    max-height: 2000px; /* Adjust this value if needed for longer content */
    opacity: 1;
    margin-top: 15px;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in, margin-top 0.5s ease-in;
}

.accordion-toggle {
    position: absolute;
    right: 10px; /* Move it 10px from the right edge instead of 20px */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
}

.services-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-left: 10px
}

.services-list li {
    margin-bottom: 5px;
}

/* Accordion styles */
.services-page-header {
    cursor: pointer;
    position: relative;
}

.accordion-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
}

.services-page-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-top 0.5s ease-out;
}

.services-page-content.active {
    max-height: 2000px; /* Adjust this value if needed for longer content */
    opacity: 1;
    margin-top: 15px;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in, margin-top 0.5s ease-in;
}

.hidden {
    display: none;
}

/* Base styles */
.home-heading {
    padding-bottom: 20px; /* Mobile padding */
}

/* Responsive Design */
@media (min-width: 768px) {
    .home-heading {
        padding-bottom: 50px; /* Desktop padding */
    }
}

/* About Us Section */
.about-us-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-image {
    margin-bottom: 30px;
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us-text {
    text-align: left;
}

.about-us-text h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: left;
}

.about-us-text p {
    color: #333;
    line-height: 1.6;
}

.about-us-p {
    padding-bottom: 20px
}

@media (min-width: 768px) {
    .about-us-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-us-image {
        flex: 0 0 40%;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .about-us-text {
        flex: 1;
        text-align: left;
    }
}

