:root {
    --primary-text-color: rgba(103, 31, 221, 1);
}

::selection {
    background-color: var(--primary-text-color);
    color: white;
}

* {
    margin: 0;
    padding: 0;
    /* font-size: 18px; */
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

/* Header CSS - Starts */

.navbar-container {
    z-index: 100;
}

.navbar {
    width: 80%;
    background-color: rgba(255,255,255,1);
    opacity: .92 !important;
    box-shadow: 1px 1px 10px rgba(100,100,100,.8);
}

.navbar .child-1 .main-image {
    width: 30px;
    height: auto;
}

.navbar .child-1 .main-image img {
    width: 100%;
    height: 100%;
}

.navbar .child-1 .main-header > a {
    font-size: 18px;
    text-decoration: none;
    color: rgba(28, 28, 28, 1);
}

.navbar .child-1 .main-header div {
    font-size: 14px;
    color: rgba(150, 151, 153, 1);
}

.navbar .child-2 .active-links {
    border-right: 1.5px solid rgba(186, 186, 186, .6);
}

.navbar .child-2 .active-links div, .navbar .child-2 .buttons * {
    font-size: 16px;
}

.auctions-btn {
    transition: all .3s ease;
}

.auctions-menu-links {
    width: 500px;
    bottom: 0;
    transform: translateY(200px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 1px 1px 10px rgba(0,0,0,.1);
    z-index: 101;
}

.auctions-menu-links.active {
    bottom: -240px;
    transform: translateY(0);
    opacity: 1;

    pointer-events: auto;
}

.auctions-menu-links a:hover {
    background-color: rgba(188, 137, 255, .4);
}

.auctions-menu-links a .auction-heading {
    font-size: 14px !important;
    color: rgba(44, 39, 67, 1);
}

.auctions-menu-links a .auction-subheading {
    font-size: 12px !important;
    color: rgba(140, 140, 140, 1);
}

.dropdown-menu.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.dropdown-menu.show .row {
    padding: 1rem;
    width: 50%;
    opacity: 1 !important;
    border-radius: 10px;
    background-color: white;
}

.dropdown-menu a .auction-heading {
    font-size: 14px !important;
    color: rgba(44, 39, 67, 1);
}

.dropdown-menu a .auction-subheading {
    font-size: 12px !important;
    color: rgba(140, 140, 140, 1);
}

.dropdown-menu a:hover {
    background-color: rgba(188, 137, 255, .4);
}

#auctionDropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#auctionDropdown.active {
    max-height: 300px;
}

#auctionDropdown a {
    font-size: 13px;
    color: rgba(115, 117, 121, 1) !important;
}

#auctionArrow {
    transition: transform 0.3s ease;
}

#auctionArrow.rotate {
    transform: rotate(180deg);
}

/* Header CSS - Ends */

/* Home CSS - Starts */

.heroContainer, .businessChooseContainer {
    padding: 6rem 0 10rem;
    background: 
        radial-gradient(
            ellipse 60% 60% at bottom,
            rgba(138, 56, 245, 1) 0%,
            rgba(138, 56, 245, .7) 40%,
            rgba(138, 56, 245, 0) 100%
        ),
        linear-gradient(
            to bottom,
            black 0%,
            black 100%
        );
}

.heroContainer .heroContent {
    width: 70%;
}

