:root {
    --primary-purple: #8259E8;
    --light-purple: #f5f2ff;
}

html,
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.navbar {
    background-color: #0F1023;
    padding: 1rem 2rem;
}

.navbar-brand img {
    height: 32px;
}

.nav-link {
    color: white !important;
    margin: 0 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

.btn-outline-light-custom {
    border: 1px solid #7B61FF;
    color: white;
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

@media (max-width: 576px) {
    .btn-outline-light-custom {
        font-size: 12px;
    }
}

.btn-outline-light-custom:hover {
    background-color: white;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px 4px rgba(130, 89, 232, 0.18), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    max-width: 425px;
    margin-left: 240px;
    opacity: 0;
    transform: scale(0.96) translateY(-12px);
    pointer-events: none;
    animation: none;
    transition:
        opacity 0.25s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform, box-shadow;
}

.dropdown-title:hover .dropdown-content,
.dropdown-title.active .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
    animation: epicDropdownIn 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 32px 8px rgba(130, 89, 232, 0.22), 0 4px 16px rgba(0,0,0,0.12);
}

@keyframes epicDropdownIn {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(-12px);
        box-shadow: 0 0 0 rgba(130, 89, 232, 0.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        box-shadow: 0 8px 32px 8px rgba(130, 89, 232, 0.22), 0 4px 16px rgba(0,0,0,0.12);
    }
}

@media (max-width: 576px) {
    .dropdown-content {
        position: static;
        max-width: 100%;
        margin-left: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem 0.5rem;
    }
}

/* Remove hover for mobile, use a class for toggling */
.dropdown-title.active .dropdown-content {
    display: block;
}

a.menu-item {
    text-decoration: none;
    color: #1A1A1A;
}

.menu-item:hover .menu-icon {
    background: radial-gradient(317.01% 118.18% at 123.86% -0.9%, #7E3FD4 0%, #242346 100%);
    border-radius: 10px;
}

.menu-item:hover {
    .icon-item {
        display: none;
    }

    .icon-item-hover {
        display: inline;
    }
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 16px;
}

.arrow-menu {
    display: none;
}

.menu-item:hover {
    background-color: #FAF6FF;
    border-radius: 8px;
    cursor: pointer;

    .arrow-menu {
        display: inline;
    }
}

.menu-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 5px 1px #f7f6f6;

    .icon-item,
    .icon-item-hover {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin: 10px;
    }
}

.menu-text h3 {
    margin: 0;
    font-size: 1rem;
}

.menu-text p {
    margin: 0.3rem 0 0 0;
    font-size: 0.9rem;
    color: #555;
}

#openMenuBtn {
    padding: 0.5rem 1rem;
    margin: 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-left: 1rem;
}

.btn-purple:hover {
    background-color: #FFFFFF;
    /* color: #6A50FF; */
}


/* For small screens (below 576px or any specific breakpoint you prefer) */
@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0.7rem !important;
    }
}

.hero-section {
    padding: 4rem 2rem;
}

.tagline {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    color: #6B6B6B;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .tagline {
        font-size: 12px;
    }
}

.tagline i {
    background-color: #7B61FF;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6C6C6C;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: #7B61FF;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    background: linear-gradient(to right, #151533, #7B61FF);
    position: relative;
    /* overflow: hidden; */
}

.data-hygiene {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90%;
    object-fit: cover;
    border-top-left-radius: 20px;
}

.data-img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90%;
    object-fit: cover;
}

.data-img.data-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 106%;
    object-fit: cover;
}

