:root {
    --primary-color: #7F1BFF;
    --primary-light: #F9F5FF;
    --text-color: #1E212B;
    --white-color: #FFFFFF;
    --black-color: #000000;

    --heading-font: 'media_sans', sans-serif;
    /* --heading-font: 'neue_powerultra', 'media_sans', sans-serif; */
    --body-font: 'Instrument Sans', sans-serif;
}

@font-face {
    font-family: 'neue_powerultra';
    src: url('../fonts/neuepower-ultra-webfont.woff2') format('woff2'),
        url('../fonts/neuepower-ultra-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'media_sans';
    src: url('../fonts/media-sans/mediasansweb-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'media_sans';
    src: url('../fonts/media-sans/mediasansweb-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'media_sans';
    src: url('../fonts/media-sans/mediasansweb-ultra.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'media_sans';
    src: url('../fonts/media-sans/mediasansweb-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'media_sans';
    src: url('../fonts/media-sans/mediasansweb-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-family: var(--heading-font);
    line-height: normal;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 4px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Instrument Sans';
}

h1 {
    font-size: clamp(36px, -49.6976px + 14.9038vw, 73.2px);
}

h2,
.h2 {
    font-size: clamp(30px, 1.1538px + 9.3750vw, 50px);
}

h3 {
    font-size: clamp(28px, 6.3462px + 7.2115vw, 42px);
}

h4 {
    font-size: clamp(26px, 10.5769px + 5.4808vw, 35px);
}

.font-lg,
h5 {
    font-size: clamp(20px, 13.4615px + 3.2212vw, 26px);
}

h6 {
    font-size: clamp(16px, 9.4231px + 2.4038vw, 22px);
}

@media (width <=87.4375rem) {
    h1 {
        font-size: clamp(34px, -18.5248px + 9.1346vw, 72px);
    }

    h2,
    .h2 {
        font-size: clamp(30px, -0.408px + 5.2885vw, 52px);
    }

    h3,
    .h3 {
        font-size: clamp(26px, 14.9424px + 1.9231vw, 34px);
    }

    h4,
    .h4 {
        font-size: clamp(22px, 10.9424px + 1.9231vw, 30px);
    }

    h5,
    .h5 {
        font-size: clamp(20px, 11.7072px + 1.4423vw, 26px);
    }

    h6,
    .h6 {
        font-size: clamp(16px, 7.7072px + 1.4423vw, 22px);
    }

    .font-lg {
        font-size: clamp(16px, 4.0624px + 1.5564vw, 20px);
    }

    .font-md {
        font-size: clamp(16px, 10.0304px + 0.7782vw, 18px);
    }
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.spacer-y {
    padding-block: 100px
}

.button {
    text-align: center;
}

.button_theme {
    padding: 1rem 1.5rem;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: .5rem;
    font-weight: 600;
    transition: 0.5s all ease;
}

.button_theme-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    ;
}

.button_theme-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

.button_theme-primary i.fa-regular.fa-angle-right {
    display: inline-block;
    background: url('../images/right-btn-arrow.svg')no-repeat center / contain;
    width: 15px;
    height: 15px;
    font-size: 0;
    filter: brightness(0) invert(1);
}

.button_theme-primary:hover i.fa-regular.fa-angle-right {
    filter: unset;
}

.spacer-y {
    padding-block: 5rem;
}

.gradient-border {
    --radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(2.5rem); */
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
}

.gradient-border.dark {
    background: rgba(0, 0, 0, 0.5);
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: .0625rem;
    /* border: .0625rem solid; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--primary-color) 100%);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    z-index: -1
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-dark {
    color: var(--white-color);
    background-color: var(--black-color);
}

.primary-text {
    color: var(--primary-color) !important;
}

.mb-50 {
    margin-bottom: clamp(30px, 2.3552px + 4.8077vw, 50px);
}

.filter-invert {
    filter: invert(1);
}

.rounded-20 {
    border-radius: 20px;
}

/* ── Navigation Bar ── */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    background: var(--white-color);
    border-bottom: 1px solid #E5E7EB;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 1rem;
}

/* ── item-left ── */
.item-left {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    color: var(--text-color);
}

/* ── item-center ── */
.item-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* .menu-wrap>li {
    position: relative;
} */

.nav-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
}

.nav-link-btn:hover,
.menu-wrap>li.open>.nav-link-btn {
    background: var(--primary-light);
    color: var(--primary-color);
}

.nav-link-btn .chevron {
    font-size: 0.7rem;
    transition: transform 220ms ease;
}

.menu-wrap>li.open>.nav-link-btn .chevron {
    transform: rotate(180deg);
}

/* ── Dropdown base ── */
.dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    background: var(--white-color);
    border: 1px solid #E5E7EB;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 999;
    animation: dropIn 200ms ease forwards;
    border-top: 0;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-wrap>li.open>.dropdown-panel {
    display: block;
}

/* ── Simple dropdown ── */
.dropdown-simple {
    left: 0;
    min-width: 210px;
    padding: 0.5rem;
}

.dropdown-simple a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    font-family: var(--body-font);
    font-size: 0.875rem;
    color: var(--text-color);
    border-radius: 8px;
    text-decoration: none;
    transition: background 220ms ease, color 220ms ease;
}

.dropdown-simple a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.dropdown-simple a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* ── Mega panel ── */
.mega-panel {
    left: 0;
    top: 100%;
    transform: translateX(-50%);
    width: 100%;
    padding: 1.5rem;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.mega-panel.sol {
    grid-template-columns: repeat(4, 1fr);
}

.mega-panel.sol .menu-icon {
    width: 50px;
    max-width: 50px;
    flex: 0 0 50px;
}

.mega-panel.sol .menu-icon-detail .read-more-btn {
    display: none;
}

.menu-wrap>li.open>.mega-panel {
    display: grid;
}

.mega-col {
    padding: 0 1rem;
    border-right: 1px solid #E5E7EB;
}

.mega-col:first-child {
    padding-left: 0;
}

.mega-col:last-child {
    padding-right: 0;
    border-right: none;
    min-width: 300px;
}

.mega-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #E5E7EB;
}

.mega-group {
    margin-bottom: 1rem;
}

.mega-group:last-child {
    margin-bottom: 0;
}

.mega-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px dashed #E5E7EB;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.32rem 0.4rem;
    font-family: var(--body-font);
    font-size: 0.83rem;
    color: var(--text-color);
    border-radius: 6px;
    text-decoration: none;
    transition: background 220ms ease, color 220ms ease;
}

.mega-item>img {
    width: 20px;
}

.mega-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.mega-item i {
    color: #F97316;
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 14px;
}

/* ── Mega CTA card ── */
.mega-cta {
    background: #0D0D1A;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mega-cta-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.mega-cta-desc {
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.55;
}

.mega-cta-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.3;
}

.mega-cta-title span {
    color: var(--primary-color);
}

.mega-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 220ms ease;
    margin-top: auto;
}

.mega-cta-btn:hover {
    background: #5A0FBD;
    color: var(--white-color);
}

/* ── item-right ── */
.item-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ── Hamburger ── */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 220ms ease;
}

