/* ==========================================================================
   BQA Certificates - Custom Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & Global Styles
   -------------------------------------------------------------------------- */
:root {
    --bqa-primary: #0e4868;
    --bqa-primary-dark: #09334a;
    --bqa-secondary: #0077a3;
    --bqa-accent-blue: #337ab7;
    --bqa-accent-hover: #1d6d9b;
    --bqa-btn-info: #5bc0de;
    --bqa-btn-info-hover: #31b0d5;
    --bqa-red-accent: #e53935;
    --bqa-green-notice: #0a8335;
    --bqa-footer-top: #0e4a66;
    --bqa-footer-bottom: #0a3449;
    --bqa-bg-light: #f4f4f4;
    --bqa-text-dark: #222222;
    --bqa-text-body: #444444;
    --bqa-text-muted: #666666;
    --bqa-font-main: 'Roboto Condensed', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --bqa-font-serif: 'Georgia', 'Times New Roman', serif;
}

html {
    height: 100%;
}

body {
    font-family: var(--bqa-font-main);
    color: var(--bqa-text-body);
    margin: 0;
    padding: 0;
    background-color: var(--bqa-footer-bottom);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1 0 auto;
    background-color: var(--bqa-bg-light);
}

.bqa-footer-wrapper {
    flex-shrink: 0;
    margin-top: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bqa-font-main);
    color: var(--bqa-text-dark);
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. Top Header Section
   -------------------------------------------------------------------------- */
.bqa-header-top {
    background-color: #ffffff;
    padding: 15px 0;
}

.bqa-brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bqa-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.bqa-brand-title {
    font-family: var(--bqa-font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--bqa-secondary);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.bqa-header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--bqa-primary);
    font-size: 14px;
    font-weight: 600;
}

.bqa-contact-icon {
    font-size: 16px;
    color: var(--bqa-secondary);
}

.bqa-contact-email {
    color: var(--bqa-primary);
    transition: color 0.2s ease;
}

.bqa-contact-email:hover {
    color: var(--bqa-secondary);
}

/* --------------------------------------------------------------------------
   3. Main Navigation Bar
   -------------------------------------------------------------------------- */