@media (max-width: 768px) {
    h1.hero-title {
        text-align: center;
    }

    .hero-image-placeholder {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 412px) {
    h1.hero-title {
        font-size: 2em;
    }
}


/* second section */
.section-title {
    font-weight: 700;
    margin-bottom: 2rem;
}

.content-card {
    height: 100%;
    padding: 1.5rem 0;
    /* width: 320px; */
}

.icon-wrapper {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

@media(max-width: 576px) {
    .icon-wrapper {
        margin-bottom: 0.5rem;
    }
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-wrapper {
    padding: 5rem 1rem;
}

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

@media (max-width: 767px) {
    .content-row:last-child .card-divider {
        display: none;
    }
}

.data-section {
    padding: 5rem 0;
}

.data-heading-wrap {
    margin-bottom: 3rem;
}

.data-main-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .data-main-title {
        margin-top: -6rem;
    }
}

.data-feature-box {
    background-color: var(--light-purple);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    height: auto;
}

.data-image-block {
    background: linear-gradient(135deg, #6c54e4, #362985);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
}

.data-icon-circle {
    background-color: var(--primary-purple);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.data-feature-label {
    color: var(--primary-purple);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.data-feature-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.data-feature-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.data-btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s, border-color 0.3s;
}

@media (max-width: 330px) {
    .data-btn-primary {
        font-size: 12px;
    }
}


.data-btn-primary:hover {
    background-color: var(--primary-purple-dark);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.data-btn-learn {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: color 0.2s;
}

.data-btn-learn:hover {
    color: var(--primary-purple);
}

.data-btn-learn svg {
    margin-left: 3px;
    transition: transform 0.2s;
}

.data-btn-learn:hover svg {
    transform: translateX(3px);
}


.data-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 576px) {
    #dataFeaturesContainer {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .data-image-block {
        min-height: 250px;
        margin-bottom: 2rem;
    }

    #dataFeaturesContainer .data-feature-box:nth-child(1),
    #dataFeaturesContainer .data-feature-box:nth-child(2),
    #dataFeaturesContainer .data-feature-box:nth-child(3) {
        min-height: auto;
    }
}

/*  faq section */
.faq-wrapper {
    background-color: #f5f2ff;
    padding: 4rem 0;
}

.faq-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.faq-icon-circle {
    background-color: #6c54e4;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding: 0;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    color: #6c54e4;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    margin-top: 1rem;
    color: #666;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    line-height: 1.6;
    font-size: 0.95rem;
    pointer-events: none;
}

.faq-answer.active {
    max-height: 500px;
    /* adjust as needed for content */
    opacity: 1;
    pointer-events: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 3rem 1rem;
    }

    .faq-title,
    .faq-subtitle {
        font-size: 1.8rem;
    }
}


.compliance-img {
    height: 250px;
    width: 180px;
    margin: 1px;
    object-fit: contain;
}

@media (max-width: 375px) {
    .compliance-img {
        height: 200px;
        width: 100px;
    }
}


/* integraton section */

.int-section {
    padding: 6rem 0;
    /* overflow: hidden; */
    position: relative;
    background-color: #ffffff;
}

.outer-img,
.inner-img {
    position: absolute;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.outer-img.deg-45 {
    width: 60px;
    height: 60px;
}

.outer-img.deg-225 {
    width: 60px;
    height: 60px;
}

.outer-img.deg-315 {
    width: 50px;
    height: 50px;
}

.inner-img.deg-120 {
    width: 50px;
    height: 50px;
}


/* === Outer Circle Positions === */
.deg-45 {
    top: 8%;
    left: 82%;
}

.deg-225 {
    top: 89%;
    left: 18%;
}

@media (max-width:425px) {
    .deg-225 {
        top: 93%;
        left: 18%;
    }
}

.deg-315 {
    top: 89%;
    left: 82%;
}

.deg-120 {
    top: 3%;
    left: 25%;
}

@media (max-width:425px) {
    .deg-120 {
        top: 6%;
        left: 25%;
    }
}

.int-circle-inner img {
    width: 60%;
    height: auto;
    object-fit: contain;
}


.int-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
}

.int-badge-icon {
    width: 24px;
    height: 24px;
    background-color: #7950f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.int-badge-icon svg {
    width: 14px;
    height: 14px;
}

.int-badge-text {
    font-weight: 500;
    color: #333;
}

.int-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.int-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.int-btn {
    background-color: #7950f2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.int-btn:hover {
    background-color: #6741d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 80, 242, 0.2);
}

.int-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.int-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
}

.int-circle-outer {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    position: absolute;
}

.int-circle-middle {
    width: 75%;
    height: 75%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    position: absolute;
    top: 12.5%;
    left: 12.5%;
}

