/*-------------------
    UI Fonts
-------------------*/

@font-face {
    font-display: swap;
    font-style: normal;
    src: url("../fonts/Inter-Regular.otf");
    font-family: "Inter";
    font-weight: 400;
}
@font-face {
    font-display: swap;
    font-style: normal;
    src: url("../fonts/Inter-Bold.ttf");
    font-family: "Inter";
    font-weight: 700;
}
@font-face {
    font-display: swap;
    font-style: normal;
    src: url("../fonts/Inter-Medium.ttf");
    font-family: "Inter";
    font-weight: 500;
}

/*-------------------
    UI Variables
-------------------*/

:root {
    /* Colors */
    --black_900: #010002;
    --black_900_00: #00000000;
    --black_900_00_01: #02010300;
    --black_900_00_02: #0e081b00;
    --black_900_01: #020103;
    --black_900_02: #050208;
    --black_900_03: #0b0614;
    --black_900_04: #000000;
    --black_900_05: #0d0717;
    --black_900_0f: #0000000f;
    --blue_gray_800: #4d3762;
    --blue_gray_900: #2a193c;
    --deep_purple_700_00: #56299d00;
    --deep_purple_a200: #9855ff;
    --deep_purple_a200_01: #8c45ff;
    --deep_purple_a200_66: #8c45ff66;
    --deep_purple_a200_7c: #8c45ff7c;
    --deep_purple_a200_7f: #8c45ff7f;
    --deep_purple_a700_68: #4e00bf68;
    --gray_300: #e3e4e8;
    --gray_50: #f9f5ff;
    --gray_800_66: #3d3d3d66;
    --gray_900: #190d2e;
    --indigo_900: #371866;
    --indigo_900_01: #361764;
    --purple_300: #b372cf;
    --purple_800: #602a9a;
    --purple_800_01: #622a9a;
    --white_a700: #ffffff;
    --white_a700_19: #ffffff19;
    --white_a700_26: #ffffff26;
    --white_a700_7f: #ffffff7F;
    --white_a700_99: #ffffff99;
    --white_a700_b2: #ffffffb2;
    --black_600: #656d76;
    --gray_shadow: #00000029;
    /* Shadow variables */
    --shadow-xs: 0 -19px 70px 0 #8c45ff66;
    --shodow-sm: 0 0 13px 5px #00000029;
    /* Border radius variables */
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 156px;
    --radius-2xl: 284px;
    --radius-3xl: 342px;
    --radius-4xl: 412px;
    /* Spacing variables */
    --spacing-xs: 2px;
    --spacing-sm: 4px;
    --spacing-md: 6px;
    --spacing-lg: 8px;
    --spacing-xl: 10px;
    --spacing-2xl: 12px;
    --spacing-3xl: 16px;
    --spacing-4xl: 20px;
    --spacing-5xl: 26px;
    --spacing-6xl: 28px;
    --spacing-7xl: 30px;
    --spacing-8xl: 32px;
    --spacing-9xl: 40px;
    --spacing-10xl: 60px;
    --spacing-11xl: 178px;
    --card-border: #4d3168;
    --card-bg: #261834;
    --primary-color: #7f0df2;
    --body-bg: #f7f5f8;
    --body-bg-dark: #191022;
    --border-color: #4d3168;
    --secondary-color: #ad90cb;
    --text-white: white;
    --text-white-70: rgba(255,255,255,0.7);
    --text-white-80: rgba(255,255,255,0.8);
    --border-border: #362249;
}
/*------------------------\
    Utility classes
\------------------------*/
.flex-col-center-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.flex-col-center-start{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/*------------------------
     Buttons
------------------------*/

.ui.button.round{
    border-radius: var(--radius-xs);
}
.ui.button.size-xs{
    height: 30px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
}
.ui.button.size-sm{
    height: 38px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
}
.ui.button.fill.deep_purple_a200_66{
    background-color: var(--deep_purple_a200_66);
    color: var(--white_a700);
}
.ui.button.fill.white_a700{
    background-color: var(--white_a700);
    color: var(--black_900_04);
}
.ui.button.fill.gray_800_66{
    background-color: var(--gray_800_66);
    color: var(--white_a700);
}
.ui.button{
    text-align: center;
    display: flex;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
/*------------------------
     Switch Css
------------------------*/
.ui.switch input[type="checkbox"]{
    width: 0;
    height: 0;
    visibility: hidden;
}
.ui.switch.square label{
    border-radius: 0px;
}
.ui.switch.size-xs label{
    height: 20px;
}
.ui.switch.swtfillgray300 input:checked + label{
    background-color: var(--deep_purple_a200_01);
    border-radius: var(--radius-sm);
    &::after{
        left: calc(100% - 18px);
    }
}
.ui.switch.swtfillgray300 label{
    background-color: var(--gray_300);
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-sm);
    &::after{
        height: 16px;
        background-color: var(--gray_50);
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        border-radius: var(--radius-xs);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0.4, 0 , 0.2, 1);
    }
}