.hamburger:hover {
    background: var(--primary-light);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 220ms ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--white-color);
    overflow-y: auto;
    z-index: 998;
    padding: 1rem 1.25rem 2rem;
    border-top: 1px solid #E5E7EB;
}

.mobile-nav.open {
    display: block;
}

.mobile-item {
    border-bottom: 1px solid #E5E7EB;
}

.mobile-item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0;
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-item-btn .chevron {
    font-size: 0.75rem;
    transition: transform 220ms ease;
}

.mobile-item.open .mobile-item-btn .chevron {
    transform: rotate(180deg);
}

.mobile-sub {
    display: none;
    padding-bottom: 0.75rem;
}

.mobile-item.open .mobile-sub {
    display: block;
}

.mobile-sub-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9CA3AF;
    padding: 0.6rem 0 0.4rem;
}

.mobile-sub a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    font-family: var(--body-font);
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: none;
    border-radius: 6px;
    transition: background 220ms ease, color 220ms ease;
}

.mobile-sub a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.mobile-sub a i {
    color: #F97316;
    font-size: 0.7rem;
    width: 14px;
}

.mobile-cta {
    margin-top: 1.25rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */

/* CTA Band */
/* Footer Body */
.site-footer {
    background: #000;
}

.footer-body {
    padding-block: 200px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 2.5rem;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo .nav-logo-text {
    color: var(--white-color);
}

/* .footer-logo img { filter: brightness(0) invert(1); } */

.footer-brand-desc {
    font-family: var(--body-font);
    font-size: 18px;
    color: #919191;
    line-height: 1.7;
    margin: 0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(127 27 255);
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
    font-size: 20px;
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.footer-social-link:hover img {
    filter: brightness(0) invert(1);
}

/* Link columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 20px;
    margin: 0 0 20px;
    color: #8531F8;
    line-height: 120%;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Instrument Sans';
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    padding: 0 0 10px;
    color: #919191;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    transition: 0.5s all ease;
    font-family: var(--body-font);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 4px;
}

/* Contact list */
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact a i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a:hover {
    padding-left: 0;
}

/* Bottom bar */
.footer-bottom {
    padding-block: 1.25rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--body-font);
    font-size: 14px;
    color: #919191;
    margin: 0;
}

.footer-copy a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-copy a:hover {
    color: #A855F7;
}

.footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    font-family: var(--body-font);
    font-size: 14px;
    color: #919191;
    text-decoration: none;
    transition: color 220ms ease;
}

.footer-legal a:hover {
    color: var(--white-color);
}

.footer-cta-wrapper {
    margin-bottom: -120px;
}

.footer-cta {
    background: linear-gradient(223deg, #000000 0%, #0c0c0c 70%, #7F1BFF 110%);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid #535353;
}

.footer-slider-wrapper .footer-slide .footer-slide-detail {
    position: absolute;
    inset: 0;
    margin: auto;
}

.footer-slider-wrapper .footer-slide .footer-slide-detail,
.footer-slider-wrapper .footer-slide .footer-slide-detail a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-slider-wrapper .footer-slide .footer-slide-detail .slider-title {
    font-size: 20px;
    font-weight: 600;
}

.footer-slider-wrapper {
    overflow: hidden;
}

.footer-slide {
    width: 100%;
}

/* pagination niche center */
.footer-slider-wrapper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* dots style */
.footer-slider-wrapper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    opacity: 0.5;
    border: 0;
    outline: 0;
    margin: 0 5px;
}

.footer-slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.footer-cta>.row>div:not(:last-child) {
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, #050505, #4E4E4E, #171717) 1;
}

.site-footer .get-touch {
    background: #0D0D0D;
    padding: 20px;
    border: 1px solid;
    border-image: linear-gradient(to bottom, #050505, #7f1bff, #171717) 1;
}

/* Footer Responsive  */


/* faq */

.common-faq {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.common-faq .accordion-item {
    border: none;
    background: transparent;
    width: 100%;
}

.common-faq .accordion-header .accordion-button {
    font-size: 22px !important;
    line-height: 140%;
    letter-spacing: 1px;
    height: fit-content;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    box-shadow: none !important;
    font-family: 'Instrument Sans';
    background: #7f1bff !important;
    padding: 20px;
    border-radius: 10px 10px 0px 0px !important;
}

.common-faq .accordion-body {
    font-size: 20px;
    width: 100%;
    background: #7f1bff;
    color: #fff;
    padding: 20px;
    border-radius: 0px 0px 10px 10px !important;
    margin-top: 0;
    padding-top: 0;
    font-size: 16px;
}


.common-faq .accordion-button::after {
    transition: all 0.5s;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
    content: "+";
    color: #7f1bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 400;
}

.common-faq .accordion-header .accordion-button.collapsed {
    background: transparent !important;
}

.common-faq .accordion-header .accordion-button.collapsed:after {
    background: #7f1bff;
    color: #fff;
    content: "-";
}

/* header tab to accordion design */
/* ── Tab Dropdown Panel ── */
.dropdown-tab-panel {
    left: 0;
    top: 100%;
    min-width: 560px;
    padding: 0;
    display: none;
    flex-direction: row;
}

.menu-wrap>li.open>.dropdown-tab-panel {
    display: flex;
    width: 100%;
}

.tab-sidebar {
    width: 400px;
    flex-shrink: 0;
    padding: 0.5rem;
    border-right: 1px solid #E5E7EB;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: var(--body-font);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background 220ms ease, color 220ms ease;
    justify-content: space-between;
}

.tab-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn .tab-btn-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tab-btn img,
.tab-btn i.tab-icon {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-content-area {
    flex: 1;
    padding: 0.75rem 1rem;
    border-right: 1px solid #E5E7EB;
}

.tab-pane {
    display: none;
    flex-direction: column;
    gap: 2px;
}

.tab-pane.active {
    display: flex;
}

.tab-pane-link {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    font-family: var(--body-font);
    font-size: 0.875rem;
    color: var(--text-color);
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 1px dashed #E5E7EB;
    transition: background 220ms ease, color 220ms ease;
}

.tab-pane-link:last-child {
    border-bottom: none;
}

.tab-pane-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* ── Mobile accordion for tab dropdown ── */
@media (max-width: 991px) {
    .dropdown-tab-panel {
        flex-direction: column;
        min-width: unset;
    }

    .tab-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0;
    }

    .tab-btn {
        /* color: #fff; */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0.75rem 0.5rem;
    }

    .tab-btn:hover,
    .tab-btn.active {
        background: rgba(255, 255, 255, 0.15);
        /* color: #fff; */
    }

    .tab-btn .chevron-tab {
        font-size: 0.7rem;
        transition: transform 220ms ease;
    }

    .tab-btn.active .chevron-tab {
        transform: rotate(180deg);
    }

    .tab-content-area {
        display: none !important;
    }

    .tab-pane-mobile {
        display: none;
        flex-direction: column;
        gap: 2px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.08);
    }

    .tab-btn.active+.tab-pane-mobile {
        display: flex;
    }

    .tab-pane-mobile .tab-pane-link {
        /* color: rgba(255, 255, 255, 0.85); */
        border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    }

    .tab-pane-mobile .tab-pane-link:hover {
        background: rgba(255, 255, 255, 0.1);
        /* color: #fff; */
    }
}

/* Hide mobile panes on desktop (JS clones into content area instead) */
@media (min-width: 992px) {
    .tab-pane-mobile {
        display: none !important;
    }
}

/* Show mobile panes as accordion on mobile */
@media (max-width: 991px) {
    .tab-content-area {
        display: none !important;
    }

    .tab-btn.active+.tab-pane-mobile {
        display: flex !important;
    }

    .tab-pane-mobile {
        display: none;
        flex-direction: column;
        gap: 2px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.08);
    }
}

/* header tab to accordion design ends */

@media (min-width: 992px) and (max-width: 1800px) {
    .mega-panel {
        height: calc(100vh - 70px);
        overflow-y: scroll;
    }

    .mega-item {
        white-space: nowrap;
    }

    .mega-panel.sol .menu-icon {
        width: 30px;
        max-width: 30px;
        flex: 0 0 30px;
    }

    .mega-panel.sol .menu-icon-detail p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        font-size: 14px;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease;
        line-height: 20px;
        margin-bottom: 10px !important;
    }

    .mega-panel.sol .menu-icon-detail p.expanded {
        -webkit-line-clamp: unset;
    }

    .mega-panel.sol .menu-icon-detail .read-more-btn {
        font-size: 14px;
        display: block;
        color: var(--primary-color);
        cursor: pointer;
    }

    .mega-panel.sol {
        height: fit-content;
    }

    .mega-panel.sol .mega-col {
        padding-left: 15px;
        padding-right: 15px;
        height: fit-content;
    }

    .dropdown-panel.dropdown-tab-panel .tab-sidebar {
        width: fit-content;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1520px;
    }

    .footer-cta .slider-col+div ul.footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    p {
        line-height: 30px;
    }

}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    ul.menu-wrap {
        position: absolute;
        flex-direction: column;
        top: 100%;
        width: 100%;
        background: #5816db;
        border-radius: .625rem;
        transition: all .3s ease;
        left: 0;
        right: 0;
        border: 5px solid #fff;
        border-bottom: 0;
        padding: 15px 15px !important;
        opacity: 0;
        visibility: hidden;
        overflow-y: scroll;
    }

    ul.menu-wrap.full-height {
        height: 100vh;
    }

    ul.menu-wrap.active {
        opacity: 1;
        visibility: visible;
    }

    ul.menu-wrap.active .nav-link-btn {
        color: #fff;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-link-btn:hover,
    .menu-wrap>li.open>.nav-link-btn {
        color: var(--primary-color) !important;
    }

    .dropdown-panel {
        /* height: 100vh;
        overflow-y: scroll; */
        position: static !important;
        margin-top: .625rem;
        border-radius: 10px;
    }

    ul.menu-wrap li {
        width: 100%;
    }

    ul.menu-wrap li.open .dropdown-panel {
        grid-template-columns: repeat(1, 1fr);
    }

    ul.menu-wrap li.open .dropdown-panel .mega-col {
        border-right: 0;
        padding: 15px 0 0 0;
    }

    .common-faq .accordion-header .accordion-button {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        gap: 1rem;
    }
}