.int-circle-inner {
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, #7950f2, #5930c5);
    border-radius: 50%;
    position: absolute;
    top: 35%;
    left: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

@media (max-width: 991px) {
    .int-heading {
        font-size: 2.25rem;
    }

    .int-visual {
        margin-top: 3rem;
        height: 300px;
    }

    .int-circles {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .int-section {
        padding: 2rem 0rem 4rem 0;
    }

    .int-heading {
        font-size: 2rem;
    }

    .int-visual {
        height: 240px;
    }

    .int-circles {
        width: 220px;
        height: 220px;
    }
}



/*understand data section */

.data-hero-section {
    background-color: #161625;
    color: white;
    padding: 80px 0;
    /* min-height: 100vh; */
}

.data-action-button {
    background-color: #7266ef;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 30px;
}

.data-action-button:hover {
    background-color: #5c52d6;
}

.data-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.data-analysis-type {
    font-weight: bold;
    margin-bottom: 10px;
}

.data-process-step {
    margin-bottom: 20px;
}

.data-form-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.data-form-title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.data-submit-btn {
    background-color: #7266ef;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    margin-top: 20px;
}

.data-submit-btn:hover {
    background-color: #5c52d6;
}

.data-privacy-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    color: #555;
}

.data-privacy-text a:hover {
    color: #6a40c6;
}

.data-bolt-icon {
    background-color: #5c52d6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* footer section */

.custom-footer {
    padding: 2rem 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.brand-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.divider-line {
    border-top: 1px dotted #ccc;
    margin: 1.5rem 0;
}

.copyright-text {
    color: #666;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* border: 1px solid #8855ff; */
    color: #8855ff;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #c7bbe2;
    color: white;
}

@media (max-width: 767.98px) {
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }
}



.compliance-section {
    background-color: #151729;
    color: #ffffff;
    padding: 80px 0px !important;
    letter-spacing: 1px;
}

.compliance-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ebecf5;
}

.compliance-text {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 650px;
}

@media (max-width: 768px) {
    .compliance-heading {
        font-size: 2rem;
    }

    .compliance-text {
        font-size: 1rem;
    }

    .compliance-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 576px) {
    .compliance-heading {
        font-size: 1.75rem;
    }

    .compliance-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}


/* products page */

.prospect-section {
    text-align: center;
    padding: 4rem 1rem;
}

.prospect-heading {
    font-weight: 700;
    font-size: 2rem;
}

.prospect-description {
    max-width: 600px;
    margin: 1rem auto 2rem;
    font-size: 0.95rem;
    color: #555;
}

.prospect-cta .btn-custom {
    margin: 0 0.5rem;
}

.prospect-image-full {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.prospect-image-full img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .prospect-heading {
        font-size: 2.5rem;
    }

    .prospect-description {
        font-size: 1rem;
    }
}



/* products third section */

.section-intro {
    text-align: center;
    padding: 1rem 1rem 3rem;
}

.section-intro h6 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.section-intro h2 {
    font-weight: 700;
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
}

.section-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

.feature-img {

    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.feature-text h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

.feature-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: #555;
}

.feature-text strong {
    font-weight: 600;
    color: #000;
}

@media (min-width: 768px) {
    .section-intro h2 {
        font-size: 2.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}



/* testimonails */

.testimonial-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    height: 100%;
}

.testimonial-logo {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.85rem;
    color: #666;
}


.challenge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(120deg, #7B61FF 0%, #8259E8 40%, #5C4D91 100%);
    color: #fff;
    box-shadow: 0 4px 18px 0 rgba(130, 89, 232, 0.18), 0 1.5px 6px rgba(0,0,0,0.08);
    font-size: 2rem;
    transition:
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
        background-color 0.3s;
    position: relative;
    overflow: visible;
}

.challenge-icon:hover {
    box-shadow: 0 8px 32px 0 rgba(130, 89, 232, 0.18), 0 4px 16px rgba(0,0,0,0.10);
    transform: scale(1.06);
    transition:
        background-color 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        color 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.challenge-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(130, 89, 232, 0.12);
    opacity: 0;
    transition: opacity 0.3s, box-shadow 0.3s, border-color 0.3s;
    pointer-events: none;
}

.challenge-icon:hover::after {
    opacity: 1;
    box-shadow: 0 0 24px 8px rgba(130, 89, 232, 0.10);
    border-color: #7B61FF;
}

.main-heading {
    font-weight: bold;
    margin-bottom: 60px;
}

.challenge-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.challenge-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.section-padding {
    padding: 0px 0 80px 0;
}

.text-center {
    text-align: center;
}

.logo {
    margin-top: 50px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* faq section */


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

.faq-title {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-intro {
    color: #6c757d;
    max-width: 500px;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #212529;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
    /* border-radius: 10px !important; */
    /* overflow: hidden; */
    margin-bottom: 15px;
    border: 2px solid #dee2e6;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    color: #6c757d;
}

.accordion-button::after {
    background-image: none !important;
    content: "\f067" !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: #212529;
    width: auto;
    height: auto;
    margin-right: 10px;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068" !important;
    transform: rotate(0deg);
}

.card {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    height: 540px;
    width: 495px;
}

.card img {
    width: 80px;
    margin-bottom: 20px;
    padding-top: 100px;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #000;
}

.card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 6rem;
    align-items: flex-start;
    align-self: stretch;
}

@media (max-width: 1024px) {
    .article-grid {
        gap: 3rem;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .article-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}

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

.article-item .content-body {
    flex-grow: 1;
}

.article-item {
    overflow: hidden;
    display: flex;
    padding-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 40px;
    background: #FAF5FF;
    height: 400px;
}

.article-content-preview {
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.article-preview-title {
    color: #212529;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
    display: flex;
    align-self: stretch;
    flex: 1 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.h2-small-text {
    font-size: 0.9rem !important;
}

.article-item .content-body {
    flex-grow: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    color: #212529;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 57.6px;
    /* 144% */
}

.article-item p.date {
    color: #6B6B6B;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 0px;
    /* 162.857% */
    align-self: stretch;
}

.article-preview-content {
    overflow: hidden;
    color: #212529;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    height: 72px;
    align-self: stretch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-preview-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.article-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-item-link:hover .article-item {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #8259E8;
}

.article-content-preview .markdown-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    text-decoration: none;
    color: #8259E8;
}

.back-link:hover {
    text-decoration: underline;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background-color: #f5f2ff;
    padding: 2rem;
    border-radius: 8px;
}

/*
.articles-container {
    display: flex;
    width: 1480px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: center;
    padding-top: 70px;
    padding-bottom: 70px;
}
*/

.article-container {
    max-width: 1440px;
    margin: 0px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
}
.hero-image {
    max-width: 1480px;
    height: 480px;
    opacity: 1;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%;
    display: block;
    /* If using as a background image, set background-image: url('...'); */
    /* If using <img>, object-fit: cover will crop/trim to fit */
}

.hero-title {
    height: 96px;
    opacity: 1;
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: left;
    vertical-align: middle;
}

.hero-date {
    display: box;
    box-orient: vertical;
    line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: #6B6B6B;
    text-align: center;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.8px;
    /* 142.5% */
}

.hero-grid-item {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    align-items: center;
}

.hero-grid-title {
    color: #212529;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    align-self: stretch;
}

.hero-article-item {
    max-width: 1480px;
}

/*
.hero-article-item {
    justify-self: center;
    align-self: center;
    width: 1480px;
    height: 880px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 40px;
}
*/

.article-content {
    max-width: 914px;
    margin: 0 auto;
    color: #212529;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0px;
}

.article-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ol,
.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.article-image-container {
    width: 100%;
    display: flex;
    height: 180px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
    position: relative;
}

.article-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 10px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .article-image-container {
        height: 120px;
    }
    .article-image-container img {
        aspect-ratio: 3/2;
    }
}

@media (max-width: 480px) {
    .article-image-container {
        height: 80px;
    }
    .article-image-container img {
        aspect-ratio: 3/2;
    }
}

.article-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #8259E8;
}

.article-item a {
    text-decoration: none;
    color: #1a1a1a;
}

.article-item a:hover {
    color: #8259E8;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

h2 {
    scroll-margin-top: 5rem;
}

code {
    background-color: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

strong {
    font-weight: bold;
}

.toc-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
}

.toc-sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    border-radius: 16px;
    background: #FAF5FF;
    height: fit-content;
}

.toc-sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.toc-sidebar ul {
    list-style-type: none;
    padding: 0;
    border-left: 2px solid #ddd;
}

.toc-sidebar a {
    display: block;
    padding: 0.5rem;
    margin: 0.2rem 0;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transform: translateX(-2px);
}

.toc-sidebar li>a:hover {
    border-left-color: #8259E8;
    transform: translateX(0);
}


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

@media (max-width: 960px) {
    .hero-article-item {
        width: 92%;
    }

    .hero-image {
        height: auto;

    }

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

    .article-content-main {
        max-width: 92%;
        margin: 0 auto;
    }

    .toc-sidebar {
        display: none;
    }
}

.share-social {
    width: 386px;
    height: 38px;
    display: flex;
}

.social-box {
    height: 50px;
    max-width: fit-content;
    display: flex;
}

.sta {
    max-width: fit-content;
    margin-right: 15px;
    margin-top: 10px;
}

.no-articles {
    min-height: 450px;
}


/* Media Solutions Page */
.media-solutions-page {
    background-color: #f8f9fa;
}

.media-hero-section {
    background-color: var(--light-purple, #f5f2ff);
    padding: 4rem 0;
    text-align: center;
}

.media-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
}

.media-hero-section .lead {
    font-size: 1.25rem;
    color: #6C6C6C;
    max-width: 700px;
    margin: 1rem auto 0;
}

.media-intro-section {
    padding: 4rem 0;
}

.media-intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #343a40;
}

.differentiators-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.differentiators-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.differentiators-section .subtitle {
    color: #6c757d;
    margin-bottom: 3rem;
}

.differentiator-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.differentiator-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple, #8259E8);
    margin-bottom: 1rem;
}

.offerings-section {
    padding: 5rem 0;
}

.offerings-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

.offering-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.offering-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offering-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.outcomes-list {
    list-style: none;
    padding-left: 0;
}

.outcomes-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    color: #343a40;
}