.heroContainer .heroContent .child-1 {
    font-size: 40px;
    background-color: transparent;
    background-image: linear-gradient(to right, white, rgba(188, 137, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 2.7rem;
}

.heroContainer .heroContent .child-2 {
    width: 70%;
    font-size: 14px;
    color: rgba(208, 208, 208, 1);
}

.heroContainer .heroContent .child-3 a {
    padding: .4rem .6rem;
    transition: .3s all ease;
}

.heroContainer .heroContent .child-3 a:hover {
    box-shadow: 1px 1px 10px rgba(200,200,200,0.8);
}

.heroContainer .heroContent .child-4 {
    font-size: 15px;
    letter-spacing: .5px;
}

.heroContainer .heroFloatingCard .heroFloatingCard-content {
    width: 80%;
    background-color: white;
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
    top: 100%;
}

.heroFloatingCard-content > .child-1 > .content-1 {
    font-size: 14.7px;
    color: rgba(28, 28, 28, 1);
}

.heroFloatingCard-content > .child-1 > .content-2 {
    font-size: 29.4px;
    color: rgba(28, 28, 28, 1);
}

.purple-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(138, 56, 245, 1);
    top: 40%;
    left: 0;
}

.heroFloatingCard-content > .child-2, .heroFloatingCard-content > .child-3 {
    font-size: 14px;
}

.heroFloatingCard-content > .child-2 > div:first-child {
    line-height: 1rem;
}

.heroFloatingCard-content > .child-2 > div:first-child, .heroFloatingCard-content > .child-2 > div:last-child > div:last-child {
    color: rgba(133, 134, 135, 1);
}


.infrastructureContainer {
    margin: 20rem 0 0;
}

.infrastructureContainer .infrastructureContent {
    width: 70%;
}

.infrastructureContent .header {
    width: 90%;
}

.infrastructureContent .header .title {
    font-size: 15px;
    color: rgba(137, 137, 137, 1);
}

.infrastructureContent .header .content, .modernBusinessesContent .header .title {
    width: 100%;
    font-size: 40px;
    line-height: 2.7rem;
}

.modernBusinessesContent > .header > a {
    font-size: 18px;
    transition: .3s all ease;
}

.modernBusinessesContent > .header > a:hover {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.main-content .faq .faq-item {
    border-bottom: 1px solid #ccc; 
    padding: 16px 0;
    transition: all .3s ease-in-out;
}

.main-content .faq .faq-question {
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.main-content .faq .faq-answer {
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    color: rgba(136, 136, 136, 1);
    transition: all 0.3s ease-in-out;
}

.main-content .faq .faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 8px;
}

.main-content .faq .arrow {
    transition: transform 0.3s;
}

.main-content .faq .faq-item.active .arrow {
    transform: rotate(180deg);
}

.main-content > div:last-child .image-container {
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,.1);
    transition: all .3s ease-in-out;
}

.main-content > div:last-child .image-container:hover {
    /*transform: scale(1.1);*/
    box-shadow: 1px 1px 10px rgba(0,0,0,.5);
}

.main-content > div:last-child .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.main-content > div:last-child .image-container img:hover {
    transform: scale(1.1);
    box-shadow: 1px 1px 10px rgba(0,0,0,.5);
}

.modernBusinessesContainer .modernBusinessesContent {
    width: 70%;
}

.modernBusinessesContent > .main-content > .cards-container > .card-container {
    border-radius: 15px;
    background-image: linear-gradient(to bottom, rgba(232, 214, 255, 1), rgba(255, 255, 255, 1));
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.modernBusinessesContent > .main-content > .cards-container .content-1 .heading {
    font-size: 20px;
    color: rgba(138, 56, 245, 1);
}

.modernBusinessesContent > .main-content > .cards-container .content-1 .content {
    font-size: 15px;
    color: rgba(115, 117, 121, 1);
}

.modernBusinessesContent > .main-content > .cards-container .content-2 {
    width: 240px;
    height: auto;
}

.modernBusinessesContent > .main-content > .cards-container img {
    width: 100%;
    height: 100%;
}

.simpleSecureContainer .simpleSecureContent {
    width: 70%;
}

.simpleSecureContainer .simpleSecureContent .header .headings .title {
    font-size: 15px;
    color: rgba(115, 117, 121, 1);
}

.simpleSecureContainer .simpleSecureContent .header .headings .heading {
    font-size: 40px;
}

.simpleSecureContainer .simpleSecureContent .header .button-container button {
    color: black;
    background-color: rgba(219, 219, 219, 1);
    font-size: 12px;
}

.simpleSecureContainer .simpleSecureContent .header .button-container button.active {
    background-color: rgba(0, 0, 0, 1);
    color: white;
}

.simpleSecureContainer .simpleSecureContent .main-content {
    padding: 3rem 0;
    height: 300px;
    width: 100%;
    overflow-y: scroll;
    position: relative;
}

.simpleSecureContainer .simpleSecureContent .main-content::-webkit-scrollbar {
    display: none;
}

.simpleSecureContainer .simpleSecureContent .main-content .cards-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
}

.simpleSecureContainer .simpleSecureContent .main-content .cards-container::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 85%;
    background: linear-gradient(to bottom, rgba(0, 70, 226, 1), rgba(138, 56, 245, 1), rgba(226, 60, 0, 1));
    border-radius: 4px;
}

