/* Base Reset */
.zm-hero-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Dot Pattern Background */
.zm-hero-wrapper {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 80px;
}

/* Breadcrumb Section */
.zm-breadcrumb-area {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
    font-size: 13px;
    color: #555;
}

.zm-link-blue {
    color: #a71c20;
    text-decoration: none;
}

.zm-link-blue:hover {
    text-decoration: underline;
}

/* Main Content Grid */
.zm-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

/* Left Side: Enhanced Information */
.zm-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zm-header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zm-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a71c20, #a71c20);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(56, 103, 214, 0.3);
}

.zm-title-main {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-transform: uppercase;
}

.zm-divider {
    height: 1px;
    background-color: #eee;
    width: 100%;
}

.zm-subtitle-text {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.zm-description-para {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Feature List Styling */
.zm-feature-list {
    list-style: none;
    padding-left: 5px;
}

.zm-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}

.zm-feature-bullet {
    color: #a71c20;
    font-size: 18px;
}

/* Right Side: Trial Form Card */
.zm-form-card {
    background-color: #f1f4ff;
    border: 1px solid #dce3fb;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.zm-form-headline {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

.zm-input-group {
    margin-bottom: 15px;
    position: relative;
}

.zm-input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccd4e1;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.zm-phone-flex {
    display: flex;
    gap: 10px;
}

.zm-country-code {
    width: 60px;
    text-align: center;
}

.zm-terms-row {
    display: flex;
    gap: 8px;
    font-size: 11px;
    margin: 15px 0;
    color: #333;
    align-items: center;
}

.zm-submit-btn {
    width: 100%;
    background-color: #a71c20;
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.2s;
}

.zm-submit-btn:hover {
    background-color: #cc231f;
}

@media (max-width: 900px) {
    .zm-hero-wrapper {
        padding: 40px 20px;
    }

    .zm-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zm-title-main {
        font-size: 28px;
    }

    .zm-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}



/* Pure White Background */
.qms-about-wrapper {
    background: linear-gradient(180deg, #f1f4ff 0, #FFF 100%);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Layout Container */
.qms-about-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side: Desktop Image */
.qms-image-container {
    position: relative;
}

.qms-desktop-visual {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Right Side: Text Content */
.qms-text-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qms-main-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 10px;
}

.qms-accent-subhead {
    font-size: 18px;
    font-weight: 600;
    color: #a71c20;
    margin-bottom: 0px !important;
    /* Matching the orange color from the image */
}

.qms-body-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    letter-spacing: 0.2px;
    margin-bottom: 0px !important;

}

/* Responsive Design */
@media (max-width: 968px) {
    .qms-about-wrapper {
        padding: 40px 20px;
    }

    .qms-text-block {
        gap: 10px;
    }

    .qms-body-text {
        margin-bottom: 0px;
        text-align: left;
    }

    .qms-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .qms-main-heading {
        font-size: 32px;
    }

    .qms-image-container {
        max-width: 80%;
        margin: 0 auto;
    }
}


/* Background: Using the zm-hero-wrapper dot pattern */
.bq-features-section {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Section Header */
.bq-header-container {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
}

.bq-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.bq-highlight-blue {
    color: #0068a0;
}

/* Grid Layout */
.bq-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

/* Feature Card Styling */
.bq-feature-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0068a0;
    /* Top accent bar from image */
    transition: transform 0.3s ease;
}

.bq-feature-card:hover {
    transform: translateY(-5px);
}

/* Step Number Badge */
.bq-step-number {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0068a0;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-bottom-left-radius: 4px;
}

.bq-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0068a0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bq-card-text {
    font-size: 15px;
    color: #666;
    /* Grey color matching About section para */
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .bq-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bq-features-section {
        padding: 40px 20px;
    }

    .bq-features-grid {
        grid-template-columns: 1fr;
    }

    .bq-main-title {
        font-size: 28px;
    }
}


/* SVG Dot Pattern Background from zm-hero-wrapper */
.sf-features-wrapper {
    /* background-color: #ffffff; */
    background: linear-gradient(180deg, #f1f4ff 0, #FFF 100%);
    /* background-image: radial-gradient(#e5e7eb 1px, transparent 1px); */
    /* background-size: 20px 20px; */
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Section Headers */
.sf-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a6c;
    margin-bottom: 10px;
}

.sf-orange-subhead {
    font-size: 18px;
    font-weight: 600;
    color: #ed8723;
    /* Matching About section orange */
}

/* Grid Layout */
.sf-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    width: 100%;
}

/* Feature Card Styling */
.sf-feature-card {
    background: #ffffff;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sf-feature-card:hover {
    transform: translateY(-5px);
}

/* Colored Border Accents based on image_84f5ee.jpg */
.sf-card-red {
    border-left: 5px solid #ff5e62;
}

.sf-card-yellow {
    border-left: 5px solid #ffbe0b;
}

.sf-card-blue {
    border-left: 5px solid #3a86ff;
}

.sf-card-orange {
    border-left: 5px solid #fb5607;
}

.sf-card-purple {
    border-left: 5px solid #8338ec;
}

.sf-card-pink {
    border-left: 5px solid #ff006e;
}

/* Card Content Styling */
.sf-card-title {
    font-size: 20px;
    font-weight: 700;
    /* Using dynamic coloring to match the border */
    color: inherit;
}

.sf-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .sf-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sf-features-wrapper {
        padding: 40px 20px;
    }

    .sf-grid-container {
        grid-template-columns: 1fr;
    }

    .sf-main-title {
        font-size: 30px;
    }
}


/* SVG Dot Pattern Background from zm-hero-wrapper */
.ad-industry-wrapper {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Section Header */
.ad-header-box {
    text-align: center;
    max-width: 1000px;
    margin-bottom: 20px;
}

.ad-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

/* Grid Layout (3 Columns) */
.ad-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    width: 100%;
}

/* Industry Card Styling */
.ad-industry-card {
    background-color: #f8fbff;
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #edf2f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ad-industry-card:hover {
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(26, 58, 108, 0.1);
    transform: translateY(-5px);
}

.ad-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0068a0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ad-card-body {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* Bullet List Styling */
.ad-feature-list {
    list-style: none;
    margin: 12px 0;
    padding-left: 0;
}

.ad-feature-item {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    color: #555;
}

.ad-bullet {
    color: #a71c20;
    font-weight: bold;
}

.ad-footer-note {
    /* margin-top: auto; */
    font-weight: 600;
    color: #333;
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .ad-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ad-industry-wrapper {
        padding: 40px 20px;
    }

    .ad-grid-container {
        grid-template-columns: 1fr;
    }

    .ad-main-title {
        font-size: 28px;
    }
}



.ds-slider-wrapper {
    /* background: linear-gradient(180deg, #f1f4fa 0, #FFF 100%); */
    background-color: #f2f5fb;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.ds-header {
    text-align: center;
    margin-bottom: 40px;
}

.ds-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.ds-highlight {
    color: #bd5558;
}

/* Slider Layout */
.ds-carousel-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
}

.ds-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ds-slider-track {
    display: flex;
    width: 100%;
}

.ds-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.ds-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Arrows */
.ds-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s ease;
}

.ds-nav-btn:hover {
    background-color: #bd5558;
    color: #fff;
    border-color: #bd5558;
}

.ds-prev {
    left: -60px;
}

.ds-next {
    right: -60px;
}

@media (max-width: 1150px) {
    .ds-prev {
        left: 10px;
    }

    .ds-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .ds-slider-wrapper {
        padding: 40px 20px;
    }

    .ds-title {
        font-size: 26px;
    }
}


/* Typography Sync with Portfolio Sections */
.faq-section-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Segoe UI', Roboto, sans-serif;
}

