/* Universal button css code */
.swipe-btn {
    position: relative;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    background-color: #fcf6f2;
    color: #eb5d07;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid #eb5d07;
    padding-left: 53px;
    padding-right: 13px;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 4px 15px rgba(235, 93, 7, 0.1);
}

.swipe-btn:hover {
    padding-left: 20px;
    padding-right: 60px;
    color: #b34300;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(235, 93, 7, 0.2);
}

.swipe-btn .circle-container {
    position: absolute;
    left: 6px;
    width: 40px;
    height: 40px;
    background: #eb5d07;
    border-radius: 50%;
    transition: 0.35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swipe-btn:hover .circle-container {
    left: calc(100% - 55px);
    background: #b34300;
}

.swipe-btn .circle-container svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: 0.45s ease;
}

/* ── FAQ Section ── */
.mmfaq-accordian .accordion-item {
    border: none;
    border-radius: 14px !important;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px #0430381c;
    overflow: hidden;
}

.mmfaq-accordian .accordion-button {
    font-weight: 700;
    font-size: 1.4rem;
    color: #043038;
    background: #fff;
    border-radius: 14px !important;
    padding: 22px 28px;
    box-shadow: none;
}

.mmfaq-accordian .accordion-button:not(.collapsed) {
    color: #eb5d07;
    background: rgba(235, 93, 7, 0.04);
    box-shadow: none;
}

.mmfaq-accordian .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23eb5d07' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.mmfaq-accordian .accordion-body {
    padding: 0 28px 22px;
    color: #043038;
    font-size: 0.96rem;
    line-height: 1.75;
    background: #fff;
}

/* ── FAQ Section ── */
.mmfaq-accordian .accordion-item {
    border: none;
    border-radius: 14px !important;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px #0430381c;
    overflow: hidden;
}

.mmfaq-accordian .accordion-button {
    font-weight: 700;
    font-size: 1.2rem;
    color: #043038;
    background: #fff;
    border-radius: 14px !important;
    padding: 22px 28px;
    box-shadow: none;
}

.mmfaq-accordian .accordion-button:not(.collapsed) {
    color: #eb5d07;
    background: rgba(235, 93, 7, 0.3);
    box-shadow: none;
}

.mmfaq-accordian .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23eb5d07' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.mmfaq-accordian .accordion-body {
    padding: 0 28px 22px;
    color: #043038;
    font-size: 0.96rem;
    line-height: 1.75;
    background: #fff;
}

/* ── Rainbow Hero Styles ── */
.lb-hero-rainbow {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, #eb5d0700 0%, rgba(247, 200, 18, 0.08) 40%, rgba(235, 93, 7, 0.2) 85%);
    overflow: hidden;
}

.hero-rainbow-svg-wrap {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1400px;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.rainbow-path {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.65;
    filter: drop-shadow(0 0 6px rgba(235, 93, 7, 0.2));
    transition: stroke-width 0.3s ease, opacity 0.3s ease;
}

.path-outer {
    stroke-dasharray: 12 18;
    animation: flowCW 40s linear infinite;
}

.path-middle {
    stroke-dasharray: 10 15;
    animation: flowCCW 35s linear infinite;
}

.path-inner {
    stroke-dasharray: 8 12;
    animation: flowCW 30s linear infinite;
}

@keyframes flowCW {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes flowCCW {
    to {
        stroke-dashoffset: 1000;
    }
}

.hero-text-shadow-layer {
    position: relative;
    z-index: 3;
    padding: 30px;
    border-radius: 24px;
}

.hero-text-shadow-layer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgb(255 255 255 / 74%) 60%, rgb(255 255 255 / 55%) 100%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

.glowing-node circle {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.glowing-node:hover circle {
    r: 24px;
    stroke-width: 3px;
}

@media (max-width: 991.98px) {
    .hero-rainbow-svg-wrap {
        transform: translateX(-50%) scale(0.85);
        transform-origin: bottom center;
    }
}

@media (max-width: 767.98px) {
    .hero-rainbow-svg-wrap {
        transform: translateX(-50%) scale(0.65);
        transform-origin: bottom center;
        opacity: 0.6;
    }

    .hero-text-shadow-layer {
        padding: 15px;
    }

    .hero-text-shadow-layer::before {
        width: 130%;
        height: 130%;
        filter: blur(20px);
    }
}

@media (max-width: 575.98px) {
    .hero-rainbow-svg-wrap {
        transform: translateX(-50%) scale(0.5);
        transform-origin: bottom center;
    }
}

/* Here End */
/* Icons Boxes design start here */
.icon-boxes {
    border: 1px solid rgba(235, 94, 7, 0.438);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff33;
    backdrop-filter: blur(7px);
}

.icon-boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eb5d07, #f7c812);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 18px 18px 0 0;
}

.icon-boxes:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(235, 93, 7, 0.3);
    border-color: rgba(235, 93, 7, 0.25);
}

.icon-boxes:hover::before {
    transform: scaleX(1);
}

.bottom-border-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bottom-border-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mm-dark), #f5ca0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.bottom-border-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(235, 93, 7, 0.15);
    border-color: rgba(235, 93, 7, 0.2);
}