/*------------------------
    Input Css
------------------------*/
.ui.input.round{
    border-radius: var(--radius-sm);
}
.ui.input.size-xs{
    height: 48px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
}
.ui.input.outline.white_a700_26{
    color: var(--white_a700_7f);
    border: 1px solid var(--white_a700_26);
}
.ui.input{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: text;
    color: var(--white_a700_7f);
    font-size: 16px;
    flex-grow: 1;
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_26);
}
/*------------------------
    Text Css
------------------------*/
.ui.text.size-body_xs{
    font-size: 13px;
    letter-spacing: -0px;
    font-weight: 400;
}
.ui.text.size-body_m{
    letter-spacing: -0px;
    font-size: 16px;
    font-weight: 400;
    @media only screen and (max-width: 550px) {
        font-size: 13px;
    }
}
.ui.text.size-body_l{
    letter-spacing: -0px;
    font-size: 20px;
    font-weight: 400;
    @media only screen and (max-width: 550px) {
        font-size: 17px;
    }
}
.ui.text.size-body_s{
    letter-spacing: -0px;
    font-size: 14px;
    font-weight: 400;
}
.ui.text{
    color: var(--white_a700_7f);
    font-family: "Inter";
}
/*-----------------------
    Heading Css
-----------------------*/
.ui.heading.size-heading_1{
    letter-spacing: -4.15px;
    font-size: 82px;
    font-weight: 500px;
    @media only screen and (max-width: 1050px) {
        font-size: 48px;
    }
    @media only screen and (max-width: 550px) {
        font-size: 36px;
        letter-spacing: -2px;
    }
}
.ui.heading.size-heading_3{
    letter-spacing: -0.01px;
    font-size: 32px;
    font-weight: 500;
    @media only screen and (max-width: 1050px) {
        font-size: 30px;
    }
    @media only screen and (max-width: 550px) {
        font-size: 27px;
    }
}
.ui.heading.size-heading_5{
    letter-spacing: -0px;
    font-size: 16px;
    font-weight: 500;
    @media only screen and (max-width: 550px) {
        font-size: 13px;
    }
}
.ui.heading.size-heading_2{
    letter-spacing: -0.84px;
    font-size: 56px;
    font-weight: 50;
    @media only screen and (max-width: 1050px) {
        font-size: 48px;
    }
    @media only screen and (max-width: 550px) {
        font-size: 47px;
    }
}
.ui.heading.size-quote{
    letter-spacing: -0px;
    font-size: 23px;
    font-weight: 500;
    @media only screen and (max-width: 1050px) {
        font-size: 21px;
    }
    @media only screen and (max-width: 550px) {
        font-size: 19px;
    }
}
.ui.heading.size-textxs{
    font-size: 13px;
    font-weight: 500;
}
.ui.heading.size-texts{
    font-size: 24px;
    font-weight: 500;
    @media screen and (max-width: 1050px) {
        font-size: 22px;
    }
    @media screen and (max-width: 550px) {
        font-size: 20px;
    }
}
.ui.heading.size-headingxs{
    font-size: 10px;
    font-weight: 700;
}
.ui.heading{
    color: var(--white_a700);
    font-family: "Inter";
}
/*-----------------------
    Container Css
-----------------------*/
.container-xs{
    max-width: 1120px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/*-----------------------
    Index css
-----------------------*/
body{
    margin: 0;
    padding: 0;
    font-family: "Inter";
}
*{
    box-sizing: border-box;
    line-height: normal;
    font-family: inherit;
    margin: unset;
}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    display: block;
}
ul{
    margin: o;
    margin-inline: unset !important;
    padding: 0;
    list-style: none;
}
input{
    background-color: transparent;
    width: 100;
}
[type="checkbox"]{
    margin: 0;
}
[type="text"],input:where(:not([type])),[type="email"],[type="url"],[type="password"],[type="number"],[type="date"],[type="datetime-local"],[type="month"],[type="search"],[type="tel"],[type="time"],[type="week"],[multiple],textarea,select,button{
    appearance: none;
    background-color: transparent;
    border-color: unset;
    border-width: 0;
    border-radius: unset;
    padding: unset;
    font-size: unset;
    line-height: unset;
    color: inherit;
}
input:focus-visible,[multiple]:focus-visible,textarea:focus-visible,select:focus-visible{
    outline: none;
}

/*-----------------------
    Common Css
-----------------------*/

.dhi-group{
    cursor: pointer;
    &:hover > :last-child{
        display: block;
    }
}
.header__nav-item{
    gap: var(--spacing-xs);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.header__nav-icon{
    height: 14px;
    width: 14px;
}
.dhi-group-2{
    position: absolute;
    top: auto;
    min-width: 200px;
    padding-top: var(--spacing-2xl);
    z-index: 99;
    display: none;
    group-hover{
        display: block;
    }
}
.menu-container{
    background-color: var(--black_900);
    box-shadow: var(--shodow-sm);
    width: 100%;
    padding: var(--spacing-4xl);
    border-radius: var(--radius-xs);
}
.menu-group{
    gap: var(--spacing-7xl);
    display: flex;
}
.mega-menu__link{
    color: var(--black_600) !important;
    font-size: 16px;
    font-weight: 400;
    align-self: center;
    @media only screen and (max-width: 550px) {
        font-size: 13px;
    }
}
.menu{
    gap: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    @media screen and (max-width: 550px) {
        gap: var(--spacing-3xl);
    }
}
.mega-menu__title{
    color: var(--purple_800) !important;
    font-size: 18px;
    font-style: 700;
    @media screen and (max-width: 550px) {
        font-size: 15px;
    }
}
.menu-column{
    gap: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    @media screen and (max-width: 550px) {
        gap: var(--spacing-2xl);
    }
}
.menu-link{
    align-self: center;
    @media only screen and (max-width: 550px) {
        font-size: 13px;
    }
}
.mega-menu__text{
    color: var(--black_600) !important;
    font-size: 16px;
    font-weight: 400;
}
.header__nav-link{
    color: var(--white_a700_99) !important;
}
.user-profile-image{
    width: 100%;
    display: flex;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_26);
    @media only screen and (max-width: 550px) {
        padding: var(--spacing-4xl);
    }
}
.user-profile-image__logo{
    height: 34px;
    width: 90%;
    object-fit: contain;
}
.content-section__features{
    gap: var(--spacing-xl);
    display: flex;
    @media only screen and (max-width: 1050px) {
        flex-direction: column;
    }
}
.content-section__feature-item--user-friendly{
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(55, 24, 102, 0.8)), url("../assets/img/wide2.png");
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
    padding: var(--spacing-9xl);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Ensures all content aligns at the bottom */
    align-items: flex-start;
    @media only screen and (max-width: 1050px) {
        align-self: stretch;
        height: auto;
    }
    @media only screen and (max-width: 550px) {
        padding: var(--spacing-4xl);
    }
}
.content-section__feature-item-user-friendly{
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(55, 24, 102, 0.8)), url("../assets/img/wide3.png");
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
    padding: var(--spacing-9xl);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Ensures all content aligns at the bottom */
    align-items: flex-start;
    @media only screen and (max-width: 1050px) {
        align-self: stretch;
        height: auto;
    }
    @media only screen and (max-width: 550px) {
        padding: var(--spacing-4xl);
    }
}
.content-section__feature--details--user-friendly{
    margin-top: auto;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
}
.aikit-feature{
    gap: var(--spacing-9xl);
    display: flex;
    width: 32%;
    flex-direction: column;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}