/* Each step row */
.simpleSecureContainer .simpleSecureContent .main-content .step-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 120px;
    margin-bottom: 40px;
    scroll-margin-top: 100px;
    scroll-margin-bottom: 30px;
}

.simpleSecureContainer .simpleSecureContent .main-content .step-row:last-child {
    margin-bottom: 0;
}

/* Card sits in either left or right half */
.simpleSecureContainer .simpleSecureContent .main-content .card-content {
    width: 30%;
    padding: 18px 20px;
    background: #f8f8f8;
    border: 0.1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative; /* no more absolute */
    top: auto;
    left: auto;
    right: auto;
}

.simpleSecureContainer .simpleSecureContent .main-content .card-content.left {
    margin-right: auto;
    margin-left: 100px;
}

.simpleSecureContainer .simpleSecureContent .main-content .card-content.right {
    margin-left: auto;
    margin-right: 100px;
}

/* Dot sits centred on the line */
.simpleSecureContainer .simpleSecureContent .step-connector {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 2;
}

.simpleSecureContainer .simpleSecureContent .step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(82, 82, 82, 1);
    flex-shrink: 0;
}

.simpleSecureContainer .simpleSecureContent .step-chevron {
    margin-top: 0px;
    /* width: 0;
    height: 0; */
    /* border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid rgba(82, 82, 82, 1); */
}

.simpleSecureContainer .simpleSecureContent .main-content .card-content > div:first-child {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.simpleSecureContainer .simpleSecureContent .main-content .card-body-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(115, 117, 121, 1);
    line-height: 1.55;
}

.strategicContainer .strategicContent {
    width: 70%;
}

.strategicContainer .strategicContent .content-1 .title {
    font-size: 15px;
    color: rgba(115, 117, 121, 1);
}

.strategicContainer .strategicContent .content-1 .heading {
    font-size: 40px;
}

.strategicContainer .strategicContent .content-2 .content {
    color: rgba(88, 88, 88, 1);
}

.businessChooseContainer .businessChooseContent {
    width: 70%;
}

.businessChooseContainer .businessChooseContent .content-1 {
    color: white;
}

.businessChooseContainer .businessChooseContent .content-1 .title {
    font-size: 12px;
}

.businessChooseContainer .businessChooseContent .content-1 .heading {
    font-size: 40px;
}

/* Home CSS - Ends */

/* Footer CSS - Starts */

.footer-parent {
    font-size: 12px;
}

.footer-parent .footer-content-1 .main-image {
    width: 45px;
    height: 45px;
}

.footer-parent .footer-content-1 .main-image img {
    width: 100%;
    height: 100%;
}

.footer-parent .footer-content-1 .main-footer div:last-child, .footer-parent .footer-content-1 .content, .footer-parent a {
    color: rgba(109, 109, 109, 1);
}

.footer-parent .footer-content-1 .main-footer div:last-child {
    font-size: 12px;
}

/* Footer CSS - Ends */

/* FAQ Page CSS - Starts */

.page-f {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 64px 0 0 0;
}

/* ── HEADER ── */
.faq-header {
    text-align: center;
    margin-bottom: 52px;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: #111111;
    margin-bottom: 14px;
    line-height: 1.1;
}

.faq-sub {
    font-size: 15px;
    font-weight: 400;
    color: #999999;
}