.bqa-navbar-wrapper {
    background-color: var(--bqa-primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bqa-navbar {
    padding: 0;
}

.bqa-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bqa-nav-item {
    position: relative;
    border-right: 1px solid rgb(255, 255, 255);
}

.bqa-nav-link {
   display: block;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: background-color 0.2s ease, color 0.2s ease;
    letter-spacing: 1px;
}

.bqa-nav-link:hover,
.bqa-nav-link.active {
    color: #ffffff;
    opacity: 0.9;
}

/* Navbar Toggler for Mobile */
.bqa-navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 6px 12px;
    margin: 8px 0 8px auto;
}

.bqa-navbar-toggler:focus {
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   4. Marquee Notice Bar
   -------------------------------------------------------------------------- */
.bqa-notice-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    overflow: hidden;
}

.bqa-notice-content {
    color: var(--bqa-green-notice);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.2px;
}

/* --------------------------------------------------------------------------
   5. Hero Banner Section
   -------------------------------------------------------------------------- */
.bqa-hero-section {
    background-image: url('../img/slider.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.bqa-hero-card {
    background-color: transparent;
    padding-right: 20px;
}

.bqa-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 15px;
}

.bqa-hero-text {
    font-size: 14px;
    color: var(--bqa-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
}

.bqa-btn-hero {
    display: inline-block;
    background-color: var(--bqa-accent-blue);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.bqa-btn-hero:hover {
    background-color: var(--bqa-accent-hover);
    color: #ffffff;
}

.bqa-hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.bqa-hero-indicators .bqa-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.bqa-hero-indicators .bqa-dot.active {
    background-color: var(--bqa-accent-blue);
    border-color: var(--bqa-accent-blue);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   6. Our Services Section (4 Columns)
   -------------------------------------------------------------------------- */
.bqa-services-section {
    padding: 55px 0;
    background-color: #ffffff;
}

.bqa-section-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 45px;
}

.bqa-service-card {
    text-align: center;
    padding: 15px 10px;
    height: 100%;
}

.bqa-service-icon-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bqa-service-icon {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.bqa-service-fa-icon {
    font-size: 44px;
    color: #00a0e9;
}

.bqa-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    margin-bottom: 12px;
}

.bqa-service-desc {
    font-size: 12.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   7. BQA Assessment Private Limited Section
   -------------------------------------------------------------------------- */
.bqa-about-section {
    background-color: var(--bqa-bg-light);
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.bqa-about-image-wrapper {
    text-align: center;
}

.bqa-about-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.bqa-about-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bqa-about-text {
    font-size: 12.5px;
    color: var(--bqa-text-body);
    line-height: 1.65;
    text-align: justify;
    margin-bottom: 15px;
}

.bqa-transition-heading {
    font-size: 13px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-decoration: underline;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
}

.bqa-transition-text {
    font-size: 12px;
    color: var(--bqa-text-body);
    line-height: 1.65;
    text-align: justify;
    margin: 0;
}

/* --------------------------------------------------------------------------
   8. Certifications Process Section
   -------------------------------------------------------------------------- */
.bqa-process-section {
    padding: 0;
    background-color: #ffffff;
}

.bqa-process-banner {
    background-color: #eaeaea;
    padding: 18px 10px;
    text-align: center;
}

.bqa-process-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.bqa-process-img-wrapper {
    text-align: center;
    padding: 35px 15px;
}

.bqa-process-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   9. Dual Info Section (Services List & Accreditation)
   -------------------------------------------------------------------------- */
.bqa-dual-section {
    background-color: var(--bqa-bg-light);
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
}

.bqa-dual-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.bqa-service-item-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bqa-service-item-card {
   background-color: #ffffff;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    border-bottom: 4px solid var(--bqa-red-accent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bqa-service-item-card:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bqa-accreditation-text {
    font-size: 13px;
    color: var(--bqa-text-body);
    line-height: 1.7;
    text-align: justify;
}

.bqa-accreditation-link {
    color: var(--bqa-secondary);
    text-decoration: underline;
}

.bqa-accreditation-link:hover {
    color: var(--bqa-primary-dark);
}

/* --------------------------------------------------------------------------
   10. Enquiry Form Section
   -------------------------------------------------------------------------- */
.bqa-enquiry-section {
    padding: 55px 0 65px;
    background-color: #ffffff;
}

.bqa-enquiry-form .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--bqa-text-dark);
    margin-bottom: 18px;
}

.bqa-enquiry-form .form-control:focus {
    border-color: var(--bqa-btn-info);
    box-shadow: 0 0 0 0.2rem rgba(91, 192, 222, 0.25);
}

.bqa-enquiry-form .form-control::placeholder {
    color: #999999;
}

.bqa-enquiry-textarea {
    min-height: 120px;
    resize: vertical;
}

.bqa-btn-submit {
    background-color: var(--bqa-btn-info);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.bqa-btn-submit:hover {
    background-color: var(--bqa-btn-info-hover);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   11. Footer Section
   -------------------------------------------------------------------------- */
.bqa-footer-top {
    background-color: var(--bqa-footer-top);
    padding: 30px 0 25px;
    text-align: center;
}

.bqa-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.bqa-footer-line-wrapper {
    text-align: center;
    margin-bottom: 18px;
}

.bqa-footer-line {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.bqa-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bqa-social-link {
    color: #ffffff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.bqa-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.bqa-footer-bottom {
    background-color: var(--bqa-footer-bottom);
    padding: 14px 0;
    text-align: center;
}

.bqa-copyright-text {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   12. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .bqa-brand-title {
        font-size: 24px;
    }

    .bqa-nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .bqa-nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bqa-nav-item:first-child {
        border-left: none;
    }

    .bqa-hero-section {
        background-position: center;
        padding: 40px 0;
    }

    .bqa-hero-title {
        font-size: 26px;
    }

    .bqa-section-heading,
    .bqa-process-title {
        font-size: 24px;
    }

    .bqa-header-contact {
        justify-content: flex-end;
        margin-top: 5px;
    }
}

@media (max-width: 767.98px) {
    .bqa-brand-container {
        justify-content: flex-start;
    }

    .bqa-brand-title {
        font-size: 20px;
        white-space: nowrap;
    }

    .bqa-header-contact {
        justify-content: flex-end;
        width: 100%;
        margin-top: 6px;
    }

    .bqa-hero-title {
        font-size: 22px;
    }

    .bqa-hero-text {
        font-size: 13px;
    }

    .bqa-about-image-wrapper {
        margin-bottom: 25px;
    }
}

/* --------------------------------------------------------------------------
   13. Our Services Page Specific Styles
   -------------------------------------------------------------------------- */
.bqa-page-banner {
    background-color: #d6ecf7;
    padding: 22px 0;
    text-align: center;
    border-bottom: 1px solid #c2e2f3;
}

.bqa-page-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.bqa-services-page-section {
    background-color: var(--bqa-bg-light);
    padding: 45px 0 60px;
}

.bqa-service-detail-card {
    background-color: #ffffff;
    padding: 24px 28px;
    margin-bottom: 24px;
    border-bottom: 4px solid var(--bqa-red-accent);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.bqa-service-detail-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.bqa-service-detail-text {
    font-size: 16px;
    color: #000000;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
}

.bqa-service-detail-subtitle {
    font-size: 27.5px;
    font-weight: 500;
    color: var(--bqa-text-dark);
    margin-top: 12px;
    margin-bottom: 8px;
}

.bqa-service-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.bqa-service-list li {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 6px;
}

.bqa-service-warning {
    font-size: 16px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    text-decoration: underline;
    margin-top: 10px;
    display: block;
}

/* --------------------------------------------------------------------------
   14. Audit Process Page Specific Styles
   -------------------------------------------------------------------------- */
.bqa-audit-stage-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--bqa-text-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bqa-audit-stage-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   15. Verify Certificate Page Specific Styles
   -------------------------------------------------------------------------- */
.bqa-verify-section {
    background-color: var(--bqa-bg-light);
    padding: 60px 0;
    text-align: center;
}

.bqa-verify-card {
    max-width: 500px;
    margin: 0 auto;
}

.bqa-verify-input {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    padding: 12px 18px;
    font-size: 14px;
    color: #333333;
    width: 100%;
    margin-bottom: 20px;
}

.bqa-verify-input::placeholder {
    color: #aaaaaa;
}

.bqa-verify-input:focus {
    outline: none;
    border-color: var(--bqa-red-accent);
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.2);
}

.bqa-verify-btn {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 10px 42px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.bqa-verify-btn:hover {
    background-color: #c9302c;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   16. Contact Us Page Specific Styles
   -------------------------------------------------------------------------- */
.bqa-contact-page-section {
    background-color: #ffffff;
    padding: 55px 0 70px;
}

.bqa-contact-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    margin-bottom: 25px;
}

.bqa-contact-title .bqa-highlight {
    color: var(--bqa-accent-blue);
}

.bqa-contact-form-group {
    margin-bottom: 18px;
}

.bqa-contact-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    margin-bottom: 6px;
}

.bqa-contact-form .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--bqa-text-dark);
}

.bqa-contact-form .form-control:focus {
    border-color: var(--bqa-accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(51, 122, 183, 0.2);
}

.bqa-contact-form .form-control::placeholder {
    color: #999999;
}

.bqa-btn-contact-submit {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.bqa-btn-contact-submit:hover {
    background-color: #c9302c;
    color: #ffffff;
}

/* Contact Info Column */
.bqa-info-block {
    padding-left: 20px;
}

.bqa-info-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.bqa-info-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.bqa-info-group:last-child {
    border-bottom: none;
}

.bqa-info-subheading {
    font-size: 20px;
    font-weight: 700;
    color: var(--bqa-text-dark);
    margin-bottom: 8px;
}

.bqa-info-item {
    font-size: 13.5px;
    color: var(--bqa-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bqa-info-item i {
    color: var(--bqa-text-dark);
    font-size: 14px;
}


