/* marketing.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-bg: #0A0B0F;
    --accent-purple: #7c4dff;
    --text-white: #ffffff;
    --text-gray: #a1a1a6;
    --card-bg-dark: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}




.dm-chennai {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    .container {
        max-width: 93.5% !important;
        margin: 0px auto;
    }

    section {
        padding: 100px 0px;
    }

    /* Common Typography */
    h1 {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.1;
    }

    h2 {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.2;
    }

    h3 {
        font-size: 23px;
        font-weight: 600;
        line-height: 1.3;
    }

    p,
    ul,
    li {
        line-height: 1.7;
        font-weight: 400;
        font-size: 20px;
        line-height: 150%;

    }

    ul {
        list-style: none;
        padding: 0;
    }

    .hero-section {
        position: relative;
        min-height: 100vh;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: radial-gradient(circle at center, rgba(124, 77, 255, 0.1) 0%, transparent 70%),
            url('../images/banner.webp') no-repeat center center;
        background-size: cover;
        overflow: hidden;
    }

    /* Background Crosshairs */
    .hero-section::before,
    .hero-section::after {
        content: '+';
        position: absolute;
        color: rgba(124, 77, 255, 0.4);
        font-family: 'Outfit', sans-serif;
        font-weight: 300;
        font-size: 24px;
        pointer-events: none;
    }

    .hero-section::before {
        top: 15%;
        left: 20%;
    }

    .hero-section::after {
        top: 35%;
        right: 15%;
    }

    .decoration-cross {
        position: absolute;
        color: rgba(124, 77, 255, 0.4);
        font-size: 24px;
        pointer-events: none;
    }

    .cross-1 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .cross-2 {
        bottom: 20%;
        left: 10%;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        margin-bottom: 60px;
        z-index: 2;
    }



    .hero-content p {
        margin-bottom: 40px;
        font-weight: 400;
        color: rgb(232 242 255);
    }

    .btn-touch {
        display: inline-flex;
        align-items: center;
        padding: 16px 40px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(124, 77, 255, 0.5);
        color: var(--text-white);
        text-decoration: none;
        border-radius: 100px;
        font-weight: 500;
        font-size: 18px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        box-shadow: 0 0 0 0 rgba(124, 77, 255, 0);
    }

    .btn-touch:hover {
        background: rgba(124, 77, 255, 0.2);
        border-color: var(--accent-purple);
        box-shadow: 0 0 30px rgba(124, 77, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-touch svg {
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .btn-touch:hover svg {
        transform: translateX(4px);
    }

    /* Grid Layout */
    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        width: 100%;
        z-index: 2;
        align-items: end;
    }

    .card {
        border-radius: 20px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .card:nth-child(1) {
        overflow: visible;
    }

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

    /* Card 1: In-House Team */
    .card-team {
        /* flex: 1 1 325px; */
        background: url('../images/image-1.png') no-repeat center center;
        background-size: cover;
        height: 338px;
        width: 325px;
    }

    .badge-team {
        position: absolute;
        top: 20px;
        right: -124px;
        box-shadow: 0px 14px 24.2px 0px #00000080;
        background: #ffffff;
        color: #080D0D;
        padding: 10px 24px;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 400;
        display: flex;
        align-items: center;
        z-index: 5;
    }

    /* Card 2: 800+ Brands */
    .card-brands {
        /* flex: 1 1 210px; */
        background: #ffffff;
        color: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        height: 258px;
        width: 210px;
    }

    .card-brands h2 {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 0;
        letter-spacing: -0.03em;
    }

    .card-brands p {
        color: #666;
        font-size: 18px;
        font-weight: 500;
    }

    /* Card 3: Growth (Lock) */
    .card-growth {
        /* flex: 1 1 210px; */
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid var(--glass-border);
        padding: 20px 0 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 211px;
        width: 210px;
    }

    .card-growth h3 {

        color: var(--text-white);
    }

    .icon-lock {
        width: 100%;
        max-width: 120px;
        margin-left: auto;
        margin-top: auto;
        opacity: 0.9;
    }

    /* Card 4: Top Rated (Chart) */
    .card-rated {
        /* flex: 1 1 210px; */
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 258px;
        width: 210px;
    }

    .card-rated h3 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: auto;
    }

    .chart-img {
        width: 100%;
        margin-top: 20px;
        filter: drop-shadow(0 0 10px rgba(124, 77, 255, 0.2));
    }

    /* Card 5: Expertise */
    .card-expertise {
        /* flex: 1 1 325px; */
        background: #ffffff;
        color: #000;
        padding: 20px 0px 20px 20px;
        display: flex;
        flex-direction: column;
        height: 338px;
        justify-content: center;
        align-items: end;
        width: 325px;
    }


    .expertise-img {
        width: 243px;
        margin-top: auto;
        height: 259px;
        object-fit: contain;
    }

    /* Accelerate Section */
    .accelerate-section {

        background-color: var(--primary-bg);
    }

    .accelerate-section .container {

        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .accelerate-content {
        flex: .6;
    }

    .accelerate-content h2 {
        margin-bottom: 30px;
        background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .accelerate-content p {
        margin-bottom: 40px;
        max-width: 550px;
    }

    .accelerate-visual {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .visual-container {
        background: #ffffff;
        padding: 40px;
        border-radius: 40px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 700px;
        transition: transform 0.5s ease;
    }

    .visual-container:hover {
        transform: scale(1.02);
    }

    .mockup-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    /* Glow effects */
    .glow {
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(50px);
        pointer-events: none;
    }

    .glow-1 {
        top: 10%;
        left: -100px;
    }

    .glow-2 {
        bottom: 10%;
        right: -100px;
    }


    /* Agency Section (White Theme) */
    .agency-section {

        background-color: #ffffff;
        color: #000000;
    }

    .agency-section .container {

        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .agency-visual {
        flex: .9;
    }

    .visual-wrapper {
        position: relative;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .agency-img {
        width: 100%;
        display: block;
        transition: transform 0.6s ease;
    }

    .visual-wrapper:hover .agency-img {
        transform: scale(1.05);
    }

    .badge-agency {
        position: absolute;
        top: 24px;
        left: 24px;
        background: #ffffff;
        color: #000;
        padding: 12px 24px;
        border-radius: 100px;
        font-size: 16px;
        font-weight: 400;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 2;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    .visual-wrapper:hover .badge-agency {
        transform: translateY(-5px);
    }

    .badge-agency .dot {
        width: 8px;
        height: 8px;
        background: var(--accent-purple);
        border-radius: 50%;
        margin-right: 10px;
    }

    .agency-content {
        flex: 1.2;
    }

    .agency-content h2 {
        margin-bottom: 25px;
        color: #0a0a0c;
    }

    .agency-content p {
        color: #0A0B0F;
        margin-bottom: 40px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-bottom: 40px;
        padding: 30px 0;
    }

    .stat-item {
        padding: 0 20px;
        border-right: 1px solid;
        border-image: linear-gradient(to bottom,
                #000000 0%,
                rgba(102, 102, 102, 0) 70%) 1;

    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-value {
        font-size: 40px;
        font-weight: 400;
        color: #0A0B0F;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }

    .btn-dark {
        display: inline-flex;
        align-items: center;
        padding: 16px 40px;
        background: #171717;
        color: #ffffff;
        text-decoration: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
        border: 1px solid #855BFF;

    }

    .btn-dark:hover {
        background: #2a2a2c;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-dark svg {
        margin-right: 12px;
    }


    /* Top Performing Section */
    .top-performing-section {
        /*  */
        background-color: #ffffff;
        margin: 80px 0px;
        padding: 0;
    }

    .top-performing-section .container {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
        padding-left: 4.8%;
    }

    .tp-content {
        flex: 1;
    }

    .tp-content h2 {
        margin-bottom: 40px;
        color: #0a0a0c;
    }

    .tp-list {
        list-style: none;
        padding: 0;
    }

    .tp-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 25px;
        color: #0A0B0F;
        margin-left: 20px;
    }

    .tp-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 8px;
        height: 8px;
        background: #000;
        border-radius: 2px;
    }

    .tp-visual {
        flex: 1;
    }

    .tp-img {
        width: 100%;
        /* border-radius: 24px; */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        display: block;
    }


    /* CTA Section */
    .cta-section {
        padding: 80px 0px;
        background-color: #ffffff;
    }

    .cta-section .container {

        margin: 0 auto;
    }

    .cta-card {
        background-color: #0a0a0c;
        border-radius: 32px;
        padding: 80px 40px;
        text-align: center;
        color: #ffffff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .cta-card h2 {
        margin-bottom: 25px;
        letter-spacing: -0.02em;
    }

    .cta-card p {
        max-width: 1050px;
        margin: 0 auto 40px;
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        padding: 16px 40px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        text-decoration: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #ffffff;
        transform: translateY(-2px);
    }

    .btn-outline svg {
        margin-right: 12px;
    }


    /* Services Section (Sticky Layout) */
    .services-section {

        background-color: var(--primary-bg);
    }

    .services-section .container {

        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        gap: 80px;
    }

    .services-left {
        flex: 1;
        position: sticky;
        top: 100px;
    }

    .services-left .sub-label {
        display: block;
        font-size: 20px;
        color: #A2A2A2;
        margin-bottom: 20px;
    }

    .services-left h2 {
        margin-bottom: 30px;
        background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .services-left p {
        margin-bottom: 50px;
    }

    /* Partners Grid */
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-box {
        background: #1a1a1c;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;

        img {
            width: 90%;
            height: 70px;
            object-fit: contain;
        }
    }

    .partner-box:hover {
        background: #FFFFFF33;
    }


    .google-logo,
    .meta-logo,
    .shopify-logo,
    .mailchimp-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }



    /* Right Side: Service Cards */
    .services-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 40px;
        color: #000;
        transition: transform 0.3s ease;
    }

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

    .service-icon {
        margin-bottom: 25px;
    }

    .service-card h3{
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #000000;
    }

    .service-card p {
        color: #0A0B0F;
        margin-bottom: 25px;
    }

    .know-more {
        text-decoration: none;
        color: #000;
        font-weight: 400;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .know-more:hover {
        gap: 12px;
    }


    /* Innovation Section */
    .innovation-section {

        background-color: #ffffff;
        text-align: center;
    }

    .innovation-section h2 {
        margin-bottom: 60px;
        color: #0A0B0F;
        text-align: left;
    }

    .process-flow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* gap: 15px; */
        margin-bottom: 60px;
        flex-wrap: wrap;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 15px; */
        /* width: 160px; */
    }

    .process-step img {
        width: 100%;
        height: auto;
        max-width: 192px;
        transition: transform 0.3s ease;
    }

    .process-step:hover img {
        transform: translateY(-5px);
    }

    .process-step span {
        font-size: 32px;
        font-weight: 400;
        color: #000;
    }

    .process-arrow {
        width: 24px;
        height: auto;
        opacity: 0.8;
    }

    .innovation-desc {
        margin: 0 auto;
        color: #0A0B0F;
        text-align: left;
    }


    /* Industries Section */
    .industries-section {

        background-color: var(--primary-bg);
    }

    .industries-section .section-header {
        text-align: left;
        /* max-width: 900px; */
        margin: 0 auto 60px;
    }

    .industries-section .section-header h2 {
        margin-bottom: 20px;
        background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .industries-section .section-header p {
        /* No local overrides needed */
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;

        margin: 0 auto;
    }

    .industry-card {
        background: #111616;
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, border-color 0.3s ease;
        padding: 20px;
        gap: 20px;
        border: 0.75px solid #FFFFFF1A
    }

    .industry-card:hover {
        transform: translateY(-8px);
        border-color: rgba(124, 77, 255, 0.3);
        background: var(--accent-purple);
        border: none;
    }

    .industry-card:hover h3,
    .industry-card:hover p {
        color: #ffffff;
    }

    .industry-card .card-content {
        flex-grow: 1;
    }

    .industry-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .industry-card p {
        /* No local overrides needed */
    }





    .industry-img {
        width: 100%;
        height: auto;
        display: block;
        margin-top: 15px;
    }


    /* Growth Section */
    .growth-section {

        background-color: #ffffff;
    }

    .growth-card {
        background-color: #0A0B0F;
        border-radius: 20px;
        /* padding: 60px 80px; */
        display: flex;
        align-items: center;
        gap: 60px;
        position: relative;
        overflow: hidden;
        color: #ffffff;
        padding-left: 50px;
    }

    .growth-content {
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .growth-content h2 {
        margin-bottom: 25px;
        color: #ffffff;
    }

    .growth-sub {
        color: #fff;
        margin-bottom: 30px;
    }

    .growth-bold {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .btn-contact {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 35px;
        background: transparent;
        border: 1px solid #855BFF;
        border-radius: 100px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .btn-contact:hover {
        background: #855BFF;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(133, 91, 255, 0.3);
    }

    .growth-visual {
        flex: .8;
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        z-index: 1;
    }

    .women-img {
        max-width: 100%;
        height: auto;
        position: relative;
        z-index: 3;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }

    .growth-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-image:
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
            radial-gradient(circle at 30% 70%, rgba(133, 91, 255, 0.05) 0%, transparent 50%);
        z-index: 0;
    }


    /* Vision Section */


    .vision-inner {
        display: flex;
        /* align-items: center; */
        gap: 50px;


    }

    /* Left: Image Card */
    .vision-visual {
        flex: 0 0 auto;
        background: #ffffff;
        border-radius: 20px;
        display: flex;
        align-items: end;


    }

    .vision-img-card {
        position: relative;
        overflow: visible;
        width: 535px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vision-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 24px;
    }

    .vision-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #0A0B0F;
        color: #ffffff;
        border-radius: 12px;
        /* padding: 16px 24px; */
        text-align: center;
        width: 150px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .badge-number {
        display: block;
        font-size: 60px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 6px;
    }

    .badge-label {
        display: block;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 1.3;
    }

    /* Right: Content */
    .vision-content {
        flex: 1;
    }

    .vision-label {
        display: block;
        font-size: 20px;
        color: #ebebeb;
        margin-bottom: 16px;
    }

    .vision-content h2 {
        color: #ffffff;
        margin-bottom: 20px;
    }

    .vision-desc {
        color: #FFFFFF;
        margin-bottom: 36px;
    }

    .vision-features {
        display: flex;
        flex-direction: column;
        gap: 16px;
        list-style: none;
        padding: 0;
    }

    .vision-features li {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #855BFF;
        border-radius: 10px;
        padding: 18px 24px;
        font-size: 20px;
        font-weight: 400;
        color: #ffffff;
        line-height: 1.4;
    }

    .vision-features li svg {
        flex-shrink: 0;
    }



    /* Testimonials Section */
    .testimonials-section {

        background-color: #ffffff;
    }

    .testimonials-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .testimonials-header h2 {
        color: #0A0B0F;
        margin-bottom: 0;
    }

    .swiper-nav {
        display: flex;
        gap: 15px;
        position: relative;
        width: 100px;
        height: 50px;
    }

    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next {
        position: static;
        width: 45px;
        height: 45px;
        background-color: #855BFF;
        border-radius: 50%;
        margin: 0;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .testimonials-section .swiper-button-prev::after,
    .testimonials-section .swiper-button-next::after {
        font-size: 18px;
        font-weight: 700;
    }

    .testimonials-section .swiper-button-prev:hover,
    .testimonials-section .swiper-button-next:hover {
        background-color: #6a3de8;
        transform: scale(1.1);
    }

    .testimonial-card {
        background: #ffffff;
        border: 1px solid #F2F2F7;
        border-radius: 24px;
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease;
    }

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

    .testimonial-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #170F49;
        margin-bottom: 20px;
    }

    .testimonial-card p {
        font-size: 18px;
        color: #6F6C90;

        line-height: 1.6;
        margin-bottom: 30px;
    }

    .testimonial-user {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .testimonial-user img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .user-info {
        display: flex;
        flex-direction: column;
    }

    .user-name {
        font-size: 18px;
        color: #170F49;
        font-weight: 700;
    }

    .user-title {
        font-size: 18px;
        color: #6F6C90;
        ;

    }



    /* Insights Section */
    .insights-section {

        background-color: #0A0B0F;
    }

    .insights-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .insights-header h2 {
        color: #ffffff;
        margin-bottom: 0;
    }

    .insight-card {
        background: #ffffff;
        overflow: hidden;
        border-radius: 20px;

        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 25px;
    }

    .insight-img-wrapper {
        width: 100%;
        height: 240px;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 30px;


    }

    .insight-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .insight-card:hover .insight-img-wrapper img {
        transform: scale(1.1);
    }

    .insight-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex-grow: 1;
    }

    .insight-content h3 {
        font-size: 26px;
        font-weight: 700;
        color: #0A0B0F;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .insight-content p {
        line-height: 1.5;
        color: #0A0B0F;

        margin-bottom: 10px;
    }

    .insight-content .know-more {
        font-size: 20px;
        font-weight: 600;
        color: #EC696A;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .insight-content .know-more:hover {
        gap: 12px;
    }

    /* Custom Nav for Insights on Dark BG */
    .insights-section .swiper-button-prev,
    .insights-section .swiper-button-next {
        position: static;
        width: 45px;
        height: 45px;
        background-color: #855BFF;
        border-radius: 50%;
        margin: 0;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .insights-section .swiper-button-prev::after,
    .insights-section .swiper-button-next::after {
        font-size: 18px;
        font-weight: 700;
    }

    .insights-section .swiper-button-prev:hover,
    .insights-section .swiper-button-next:hover {
        background-color: #6a3de8;
        transform: scale(1.1);
    }

    /* FAQ Section */
    .faq-section {

        background-color: #ffffff;
    }

    .faq-section h2 {
        text-align: center;
        color: #0A0B0F;
        margin-bottom: 60px;
        font-size: 40px;
    }

    .faq-accordion {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        background-color: #1A1B1F;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-question {
        padding: 25px 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .faq-question span {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.4;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        background-color: #855BFF;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }

    /* Arrow styling */
    .faq-icon::before {
        width: 10px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        margin-left: -3px;
    }

    .faq-icon::after {
        width: 10px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        margin-left: 3px;
    }

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

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        background-color: #1A1B1F;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding-bottom: 25px;
    }

    .faq-answer p,.faq-answer a {
        padding: 0 35px 25px 35px;
        color: #fff;
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
    }
    .faq-answer a {
        text-decoration: underline;
        font-weight: bold;
        padding: 0;
    }



    /* Accelerate Swiper Styling */
    .accelerate-swiper {
        width: 100%;
        max-width: 750px;
        margin: 0 0 0 auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .accelerate-swiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    /* Footer Section */
    .footer-section {
        padding: 100px 0 40px;
        background-color: #0A0B0F;
        color: #ffffff;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 80px;
        margin-bottom: 80px;
    }

    .footer-brand .footer-logo {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 25px;
        display: block;
        text-decoration: none;
    }

    .footer-brand p {
        color: #A2A2A2;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #ffffff;
    }

    .social-links a:hover {
        background-color: #855BFF;
        transform: translateY(-3px);
    }

    .footer-links h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #ffffff;
    }

    .footer-links ul li {
        margin-bottom: 15px;
    }

    .footer-links ul li a {
        color: #A2A2A2;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .footer-links ul li a:hover {
        color: #855BFF;
    }

    .footer-newsletter h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .newsletter-form {
        position: relative;
        margin-bottom: 20px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #ffffff;
        outline: none;
    }

    .newsletter-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        padding: 0 20px;
        background-color: #855BFF;
        border: none;
        border-radius: 8px;
        color: #ffffff;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .newsletter-form button:hover {
        background-color: #6a3de8;
    }

    .footer-bottom {
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #666;
        font-size: 14px;
    }

    .footer-legal {
        display: flex;
        gap: 30px;
    }

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

    .footer-legal a:hover {
        color: #ffffff;
    }

    /* Header / Navigation */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.3s ease;
        background: transparent;
    }

    .main-header.scrolled {
        background: rgba(10, 11, 15, 0.9);
        backdrop-filter: blur(10px);
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: -0.5px;
    }

    .nav-menu ul {
        display: flex;
        gap: 40px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
        opacity: 0.8;
    }

    .nav-menu ul li a:hover {
        color: #855BFF;
        opacity: 1;
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        padding: 12px 28px;
        background-color: #855BFF;
        color: #ffffff;
        text-decoration: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .nav-cta:hover {
        background-color: #6a3de8;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(133, 91, 255, 0.2);
    }

    .mobile-nav-toggle {
        display: none;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #ffffff;
        margin: 5px 0;
        transition: 0.3s;
    }
}


.footer{
    p,a {
    font-weight: 400;
    font-family: "Hanken Grotesk", sans-serif;
     font-size: 15px;
    color: #212529;
    line-height: 30px;
}
h5{
    color: #000;
}
}