.faq-section-wrapper {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a6c;
    margin-bottom: 10px;
}

.faq-sub-orange {
    font-size: 18px;
    font-weight: 600;
    color: #a71c20;
}

/* Accordion Container */
.faq-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual FAQ Item */
.faq-item {
    border: 1px solid #eef2f6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fbff;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #a71c20;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Question Header */
.faq-question {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a6c;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #a71c20;
}

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Answer Content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-content-inner {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Bullet List Styling */
.faq-list {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.faq-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.faq-list li::before {
    content: "•";
    color: #a71c20;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff5eb;
    border-left: 4px solid #a71c20;
    font-size: 13px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {

    .faq-section-wrapper {
        padding: 0px 20px 60px;
    }

    .faq-main-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
}


/* 1. Full-width Background Wrapper */
.ad-cta-full-bg {
    width: 100%;
    background: linear-gradient(135deg, #d33238 0%, #a71c20 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #d33238 0%, #a71c20 100%);

    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
}

.ad-cta-container {
    max-width: 1200px;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.ad-cta-content {
    flex: 1;
    text-align: left;
}

.ad-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ad-cta-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 850px;
}

.ad-cta-btn {
    background-color: #ffffff;
    color: #cc2b30;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ad-cta-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: #cc2b30;
}

@media (max-width: 1200px) {
    .ad-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .ad-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .ad-cta-content {
        text-align: center;
    }

    .ad-cta-desc {
        margin: 0 auto;
    }
}

.mi-top-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;

}






/* 1. Full-width Background Wrapper */
.ad-cta-full-bg-1 {
    width: 100%;
    background: linear-gradient(135deg, #d33238 0%, #a71c20 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #d33238 0%, #a71c20 100%);

    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
}

.ad-cta-container-1 {
    max-width: 1200px;
    width: 100%;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.ad-cta-content-1 {
    flex: 1;
    text-align: left;
}

.ad-cta-title-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ad-cta-desc-1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 1200px;
}


@media (max-width: 1200px) {
    .ad-cta-title-1 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .ad-cta-container-1 {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .ad-cta-content-1 {
        text-align: center;
    }

    .ad-cta-desc-1 {
        margin: 0 auto;
    }
}


/* Section Base */
.qms-viz-wrapper {
    padding: 60px 0 0px;
    background: linear-gradient(180deg, #f1f4ff 0, #FFF 100%);
    overflow-x: hidden;
}

.qms-viz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

.qms-viz-main-heading {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a3a6c;
    margin-bottom: 60px;
}

/* Row & Layout */
.qms-viz-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.qms-viz-alt {
    flex-direction: row-reverse;
}

/* 3D Image & Media Styling */
.qms-viz-media {
    flex: 1.2;
    perspective: 1500px;
}

.qms-viz-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        25px 25px 50px rgba(180, 190, 220, 0.5),
        10px 10px 20px rgba(160, 170, 200, 0.2),
        -5px -5px 15px rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.qms-viz-img:hover {
    transform: translateY(-10px);
    box-shadow:
        35px 35px 70px rgba(180, 190, 220, 0.4),
        -10px -10px 25px rgba(255, 255, 255, 1);
}

/* Image Overlay */
.qms-viz-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    opacity: 0;
    transition: 0.4s;
}

.qms-viz-3d-frame:hover .qms-viz-overlay {
    opacity: 1;
}

.qms-viz-view-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Details & Text Styling */
.qms-viz-details {
    flex: 0.8;
}

.qms-viz-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.qms-viz-summary {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #a71c20;
    margin-bottom: 20px;
}

.qms-viz-features {
    list-style: none;
    padding: 0;
}

.qms-viz-features li {
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.qms-viz-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #a71c20;
    font-weight: 900;
}

/* Lightbox Modal CSS */
.qms-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.qms-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: relative;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    border-radius: 8px;
    transition: 0.3s;
}

.qms-lightbox-modal[style*="display: block"] .qms-lightbox-content {
    transform: translateY(-50%) scale(1);
}

.qms-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {

    .qms-viz-container {
        padding: 0 25px;
    }

    .qms-viz-row,
    .qms-viz-alt {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .qms-viz-3d-frame {
        transform: rotateY(0) rotateX(0);
    }

    .qms-viz-main-heading {
        font-size: 32px;
    }

    .qms-viz-features li {
        text-align: left;
    }
}