.outcomes-list li::before {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 4px;
}

.media-cta-section {
    background-color: var(--primary-purple, #8259E8);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.media-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #eee9fc;
}

.media-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.media-faq-section {
    padding: 5rem 0;
}

.media-faq-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}
/* Resources page */
#page-resources {
    .article-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #FAF5FF;
        border: 1px solid #e5e5ef;
        border-radius: 0.5rem;
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        overflow: hidden;
        box-shadow: none;
        transform: none;
    }
    .article-card:hover {
        border-color: #b9a7f6;
        box-shadow: 0 2px 12px 0 rgba(130, 89, 232, 0.07);
        transform: translateY(-2px) scale(1.01);
        background-color: #faf7ff;
    }
    .article-card__image-link {
        display: block;
        height: 200px;
        overflow: hidden;
    }
    .article-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter 0.3s, transform 0.3s;
        filter: none;
        transform: scale(1);
    }
    .article-card:hover .article-card__image {
        filter: brightness(0.97) saturate(1.08);
        transform: scale(1.02);
    }
    .article-card__content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .article-card__meta {
        font-size: 0.875rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .article-card__title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        flex-grow: 1;
        transition: color 0.2s;
    }
    .article-card__title a {
        text-decoration: none;
        color: #212529;
        transition: color 0.2s;
    }
    .article-card:hover .article-card__title a {
        color: #8259E8;
    }
    .article-card__preview {
        font-size: 1rem;
        color: #495057;
        line-height: 1.6;
    }
}


.btn-cta-main {
    background-color: #8259E8;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta-main:hover {
    background-color: #6A40C6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 64, 198, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta-main:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(106, 64, 198, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}



/* from footer */
html,
body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    background: #f2f2f2;
    padding: 20px;
}