.bottom-border-card:hover::after {
    transform: scaleX(1);
}

.table-wrapper {
    padding: 2rem 1rem;
    width: 100%
}

.glossy-card tbody,
td,
tfoot,
th,
thead,
tr {
    border-radius: 2px
}

.glossy-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    padding: 1rem;
    background-image: linear-gradient(196deg, #043038, #eb5d07);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .15);
    transition: box-shadow .5s
}

.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
}

.table-responsive-custom::-webkit-scrollbar {
    height: 6px
}

.table-responsive-custom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .02);
    border-radius: 10px
}

.table-responsive-custom::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 10px
}

.custom-table {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 0;
    vertical-align: middle;
    border-collapse: separate;
    border-spacing: 2px
}

.custom-table th {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #043038;
    border: none;
    background: #eb5d07;
    padding: 15px
}

.custom-table td {
    font-size: 1rem;
    font-weight: 600;
    color: #043038;
    padding: 1.1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    transition: .25s
}

.custom-table tbody tr {
    cursor: pointer;
    transition: transform .2s
}

.custom-table tbody tr:hover td {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, .2)
}

/* ── Reusable check / cross icons ── */
.icon-yes,
.icon-no {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-yes {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='11' fill='%2300c853'/%3E%3Cpath d='M6.5 11.5L9.5 14.5L15.5 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.icon-no {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23e53935'/%3E%3Cpath d='M7.5 7.5L14.5 14.5M14.5 7.5L7.5 14.5' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

@media screen and (max-width:600px) {
    .glossy-card {
        padding: 1rem;
    }

    .custom-table td {
        padding: 8px;
    }
}

.icon-wrapper {
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.process-icons {
    background-image: linear-gradient(#ffc107, #eb5d07);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 62px;
}

/* Custom process line */
.process-line {
    position: relative;
}

.process-line::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-line::before {
        left: 20px;
    }

    .hero-title-light {
        font-size: 2.5rem;
    }
}

/* Premium Pill Tabs */
.premium-tabs-wrapper {
    background: #0430380d;
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef2e;
}

.premium-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.premium-tabs-wrapper .nav-link {
    color: rgb(255 255 255);
    background: transparent;
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0 4px;
}

.premium-tabs-wrapper .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.premium-tabs-wrapper .nav-link.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(235, 93, 7, 0.4);
}

.tech-icon-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-icon-circle:hover {
    transform: translateY(-5px);
}

.location-service-chip {
    border: 1px solid rgba(235, 93, 7, 0.25) !important;
    transition: all 0.3s ease;
}

.location-service-chip:hover {
    border-color: #eb5d07 !important;
    background-color: rgba(235, 93, 7, 0.04) !important;
    box-shadow: 0 8px 20px rgba(235, 93, 7, 0.12) !important;
    transform: translateY(-2px);
}

.circle-arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eb5d07;
    color: #eb5d07;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-service-chip:hover .circle-arrow-icon {
    background-color: #eb5d07;
    color: #ffffff;
    transform: translateX(3px);
}

/* ==========================================================================
   Form Card Box & Custom Input Controls (Contact US & Audit Forms)
   ========================================================================== */
.form-card-box {
    background: rgb(235 93 7 / 7%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
    .form-card-box {
        padding: 24px 16px;
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-label-with-icon {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #043038;
    margin-bottom: 8px;
}

.form-label-with-icon svg {
    margin-right: 8px;
    color: #eb5d07;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-label-with-icon.label-blue svg {
    color: #1e88e5;
}

.form-label-with-icon.label-purple svg {
    color: #8e24aa;
}

.form-label-with-icon.label-teal svg {
    color: #00bfa5;
}

.form-label-with-icon.label-amber svg {
    color: #d97706;
}

.form-label-with-icon.label-pink svg {
    color: #f50057;
}

.custom-input {
    background-color: #ffffff;
    border: 1px solid rgba(235, 93, 7, 0.3);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #eb5d07;
    box-shadow: 0 0 0 3px rgba(235, 93, 7, 0.15);
}

.custom-input.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5zM6 8.2a.6.6 0 1 0 0 1.2.6.6 0 0 0 0-1.2z'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.custom-input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
}

.custom-input.is-valid {
    border-color: #198754 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.7c-.43.5-1.1.5-1.5.03z'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.custom-input.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.25) !important;
}

.invalid-feedback,
.valid-feedback {
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}