.aikit-feature__section{
    gap: var(--spacing-xl);
    display: flex;
    flex-direction: column;
}
.aikit-feature__header{
    display: flex;
    align-items: center;
}
.aikit-feature__image{
    height: 16px;
}
.aikit-feature__title{
    margin-left: 4px;
}
.aikit-feature__description{
    color: var(--white_a700_b2) !important;
    width: 80%;
    line-height: 26px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}
.content-heading__subtitle{
    color: var(--white_a700) !important;
    text-align: center;
    align-self: stretch;
    line-height: 31px;
}
.pricing-plan{
    gap: var(--spacing-11xl);
    display: flex;
    background-color: var(--black_900_0f);
    width: 32%;
    cursor: pointer;
    flex-direction: column;
    padding: var(--spacing-4xl);
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_26);
    &:hover{
        box-shadow: 0 10px 74px 10px #4e00bf68;
    }
    @media only screen and (max-width: 1050px) {
        width: 100%;
        gap: 133px;    
    }
    @media only screen and (max-width: 550px) {
        gap: 89px;
    }
}
.pricing-plan__details{
    gap: var(--spacing-9xl);
    display: flex;
    flex-direction: column;
}
.pricing-plan__pricing{
    gap: var(--spacing-md);
}
.pricing-plan__title{
    letter-spacing: -0.01px;
}
.trusted-section__title{
    color: var(--white_a700_b2) !important;
}
.user-testimonial__author__name{
    color: var(--white_a700) !important;
}
.pricing-plan__feature{
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    gap: var(--spacing-md);
    display: flex;
    align-items: center;
}
.pricing-plan__feature-icon{
    height: 14px;
}
.pricing-plan__feature-text-1{
    color: var(--white_a700) !important;
    align-self: flex-end;
}
.pricing-plan__button{
    color: var(--white_a700) !important;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 14px;
    background-color: var(--gray_800_66) !important;
    align-self: stretch;
    height: 38px;
    border-radius: 10px !important;
    border: 1px solid var(--white_a700_26) !important;
    @media only screen and (max-width: 550px) {
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.ctasection__text--nocreditcard{
    align-self: flex-end;
}
.footer__links-column--product{
    gap: var(--spacing-5xl);
    display: flex;
    width: 30%;
    flex-direction: column;
    align-items: flex-start;
    @media only screen and (max-width: 550px) {
        width: 100%;
    }
}
.footer__links-column--legal{
    gap: var(--spacing-5xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__social-icon--xlogo{
    height: 24px;
}
/*-----------------------
    Main Css
-----------------------*/

.desktop{
    background-color: var(--black_900_01) !important;
    width: 100%;
}
.header{
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--white_a700_26);
}
.header__top-row{
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4xl);
    @media screen and (max-width: 1050px) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.header__logo{
    height: 38px;
    width: 38px;
    object-fit: contain;
}
.header__nav{
    width: 90%;
    display: flex;
    justify-content: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--white_a700_26);
    @media screen and (max-width: 1050px) {
        width: 100%;
    }
}
.header__nav-list{
    gap: var(--spacing-10xl);
    display: flex;
    align-items: center;
    @media screen and (max-width: 1050px) {
        flex-direction: column;
    }
}
.header__cta{
    display: flex;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--white_a700_26);
}
.header__title{
    color: var(--white_a700);
    font-size: 20px;
    font-weight: 700;
    margin-left: -10px;
}
.header__button{
    color: var(--white_a700) !important;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
    background-color: var(--deep_purple_a200_66) !important;
    height: 30px;
    min-width: 108px;
    border-radius: 8px !important;
    border: 1px solid var(--white_a700_26);
}
.hero{
    gap: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #191022;
}
.column-badges{
    margin-top: 90px;
    padding-left: 56px;
    padding-right: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media screen and (max-width: 1050px) {
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
    @media screen and (max-width: 550px) {
        margin-bottom: -30px;
    }
}
.column-badges__row{
    gap: var(--spacing-md);
    display: flex;
    background-color: var(--black_900_04);
    align-items: center;
    flex-wrap: wrap;
    padding: var(--radius-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--white_a700_26);
}
.column-badges__badge{
    color: var(--black_900_04) !important;
    background-color: var(--deep_purple_a200);
    padding: var(--spacing-xs);
    border-radius: var(--radius-xs);
    font-size: 10px;
    font-weight: 700;
}
.column-badges__title{
    color: var(--deep_purple_a200) !important;
    align-self: flex-end;
}
.stackheadingone{
    height: 1020px;
    align-self: stretch;
    position: relative;
}
.section-1{
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: max-content;
    @media only screen and (max-width: 1050px) {
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.section__content-1{
    margin-left: 266px;
    margin-right: 266px;
    gap: var(--spacing-3xl);
    z-index: 1;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    @media only screen and (max-width: 1050px) {
        margin-left: 0px;
        margin-right: 0px;
    }
}
.section__heading{
    color: transparent !important;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #b372cf);
    background-clip: text;
    line-height: 84px;
}
.section__cta-row{
    display: flex;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--white_a700_19);
}
.section__button{
    color: var(--black_900_04) !important;
    padding-left: 14px;
    padding-right: 14px;
    letter-spacing: -0.15px;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--white_a700) !important;
    height: 40px;
    min-width: 120px;
    border-radius: 8px !important;
}
.section__feature{
    height: 970px;
    margin-top: -268px;
    position: relative;
    align-content: center;
    @media only screen and (max-width: 1050px) {
        height: auto;
    }
}
.section__feature-column{
    background-color: var(--purple_800);
    backdrop-filter: opacity(0.5);
    filter: blur(534px);
    width: 74%;
    margin: auto;
    padding: 128px 56px;
    border-radius: var(--radius-4xl);
    @media only screen and (max-width: 1050px) {
        padding: var(--spacing-4xl);
    }
}
.section__feature-background{
    height: 568px;
    background-color: var(--purple_800_01);
    backdrop-filter: opacity(0.5);
    filter: blur(224px);
    width: 568px;
    border-radius: var(--radius-2xl);
}
.section__feature-image{
    height: 970px;
    width: 92%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.section__feature-row{
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    background: linear-gradient(270deg, #0d0717, #0e081b00, #0b0614);
    box-shadow: var(--shadow-xs);
    flex: 1;
    position: absolute;
    bottom: 0.12px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_19);
}
.section__feature-app-image{
    height: 656px;
    margin-top: 10px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-xs);
    @media only screen and (max-width: 1050px) {
        height: auto;
    }
}
.column{
    margin-top: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trusted-section{
    padding-left: 56px;
    padding-right: 56px;
    gap: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media only screen and (max-width: 1050px) {
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.trusted-section__logos{
    width: 100%;
    display: grid;
    gap: var(--spacing-xl);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    @media only screen and (max-width: 1050px) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    @media only screen and (max-width: 550px) {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.column_one{
    margin-top: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-section{
    gap: var(--spacing-7xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    @media only screen and (max-width: 1050px) {
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.content-section__title{
    text-align: center;
    width: 48%;
    line-height: 38px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
    @media only screen and (max-width: 550px) {
        font-size: 28px;
    }
}
.content-section__description{
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    gap: var(--spacing-7xl);
    display: flex;
    align-self: stretch;
    flex-direction: column;
}
.content-section__feature-item{
    gap: 44px;
    display: flex;
    background-color: var(--black_900_0f);
    width: 32%;
    flex-direction: column;
    padding: var(--spacing-6xl);
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_26);
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
    @media only screen and (max-width: 550px) {
        padding: var(--spacing-4xl);
    }
}
.content-section__image{
    height: 206px;
    object-fit: cover;
}
.content-section__feature-details{
    margin-bottom: 10px;
    margin-right: 6px;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    @media only screen and (max-width: 1050px) {
        margin-right: 0px;
    }
}
.content-section__feature-description{
    color: var(--white_a700_b2) !important;
    width: 100%;
    line-height: 26px;
}
.content-section__feature-description--user-friendly{
    color: var(--white_a700_b2) !important;
    width: 38%;
    line-height: 26px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}
.content-section__visual-description{
    color: var(--white_a700_b2) !important;
    width: 28%;
    line-height: 26px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}
.content-section__visual-item--smart-generator{
    gap: 34px;
    display: flex;
    background-color: var(--black_900_0f);
    width: 32%;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-sm);
    border: 1px solid var(--white_a700_26);
    @media only screen and (max-width: 1050px){
        width: 100%;
    }
}
.content-section__image--smart-generator{
    height: 234px;
    margin-left: 10px;
    margin-right: 22px;
    width: 80%;
    object-fit: contain;
    @media only screen and (max-width: 1050px){
        margin-left: 0px;
        margin-right: 0px;
    }
}
.content-section__visual-details--smart-generator{
    margin-bottom: 30px;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 82%;
    @media only screen and (max-width: 1050px){
        width: 100%;
    }
}
.content-section__visual-description--smart-generator{
    color: var(--white_a700_b2) !important;
    width: 84%;
    line-height: 26px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}
.rowheadingtwo{
    margin-top: 80px;
}
.features{
    padding-top: 76px;
    padding-bottom: 76px;
    background: linear-gradient(133deg, #190d2e, #020103);
    border: 1px solid var(--white_a700_26);
    @media only screen and (max-width: 1050px){
        padding-top: var(--spacing-4xl);
        padding-bottom: var(--spacing-4xl);
    }
}
.columnheadingtw{
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    gap: var(--spacing-9xl);
    display: flex;
    flex-direction: column;
    @media only screen and (max-width: 1050px){
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.columnheadingtw__title{
    width: 50%;
    line-height: 65px;
    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
    @media only screen and (max-width: 550px) {
        font-size: 42px;
    }
}
.columnheadingtw__features-list{
    margin-right: 14px;
    gap: var(--spacing-10xl);
    display: flex;
    @media only screen and (max-width: 1050px){
        flex-direction: column;
        margin-right: 0px;
    }
}
.section__pricing{
    background: radial-gradient(180deg, #56299d00, #020103);
    display: flex;
    justify-content: center;
}
.pricing__header{
    margin-bottom: 60px;
    padding-left: 56px;
    padding-right: 56px;
    display: flex;
    justify-content: center;
    @media only screen and (max-width: 1050px){
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.pricing__header-content{
    gap: 52px;
    display: flex;
    width: 92%;
    flex-direction: column;
    align-items: center;
    @media only screen and (max-width: 1050px){
        width: 100%;
    }
    @media only screen and (max-width: 550px) {
        gap: var(--spacing-5xl);
    }
}
.header-content__column{
    gap: var(--spacing-5xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 46%;
    @media only screen and (max-width: 1050px){
        width: 100%;
    }
}
.header-content__heading{
    gap: var(--spacing-4xl);
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    margin-top: var(--spacing-10xl);
}
.header-content__options{
    gap: 7px;
    display: flex;
    align-items: center;
}
.dhi-group-5{
    background-color: var(--gray_300);
    width: 32px;
    height: 20px;
    border-radius: var(--radius-sm);
}
.dhi-group-6{
    background-color: var(--deep_purple_a200_01);
    width: 32px;
    height: 20px;
    border-radius: var(--radius-sm);
}
.dhi-group-4{
    height: 16px;
    background-color: var(--gray_50);
    width: 16px;
    border-radius: var(--radius-xs);
}
.option__label{
    color: var(--white_a700_7f) !important;
}
.pricing__list{
    gap: var(--spacing-xl);
    display: flex;
    align-self: stretch;
    @media only screen and (max-width: 1050px){
        flex-direction: column;
    }
}
.stackview_one{
    height: 472px;
    margin-top: 16px;
    position: relative;
    align-content: center;
}
.rowview{
    display: flex;
    justify-content: center;
    @media only screen and (max-width: 1050px){
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.ctasection{
    height: 472px;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    @media only screen and (max-width: 1050px){
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
    @media only screen and (max-width: 550px){
        height: auto;
        position: relative;
        padding: var(--spacing-4xl);
    }
}
.ctasection__image{
    height: 472px;
    flex: 1;
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto;
    border-radius: var(--radius-sm);
}
.ctasection__view{
    height: 280px;
    background-color: var(--deep_purple_a200_7c);
    backdrop-filter: opacity(0.5);
    filter: blur(304px);
    width: 62%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-3xl);
}
.ctasection__column{
    gap: 22px;
    background: linear-gradient(180deg, #02010300 #020103);
    flex: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: max-content;
    padding: 100px 56px;
    margin: auto auto auto 6px;
    @media only screen and (max-width: 1050px){
        margin-left: 0px;
        padding: var(--spacing-4xl);
    }
}
.ctasection__heading{
    text-align: center;
    width: 90%;
    line-height: 65px;
    @media only screen and (max-width: 1050px){
        width: 100%;
    }
    @media only screen and (max-width: 600px){
        font-size: 42px;
    }
    @media only screen and (max-width: 550px){
        font-size: 36px;
        line-height: 50px;
    }
}
.ctasection__stack{
    height: 48px;
    width: 40%;
    position: relative;
    align-content: center;
    @media only screen and (max-width: 1050px){
        height: auto;
    }
    @media only screen and (max-width: 550px){
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }
}
.ctasection__input{
    color: var(--white_a700_7f) !important;
    padding-left: 14px;
    padding-right: 14px;
    height: 48px;
    border-radius: 10px !important;
    border: 1px solid var(--white_a700_26) !important;
}
.ctasection__button{
    color: var(--black_900_04) !important;
    padding-left: 14px;
    padding-right: 14px;
    letter-spacing: -0.15px;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--white_a700) !important;
    height: max-content;
    min-width: 114px;
    position: absolute;
    right: 3px;
    bottom: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 10px !important;
}
.ctasection__row{
    margin-bottom: 20px;
    gap: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
}
.footer{
    margin-top: 68px;
    padding-top: var(--spacing-9xl);
    padding-bottom: var(--spacing-9xl);
    background: linear-gradient(135deg, var(--black_900_01), var(--black_900_03));
    border-top: 1px solid var(--white_a700_26);
    position: relative;
    overflow: hidden;
    @media only screen and (max-width: 550px){
        padding-top: var(--spacing-4xl);
        padding-bottom: var(--spacing-4xl);
    }
}

.footer--no-gap {
    margin-top: 0;
}
.footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(152, 85, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(179, 114, 207, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.footer__row{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-left: var(--spacing-4xl);
    padding-right: var(--spacing-4xl);
    @media only screen and (max-width: 1050px){
        padding-left: var(--spacing-4xl);
        padding-right: var(--spacing-4xl);
    }
}
.footer__column{
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-4xl);
    @media only screen and (max-width: 1050px){
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
}
.footer__logo-section{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.footer__logo-row{
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}
.footer__logo{
    height: 40px;
    width: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(152, 85, 255, 0.3));
}
.footer__logo-text{
    color: var(--white_a700);
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--white_a700), var(--deep_purple_a200));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer__description{
    color: var(--white_a700_b2);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}
.footer__links-column{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.footer__links-title{
    color: var(--white_a700);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
.footer__links-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.footer__links-list a{
    color: var(--white_a700_7f);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer__links-list a:hover{
    color: var(--deep_purple_a200);
}
.footer__contact-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.footer__contact-list p{
    color: var(--white_a700_7f);
    font-size: 14px;
    margin: 0;
}
.footer__socials-column{
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.footer__socials-title{
    color: var(--white_a700);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
.footer__socials-row{
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}
.footer__social-icon{
    height: 28px;
    width: 28px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.5);
}
.footer__social-icon:hover{
    transform: scale(1.1);
    filter: grayscale(0) brightness(1.2);
}

/*-----------------------
    Service Card Css
-----------------------*/
.leading-tight {
  line-height: 1.25;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.services {
  background-color: var(--body-bg-dark);
  padding: 4rem 0;
}

.services-heading {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 3rem;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0 20px rgba(154, 34, 255, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: #9A22FF;
}

.service-title {
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.service-description {
  color: lightgray;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.leading-normal {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services {
    padding: 2rem 0;
  }

  .services-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/*-----------------------
    Client Css
-----------------------*/

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

/*-----------------------
    CTA Section Css
-----------------------*/

.cta-section {
  background: linear-gradient(to bottom, #191022 0%, #191022 60%, #020103 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(154, 34, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(179, 114, 207, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cta-heading {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  color: lightgray;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #9A22FF;
  color: var(--text-white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(154, 34, 255, 0.4);
}

.cta-button:hover {
  background-color: #8c1eff;
  box-shadow: 0 6px 20px rgba(154, 34, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 0;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/*-----------------------
    DM Pricing Section Css
-----------------------*/

.dm-pricing {
  --bg: var(--black_900_01);
  --accent: var(--deep_purple_a200);
  --muted: var(--white_a700_7f);
  --card-bg: var(--black_900_0f);
  background-color: var(--bg);
  padding: var(--spacing-11xl) var(--spacing-4xl);
  font-family: "Inter";
  color: var(--white_a700);
}

.dm-pricing__header {
  text-align: center;
  margin-bottom: var(--spacing-9xl);
}

.dm-pricing__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-3xl);
  line-height: 1.2;
  color: var(--white_a700);
}

.dm-pricing__subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.dm-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-4xl);
}

.dm-pricing__toggle-label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.dm-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-11xl);
}

.dm-pricing__card {
  background-color: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6xl);
  box-shadow: 0 4px 20px rgba(154, 34, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: dm-pricing-fade-up 0.6s ease forwards;
}

.dm-pricing__card:nth-child(1) { animation-delay: 0.1s; }
.dm-pricing__card:nth-child(2) { animation-delay: 0.2s; }
.dm-pricing__card:nth-child(3) { animation-delay: 0.3s; }

@keyframes dm-pricing-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dm-pricing__card--highlight {
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(154, 34, 255, 0.4);
  position: relative;
}

.dm-pricing__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white_a700);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dm-pricing__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-3xl);
  color: var(--white_a700);
}

.dm-pricing__price {
  display: flex;
  align-items: baseline;
  margin-bottom: var(--spacing-4xl);
}

.dm-pricing__price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white_a700);
}

.dm-pricing__price-period {
  font-size: 1rem;
  color: var(--muted);
  margin-left: var(--spacing-sm);
}

.dm-pricing__button {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-4xl);
  min-height: 44px;
}

.dm-pricing__button--primary {
  background-color: var(--accent);
  color: var(--white_a700);
  border: 1px solid var(--accent);
}

.dm-pricing__button--primary:hover {
  background-color: #8c1eff;
  box-shadow: 0 4px 15px rgba(154, 34, 255, 0.6);
}

.dm-pricing__button--outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.dm-pricing__button--outline:hover {
  background-color: var(--accent);
  color: var(--white_a700);
}

.dm-pricing__button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.dm-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-pricing__features li {
  color: var(--muted);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  line-height: 1.5;
}

.dm-pricing__cta {
  text-align: center;
  padding: var(--spacing-6xl) 0;
}

.dm-pricing__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-2xl);
  color: var(--white_a700);
}

.dm-pricing__cta-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: var(--spacing-4xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.dm-pricing__cta-button {
  background-color: var(--accent);
  color: var(--white_a700);
  border: none;
  padding: var(--spacing-lg) var(--spacing-3xl);
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  box-shadow: 0 4px 15px rgba(154, 34, 255, 0.4);
}

.dm-pricing__cta-button:hover {
  background-color: #8c1eff;
  box-shadow: 0 6px 20px rgba(154, 34, 255, 0.6);
  transform: translateY(-2px);
}

.dm-pricing__cta-button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1050px) {
  .dm-pricing {
    padding: var(--spacing-6xl) var(--spacing-4xl);
  }

  .dm-pricing__title {
    font-size: 2.5rem;
  }

  .dm-pricing__subtitle {
    font-size: 1rem;
  }

  .dm-pricing__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4xl);
  }

  .dm-pricing__card {
    padding: var(--spacing-4xl);
  }

  .dm-pricing__price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .dm-pricing {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .dm-pricing__cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .dm-pricing__card {
    padding: var(--spacing-3xl);
  }

  .dm-pricing__title {
    font-size: 2rem;
  }

  .dm-pricing__cta-title {
    font-size: 1.5rem;
  }

  .dm-pricing__cta-subtitle {
    font-size: 0.9rem;
  }
}

/* Navbar Toggle Styles */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-right: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white_a700_99);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 1050px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: var(--black_900);
        border: 1px solid var(--white_a700_26);
        z-index: 10;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .header__nav.active {
        display: block;
        transform: translateX(0);
    }

    .header__nav-list {
        gap: var(--spacing-3xl);
    }

    .navbar-toggle {
        display: flex;
    }

    .header__cta {
        order: -1;
    }
}

/*-----------------------
    About Us Hero Section Css
-----------------------*/

.about-us-hero {
    height: 100vh;
    background: linear-gradient(rgba(25, 16, 34, 0.8) 0%, rgba(25, 16, 34, 0.95) 100%), url('../assets/about-us-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-9xl) var(--spacing-4xl);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    gap: var(--spacing-4xl);
}

.hero-headline {
    color: var(--white_a700);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    color: lightgray;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.hero-button {
    background-color: #9A22FF;
    color: var(--white_a700);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(154, 34, 255, 0.4);
}

.hero-button:hover {
    background-color: #8c1eff;
    box-shadow: 0 6px 20px rgba(154, 34, 255, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-us-hero {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-6xl) var(--spacing-2xl);
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/*-----------------------
    Mission & Vision Section Css
-----------------------*/

.mission-vision-section {
    padding: var(--spacing-11xl) var(--spacing-4xl);
    background-color: var(--body-bg-dark);
}

.mission-vision-header {
    text-align: center;
    margin-bottom: var(--spacing-9xl);
}

.mission-vision-title {
    color: var(--white_a700);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-3xl);
    line-height: 1.2;
}

.mission-vision-subtitle {
    color: lightgray;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-6xl);
    justify-content: center;
}

.mission-card,
.vision-card {
    background-color: var(--card-bg);
    border: 1px solid #9A22FF;
    border-radius: var(--radius-lg);
    padding: var(--spacing-6xl);
    box-shadow: 0 10px 30px rgba(154, 34, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4xl);
}

.card-icon {
    margin-bottom: var(--spacing-2xl);
}

.card-title {
    color: var(--white_a700);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.card-description {
    color: lightgray;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: var(--spacing-6xl) var(--spacing-2xl);
    }

    .mission-vision-title {
        font-size: 2.5rem;
    }

    .mission-vision-subtitle {
        font-size: 1rem;
    }

    .mission-vision-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
    }

    .mission-card,
    .vision-card {
        padding: var(--spacing-4xl);
    }
}

/*-----------------------
    Our Story Section Css (Timeline)
-----------------------*/

.our-story-section {
    background: linear-gradient(135deg, #191022, #0d0717);
    padding: var(--spacing-11xl) var(--spacing-4xl);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(154, 34, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(179, 114, 207, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.our-story-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-9xl);
}

.our-story-title {
    color: var(--white_a700);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-9xl);
    padding-left: 50px; /* Space for the vertical line */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px; /* Center of the icon */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #9A22FF, #9A22FF);
    box-shadow: 0 0 10px rgba(154, 34, 255, 0.5);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4xl);
}

.timeline-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #9A22FF;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(154, 34, 255, 0.8);
    z-index: 2;
}

.timeline-icon::before,
.timeline-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #9A22FF;
    box-shadow: 0 0 10px rgba(154, 34, 255, 0.5);
}

.timeline-icon::before {
    top: -20px;
    height: 20px;
}

.timeline-icon::after {
    bottom: -20px;
    height: 20px;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.timeline-title {
    color: var(--white_a700);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.timeline-description {
    color: lightgray;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .our-story-section {
        padding: var(--spacing-6xl) var(--spacing-2xl);
    }

    .our-story-title {
        font-size: 2.5rem;
        text-align: center;
        align-self: center;
    }

    .timeline {
        padding-left: 0;
        gap: var(--spacing-6xl);
    }

    .timeline::before {
        display: none; /* Hide vertical line on mobile */
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-2xl);
    }

    .timeline-icon::before,
    .timeline-icon::after {
        display: none; /* Hide connecting strokes on mobile */
    }

    .timeline-content {
        align-items: center;
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }
}

/*-----------------------
    Core Values Section Css
-----------------------*/

.core-values-section {
    background-color: #2a193c; /* Dark purple background */
    padding: var(--spacing-11xl) var(--spacing-4xl);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

.core-values-header {
    text-align: center;
    margin-bottom: var(--spacing-9xl);
}

.core-values-title {
    color: var(--white_a700);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-3xl);
    line-height: 1.2;
}

.core-values-subtitle {
    color: var(--white_a700_7f);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.core-values-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-4xl);
    justify-content: center;
}

.core-value-card {
    background-color: var(--card-bg);
    border: 1px solid #9A22FF;
    border-radius: var(--radius-lg);
    padding: var(--spacing-6xl);
    box-shadow: 0 0 20px rgba(154, 34, 255, 0.3), inset 0 0 10px rgba(154, 34, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4xl);
    transition: box-shadow 0.3s ease;
}

.core-value-card:hover {
    box-shadow: 0 0 30px rgba(154, 34, 255, 0.5), inset 0 0 15px rgba(154, 34, 255, 0.2);
}

.card-icon {
    margin-bottom: var(--spacing-2xl);
}

.card-title {
    color: var(--white_a700);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.card-description {
    color: lightgray;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 1050px) {
    .core-values-section {
        padding: var(--spacing-6xl) var(--spacing-4xl);
    }

    .core-values-title {
        font-size: 2.5rem;
    }

    .core-values-subtitle {
        font-size: 1rem;
    }

    .core-values-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-4xl);
    }

    .core-value-card {
        padding: var(--spacing-4xl);
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: var(--spacing-6xl) var(--spacing-2xl);
    }

    .core-values-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
    }

    .core-value-card {
        padding: var(--spacing-4xl);
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/*-----------------------
    Contact Us Section Css
-----------------------*/

.dm-contact {
  --dm-accent: #9A22FF;
  --dm-bg: #191022;
  --dm-muted: #9b92a3;
  --dm-card-bg: #1c1620;
  background-color: var(--dm-bg);
  padding: var(--spacing-11xl) var(--spacing-4xl);
  font-family: "Inter";
  color: var(--white_a700);
}

.dm-contact__container {
  max-width: 1120px;
  margin: 0 auto;
}

.dm-contact__header {
  text-align: center;
  margin-bottom: var(--spacing-9xl);
}

.dm-contact__heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-3xl);
  line-height: 1.2;
  color: var(--white_a700);
}

.dm-contact__subtitle {
  font-size: 1.25rem;
  color: var(--dm-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.dm-contact__layout {
  display: flex;
  gap: var(--spacing-6xl);
}

.dm-contact__info {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xl);
}

.dm-contact__cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.dm-contact__card {
  background-color: var(--dm-card-bg);
  border: 1px solid var(--dm-accent);
  border-radius: var(--radius-sm);
  padding: var(--spacing-4xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
}

.dm-contact__icon {
  width: 24px;
  height: 24px;
  color: var(--dm-accent);
  flex-shrink: 0;
}

.dm-contact__card-content {
  flex: 1;
}

.dm-contact__card-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--white_a700);
}

.dm-contact__link {
  color: var(--dm-accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.dm-contact__link:hover {
  text-decoration: underline;
}

.dm-contact__map {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.dm-contact__form-wrapper {
  flex: 0 0 60%;
}

.dm-contact__form {
  background-color: var(--dm-card-bg);
  border: 1px solid var(--dm-accent);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6xl);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dm-contact__form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-4xl);
  color: var(--white_a700);
}

.dm-contact__fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.dm-contact__field-group {
  display: flex;
  flex-direction: column;
}

.dm-contact__field-group--full {
  grid-column: 1 / -1;
}

.dm-contact__label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--white_a700);
}

.dm-contact__input,
.dm-contact__textarea {
  padding: var(--spacing-lg);
  border: 1px solid var(--white_a700_26);
  border-radius: var(--radius-sm);
  background-color: transparent;
  color: var(--white_a700);
  font-size: 1rem;
  min-height: 44px;
}

.dm-contact__input:focus,
.dm-contact__textarea:focus {
  outline: 2px solid var(--dm-accent);
  outline-offset: 2px;
}

.dm-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.dm-contact__button {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-2xl);
  background-color: var(--dm-accent);
  color: var(--white_a700);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--spacing-4xl);
  min-height: 44px;
}

.dm-contact__button:focus {
  outline: 2px solid var(--dm-accent);
  outline-offset: 2px;
}

.dm-contact__button:hover {
  background-color: #8c1eff;
}

.dm-contact__success {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-lg);
  background-color: #4caf50;
  color: var(--white_a700);
  border-radius: var(--radius-sm);
  text-align: center;
}

.dm-contact__error {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-lg);
  background-color: #f44336;
  color: var(--white_a700);
  border-radius: var(--radius-sm);
  text-align: center;
}

@media (max-width: 768px) {
  .dm-contact {
    padding: var(--spacing-6xl) var(--spacing-2xl);
  }

  .dm-contact__heading {
    font-size: 2.5rem;
  }

  .dm-contact__subtitle {
    font-size: 1rem;
  }

  .dm-contact__layout {
    flex-direction: column;
    gap: var(--spacing-6xl);
  }

  .dm-contact__info,
  .dm-contact__form-wrapper {
    flex: none;
  }

  .dm-contact__form {
    padding: var(--spacing-4xl);
  }

  .dm-contact__fieldset {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
}

/*-----------------------
    Team Section Css
-----------------------*/

.team-section {
    background-color: #2a193c; /* Dark purple background */
    padding: var(--spacing-11xl) var(--spacing-4xl);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

.team-header {
    text-align: center;
    margin-bottom: var(--spacing-9xl);
}

.team-title {
    color: var(--white_a700);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-3xl);
    line-height: 1.2;
}

.team-subtitle {
    color: var(--white_a700_7f); /* Muted gray */
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.team-cards {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-6xl);
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-3xl);
    max-width: 250px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(154, 34, 255, 0.3);
    border: 3px solid #9A22FF;
}

.team-name {
    color: var(--white_a700);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.team-role {
    color: #9A22FF; /* Neon-purple */
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1050px) {
    .team-section {
        padding: var(--spacing-6xl) var(--spacing-4xl);
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-subtitle {
        font-size: 1rem;
    }

    .team-cards {
        gap: var(--spacing-4xl);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: var(--spacing-6xl) var(--spacing-2xl);
    }
}