/* ── FAQ LIST ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-list .faq-item {
    border-bottom: 1px solid #e8e8e8;
}
.faq-list .faq-item:first-child {
    border-top: 1px solid #e8e8e8;
}

.faq-list .faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6px;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
}

/* SVG chevron — clean ∨ exactly like image */
.faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    transition: transform 0.25s ease;
    color: #111111;
}

.faq-list .faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 6px;
    font-size: 14.5px;
    font-weight: 400;
    color: #666666;
    line-height: 1.75;
}

.faq-list .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 6px 20px 6px;
}

/* ── CTA SECTION ── */
.cta-section {
    margin-top: auto;
    padding: 60px 0 60px 0;
    position: relative;
}

/* Wide soft purple glow BEHIND the banner — exactly like image */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 200px;
    background: radial-gradient(ellipse at center, #d8b4fe 0%, #c084fc 25%, #a855f7 45%, transparent 72%);
    opacity: 0.38;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.cta-banner {
    background: #f0f0f1;
    border-radius: 18px;
    padding: 38px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0px 0px 149.7px -21px #8A38F5;

}

.cta-label {
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #111111;
    line-height: 1.15;
}

.btn-demo {
    background: #671FDD;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 18px 36px;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-demo:hover {
    background: #5016b0;
    color: #fff;
}
.btn-demo:active { transform: translateY(1px); }

/* FAQ Page CSS - Ends */


/* Media Query - Starts */

@media (max-width: 1024px) {
    .heroContainer .heroContent .child-1, .infrastructureContent .header .content, .modernBusinessesContent .header .title, .strategicContainer .strategicContent .content-1 .heading, .businessChooseContainer .businessChooseContent .content-1 .heading {
        font-size: 35px;
    }
        
    .heroContainer .heroContent, .infrastructureContainer .infrastructureContent, .modernBusinessesContainer .modernBusinessesContent, .simpleSecureContainer .simpleSecureContent, .strategicContainer .strategicContent, .businessChooseContainer .businessChooseContent {
        width: 80%;
    }
    
    .infrastructureContainer {
        margin: 20rem 0 0;
    }
    
    .modernBusinessesContent > .main-content > .cards-container .content-2 {
        width: 200px;
        height: auto;
    }
    
    .simpleSecureContainer .simpleSecureContent .main-content .cards-container::before {
        height: 84%;
    }

}

@media (max-width: 991px) {
    .infrastructureContainer {
        margin: 26rem 0 0;
    }
}

@media (max-width: 913px) {
    .navbar {
        width: 96%;
    }
}

@media (max-width: 768px) {
    .heroContainer .heroContent .child-1, .infrastructureContent .header .content, .modernBusinessesContent .header .title, .simpleSecureContainer .simpleSecureContent .header .headings .heading, .businessChooseContainer .businessChooseContent .content-1 .heading {
        font-size: 28px;
        line-height: 2rem;
    }

    .heroContainer .heroContent .child-2, .infrastructureContent .header .title, .simpleSecureContainer .simpleSecureContent .header .headings .title, .strategicContainer .strategicContent .content-1 .title, .strategicContent .content-2 .content, .businessChooseContainer .businessChooseContent .content-1 .title, .businessChooseContainer .businessChooseContent .content-2 .content {
        font-size: 14px;
        width: 80%;
    }
        
    .heroContainer .heroContent {
        width: 80%;
    }

    .heroFloatingCard-content > .child-1 > .content-1 {
        font-size: 13px;
    }

    .heroFloatingCard-content > .child-1 > .content-2 {
        font-size: 24px;
    }
    
    .infrastructureContainer {
        margin: 26rem 0 0;
    }

    .infrastructureContainer .main-content .faq .faq-question {
        font-size: 16px;
    }

    .infrastructureContainer .main-content .faq .faq-answer {
        font-size: 14px;
    }

    .main-content > div:last-child .image-container {
        width: 300px;
        height: 300px;
    }

    .faq-title { font-size: 28px; }
    .cta-banner { flex-direction: column; padding: 28px 24px; text-align: center; }
    .cta-heading { font-size: 22px; }
}

@media (max-width: 767px) {
    .navbar .child-2 .active-links {
        border: none;
    }
    
    .navbar .child-2 .active-links, .navbar .child-2 .buttons {
        width: 100%;
    }
    
    .mega-menu {
        position: static !important;
        box-shadow: none;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-menu.show .row {
        padding: 0;
        width: 100%;
        border-radius: 0;
        background-color: none;
}

    .infrastructureContainer {
        margin: 22rem 0 0;
    }

    .simpleSecureContainer .simpleSecureContent .main-content .cards-container::before {
        left: 20px;
        transform: none;
    }

    .simpleSecureContainer .simpleSecureContent .main-content .step-row {
        padding-left: 52px;
        margin-bottom: 28px;
    }

    .simpleSecureContainer .simpleSecureContent .main-content .card-content,
    .simpleSecureContainer .simpleSecureContent .main-content .card-content.left,
    .simpleSecureContainer .simpleSecureContent .main-content .card-content.right {
        width: 100%;
        margin: 0;
    }
    
    .simpleSecureContainer .simpleSecureContent .header .button-container button {
        font-size: 12px;
    }

    .simpleSecureContainer .simpleSecureContent .step-connector {
        left: 22px;
    }
    
    .simpleSecureContainer .simpleSecureContent .main-content .cards-container::before {
        height: 83%;
    }

    .footer-container .footer-content-1, .footer-container .footer-content-2, .footer-container .footer-content-1 > div {
        width: 100%;
        text-align: justify;
    }
}

@media (max-width: 730px) {
    .simpleSecureContainer .simpleSecureContent .main-content {
        padding: 0;
    }

    .simpleSecureContainer .simpleSecureContent .header .button-container button {
        display: none;
    }
}

@media (max-width: 546px) {
    .infrastructureContainer {
        margin: 32rem 0 0;
    }
}


@media (max-width: 425px) {
    .navbar {
        width: 90%;
    }
    
    .heroContainer .heroContent, .infrastructureContainer .infrastructureContent, .modernBusinessesContainer .modernBusinessesContent, .simpleSecureContainer .simpleSecureContent, .businessChooseContainer .businessChooseContent {
        width: 90%;
    }

    .heroContainer .heroContent .child-1, .infrastructureContent .header .content, .modernBusinessesContent .header .title, .simpleSecureContainer .simpleSecureContent .header .headings .heading, .strategicContainer .strategicContent .content-1 .heading, .businessChooseContainer .businessChooseContent .content-1 .heading {
        font-size: 22px;
        line-height: 1.5rem;
    }

    .heroContainer .heroContent .child-2, .infrastructureContent .header .title, .simpleSecureContainer .simpleSecureContent .header .headings .title, .strategicContainer .strategicContent .content-1 .title, .businessChooseContainer .businessChooseContent .content-1 .title {
        width: 90%;
        font-size: 12px;
    }

    .heroContainer .heroContent .child-4 {
        font-size: 12px;
    }
    
    .heroFloatingCard-content > .child-2, .heroFloatingCard-content > .child-3 {
        font-size: 12px;
    }
    
    .heroFloatingCard-content > .child-1 > .content-1 {
        font-size: 12px;
    }

    .heroFloatingCard-content > .child-1 > .content-2 {
        font-size: 18px;
    }
    
    .infrastructureContainer {
        margin: 26rem 0 0;
    }
    
    .main-content > div:last-child .image-container {
        width: 260px;
        height: 260px;
    }
    
    .main-content > div:last-child .image-container:hover {
        transform: scale(1.04);
    }
}

@media (max-width: 382px) {
    .infrastructureContainer {
        margin: 28rem 0 0;
    }
}

@media (max-width: 348px) {
    .infrastructureContainer {
        margin: 31rem 0 0;
    }
}

@media (max-width: 348px) {
    .infrastructureContainer {
        margin: 33rem 0 0;
    }
}

/* Media Query - Ends */