@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYREGULAR.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYMEDIUM.woff2') format('woff2');
    font-weight: 600;
    /* Use numeric values for weights */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/fonts/SFPRODISPLAYBOLD.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}






/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* transition: all 0.5s ease; */
    font-family: 'SF Pro Display', 'Arial', sans-serif;
}

a {
    text-decoration: none;
}


body {
    line-height: 1.6;
    color: #333;
}

main,
footer {
    background-image: url('../assets/background.svg');
}


.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    /* Ensure it's above other elements */
}

.toast {
    position: relative;
    background-color: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    width: 300px;
    max-width: 90%;
}

.alert-success {
    background-color: white;
    border-left: 5px solid #3D3A79;
    color: #423BCA;
}



.alert-error {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    color: #721c24;
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    color: #000;
    cursor: pointer;
}


.container {
    max-width: 1400px;
    margin: 70px auto 0px;
    padding: 0 20px;
}

/* Navigation styles */
nav {
    display: flex;
    height: 80px;
    justify-content: space-between;
    padding: 0 70px;
    align-items: center;
    background: #FAFAF9;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #E7E5E4;
}

.logo {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.logo a {
    color: var(--Color, #5956FC);

}

.logo_icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.nav_links {
    display: flex;
    gap: 20px;
}

.nav_links div {
    color: #3D3A79;
    font-size: 17.156px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    height: 72px;
    padding: 24px 8px 24px 16px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: -0.2px;
}

.nav_links div a {
    color: var(--Color-3, #3D3A79);
}



.auth-buttons {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 900;
}

.btn_primary {
    border-radius: 12px;
    background: var(--Button, linear-gradient(87deg, #5956FC -10.3%, #8D8BEA 99.22%));
    color: white;

    display: flex;
    width: 150px;
    height: 44px;
    padding: 11.5px 18.19px 12.5px 18.38px;
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    border-radius: 10px;
    border: 1px solid var(--Color, #5956FC);
    background: #FAFAF9;

    height: 44px;
    display: flex;
    width: 115px;
    padding: 12px 17px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-secondary:active{
    color: #5956FC;
}

.btn-demo {
    display: flex;
    height: 49px;
    padding: 13px 25.12px 13px 17px;
    align-items: flex-start;
    gap: 8px;
    z-index: 150;

    border-radius: 10px;
    border: 2px solid var(--Color, #5956FC);
    background: #FAFAF9;
}

.btn-demo :hover {
    padding: 0px 20px;
}

.btn-demo span {
    color: #3D3A79;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.btn-get_started {
    display: flex;
    height: 49px;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: var(--Button, linear-gradient(87deg, #5956FC -10.3%, #8D8BEA 99.22%));
    color: white;
}

.btn-get_started:hover {
    padding: 20px 50px;
}

.btn-try {
    border-radius: 10px;
    background: #A9A8FE;

    display: flex;
    height: 44px;
    padding: 12px 16.004px 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 9.586px;
    color: white;
}

.btn-try:hover {
    background: white;
    color: #A9A8FE;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 60px 0;
    margin-top: 0px;
}

.announcement {
    z-index: 200;
    border-radius: 12px;
    border: 2px dashed var(--Color, #5956FC);
    background: linear-gradient(90deg, #EBEAFF -14.08%, #F6F5FF 99.91%);
    box-shadow: 0px 4px 8px 0px rgba(66, 58, 197, 0.14);

    max-width: 600px;
    margin: 0 auto 50px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement_text {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #3D3A79;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 117.647% */
    letter-spacing: 0.5px;

}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-violet {

    display: flex;
    height: 89px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;

    text-align: center;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.5px;

    background: radial-gradient(486.35% 176.11% at 54.87% -29.58%, #A2A0F7 15.21%, #5956FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-orange {

    display: flex;
    height: 77px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;

    text-align: center;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    /* 125% */
    letter-spacing: -0.5px;

    background: linear-gradient(90deg, #FF8600 25.29%, #FFAC50 72.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 600px;
    margin: 50px auto;

    color: #AAA;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.star {
    font-size: 2rem;
    position: absolute;
}

.star-top-right {
    top: 100px;
    right: 00px;
}

.star-bottom-left {
    bottom: -5px;
    left: 0px;
}

/* Responsive styles */


.stars1 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Optional: adjust size as needed */
    height: 100%;
    /* Optional: adjust size as needed */
    border-radius: 460.85px;
}

.stars1 img:first-child {
    position: absolute;
    top: 30px;
    left: 400px;
    fill: var(--Color, #5956FC);
}

.stars1 img:last-child {
    fill: var(--Color, #5956FC);
    position: absolute;
    top: 5px;
    left: 450px;
}


.stars2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Optional: adjust size as needed */
    height: 100%;
    /* Optional: adjust size as needed */
}

.stars2 img:first-child {
    position: absolute;
    top: 125px;
    left: 95px;
}

.stars2 img:last-child {
    position: absolute;
    top: 100px;
    left: 140px;
}

section {
    margin-top: 130px;

}

section>h1 {
    display: flex;
    height: 89px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 0.5px;
    background: var(--Radial, radial-gradient(1672.12% 246.32% at 36.5% -98.31%, #3D3A79 15.21%, #5956FC 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section h3 {
    color: rgba(61, 58, 121, 0.60);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 125% */
}

#how_it_work #video_container {
    margin: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

#video_container video {
    margin-top: 20px;
    width: 80%;
    /* Set the desired width (e.g., 80% of the parent container) */
    max-width: 800px;
    /* Optional: Restrict the maximum width */
    border: 15px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    border-radius: 35px;
    /* Optional: Add rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow effect */
}



#video_container .custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #5956FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
    outline: 20px solid rgba(89, 86, 252, 0.3);
}

#video_container .custom-play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}



#features_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#features_box img {
    fill: var(--Style, radial-gradient(1645.15% 242.75% at 36.5% -98.31%, #3D3A79 16.9%, #221AB8 100%));
    filter: drop-shadow(0px 4.108px 10.27px rgba(74, 66, 234, 0.20));
    backdrop-filter: blur(4.631890773773193px);
}

#features_top,
#features_bottom {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    max-width: 1300px;
}

.feature1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(89, 86, 252, 0.10);
    max-width: 625px;
    max-height: 350px;
    padding: 46px;
    gap: 30px;
    flex-shrink: 0;
}

.feature_hovered {
    border: 1px solid var(--Color, #5956FC);
    transition: content 0.5s ease;
}



.feature1 h2,
.feature2 h2 {
    color: var(--Color-3, #3D3A79);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.933px;
    margin-top: 30px;
    /* 99.695% */
}

.feature1 p,
.feature2 p {
    color: var(--Color-3, #3D3A79);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.32px;
    /* 146.22% */
}

.feature2 {
    display: flex;
    max-width: 400px;
    max-height: 400px;
    padding: 46px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-radius: 12px;
    background: #FFF;

    /* Shadow */
    box-shadow: 0px 8px 24px 0px rgba(89, 86, 252, 0.10);
}

#pricing #pricing_header {
    display: flex;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    background: #FFF;
    margin: auto;
    margin-top: 40px;
    width: fit-content;
    cursor: pointer;
}


#pricing_header div {
    border-radius: 5px;
    border-right: 1px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    color: var(--Color, #5956FC);
    font-weight: 500;
    padding: 10px;
    width: fit-content;
}



#plans {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

/* #plans>div>div:nth-child(2) {
    display: flex;
    max-width: 500px;
    height: 500px;
    padding: 10.622px 16.995px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 12.746px;
    border: 1.062px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    background: #FFF;
    box-shadow: 0px 9px 25.492px 0px rgba(89, 86, 252, 0.10);
} */

#plans .plan-group {
    align-items: center;
    gap: 30px;
    justify-content: center;
}

#plans>div>div {
    display: flex;
    min-width: 300px;
    max-width: 350px;
    padding: 15px 17px 25px 17px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 12.746px;
    border: 1.062px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    background: #FFF;
    box-shadow: 0px 9px 25.492px 0px rgba(89, 86, 252, 0.10);
}

.price_icon {
    border-radius: 5.311px;
    background: var(--Button, linear-gradient(87deg, #5956FC -10.3%, #8D8BEA 99.22%));
    display: flex;
    padding: 3px 9px;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
}

#plans p {
    color: rgba(61, 58, 121, 0.80);
    font-weight: 500;
}

.price {
    display: flex;
    gap: 10px;
}

.price div:first-child {
    color: var(--Color-3, #3D3A79);
    font-size: 2.655rem;
    font-weight: 700;
}

.price div:last-child {
    align-self: flex-end;
    padding-bottom: 15px;
    color: rgba(61, 58, 121, 0.80);


}

.free_trial_button {
    border-radius: 5.311px;
    background: radial-gradient(7659.16% 154.95% at 21.21% 1.61%, #3D3A79 16.9%, #221AB8 100%);
    display: flex;
    padding: 8px 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-weight: 700;
    font-size: 0.9rem;
}

#plans hr {
    width: 100%;
    border: 1px solid var(--Color-4, rgba(89, 86, 252, 0.25));
}

#plans h3 {
    color: var(--Color-3, #3D3A79);
    font-weight: 700;
    font-size: 1rem;
}

.feature {
    display: flex;
    gap: 10px;
}

.feature p {
    color: var(--Color-3, #3D3A79) !important;
    font-size: 0.8rem;
}

.features {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

#view_all {
    display: flex;
    width: 130.146px;
    height: 33.693px;
    padding: 9px 7px;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 5.285px;
    border: 1.142px solid var(--Color, #5956FC);
    background: var(--white, #FFF);
    margin: auto;
    margin-top: 30px;

    color: var(--Color, #5956FC);
    font-weight: 700;
    font-size: 1.1rem;
}

#questions {
    max-width: 1100px;
    margin: auto;
}

#questions>div {
    display: flex;
    margin-top: 25px;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    border-radius: 12px;
    background: var(--white, #FFF);
    box-shadow: 0px 5px 24px 0px rgba(89, 86, 252, 0.08);
    cursor: pointer;
}

#questions h2 {
    color: var(--Color-3, #3D3A79);
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    /* 125% */
}

#questions p {
    color: var(--Color-3, #3D3A79);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition: max-height 0.3s ease, opacity 0.3s ease;
}

#questions p.active {
    max-height: 300px;
    /* Adjust this to fit your content */
    opacity: 1;
}

#questions>div>div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#questions>div>div span {
    width: 20px;
    height: 3px;
    border-radius: 20px;
    background: var(--Color-3, #3D3A79);
}

#questions>div>div img {
    color: #3D3A79;
}

.show_ans,
.toggle-symbol {
    cursor: pointer;
}

#get_started {
    /* background-image: url('../assets/get_started_bg.svg'); */
    display: flex;
    width: 1057px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 7px 15px 61.7px 5px rgba(89, 86, 252, 0.05);
    margin: auto;
    padding: 30px;
    position: relative;
}

#get_started .orange_circle {
    border-radius: 518.211px;
    background: rgba(255, 134, 0, 0.05);
    filter: blur(115.21240234375px);
    width: 518.211px;
    height: 460.85px;
    flex-shrink: 0;
    position: absolute;
    bottom: -20%;
    left: -10%;
}

#get_started .blue_circle {
    border-radius: 518.211px;
    background: rgba(89, 86, 252, 0.05);
    filter: blur(115.21240234375px);
    width: 518.211px;
    height: 460.85px;
    flex-shrink: 0;
    position: absolute;
    top: -20%;
    right: -10%;
}


#get_started h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 80px;
    /* 166.667% */
    letter-spacing: 0.5px;
    background: radial-gradient(486.35% 176.11% at 54.87% -29.58%, #A2A0F7 15.21%, #5956FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#get_started h1:last-of-type {
    background: linear-gradient(90deg, #FF8600 25.29%, #FFAC50 72.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#get_started a {
    display: flex;
    height: 52px;
    padding: 13px 42px;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 13px;
    background: var(--Button, linear-gradient(87deg, #5956FC -10.3%, #8D8BEA 99.22%));
    text-decoration: none;

    color: #FFF;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 125% */
}



form {
    margin: auto;
    display: flex;
    width: 1032px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

form div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}

form input {
    border-radius: 12px;
    border: 0.631px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    background: #FFF;
    box-shadow: 0px 5px 24px 0px rgba(89, 86, 252, 0.05);
    display: flex;
    height: 75px;
    padding: 25px 33px;
    align-items: center;
    flex-grow: 1;
    color: rgba(61, 58, 121, 0.50);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
}

form textarea {
    padding: 25px 33px;

    width: 1032px;
    height: 193.258px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 0.631px solid var(--Color-4, rgba(89, 86, 252, 0.25));
    background: #FFF;
    color: rgba(61, 58, 121, 0.50);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
}

form input::placeholder,
form textarea::placeholder {

    color: rgba(61, 58, 121, 0.50);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
}

form button {
    border-radius: 12px;
    background: var(--Button, linear-gradient(87deg, #5956FC -10.3%, #8D8BEA 99.22%));
    color: white;
    font-weight: 900;
    border: none;
    display: flex;
    width: 250px;
    height: 44px;
    padding: 11.5px 18.19px 12.5px 18.38px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

footer {
    position: relative;
}

#footer_content {
    margin: auto;
    display: flex;
    padding: 0 150px;
    padding-top: 50px;
    gap: 80px;
    justify-content: center;
    background-color: white;
}

#footer_content>div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#footer_content h1 {
    color: var(--Color, #5956FC);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    /* 333.333% */
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    margin: 0;
}

#footer_content>div:first-of-type>div {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

#footer_content>div:first-of-type p {
    color: rgba(61, 58, 121, 0.50);
    font-size: 1rem;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
    letter-spacing: -0.5px;
}

#footer_content>div:nth-of-type(2) {
    display: flex;
    width: 126px;
    height: 213px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-shrink: 0;
}

#footer_content>div:nth-of-type(2) a {
    color: var(--Color-3, #3D3A79);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 150% */
    letter-spacing: -0.5px;
}

#footer_content>div:nth-of-type(3) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
}

#footer_content>div:nth-of-type(3) h2 {
    color: var(--Color-3, #3D3A79);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 150% */
    letter-spacing: -0.5px;
}

#footer_content>div:nth-of-type(3)>div {
    display: flex;
    gap: 10px;
}

#footer_content>div:nth-of-type(3)>div div {
    width: 48px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Color, #5956FC);
    color: white;
    padding: 1px 5px;
}

#footer_content>div:nth-of-type(3) p {
    color: rgba(61, 58, 121, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */
    letter-spacing: -0.5px;
}

#footer_content>div:nth-of-type(4) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    padding-top: 15px;
    width: fit-content;
    min-width: 120px;
}

#footer_content>div:nth-of-type(4) h3 {
    color: var(--Color-3, #3D3A79);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 150% */
    letter-spacing: -0.5px;
}

#orange_circle {
    width: 518.211px;
    height: 460.85px;
    border-radius: 518.211px;
    background: rgba(255, 134, 0, 0.05);
    filter: blur(115.21240234375px);

    position: absolute;
    bottom: 0;
    left: 5%;
}


#blue_circle {
    width: 518.211px;
    height: 460.85px;
    border-radius: 518.211px;
    background: rgba(89, 86, 252, 0.05);
    filter: blur(115.21240234375px);
    position: absolute;
    right: 5%;
    bottom: 0;
}

footer hr {
    border: 1px solid var(--Color-4, rgba(89, 86, 252, 0.25));
}

footer>p {
    color: rgba(61, 58, 121, 0.50);
    text-align: center;
    font-size: 20px;
    line-height: 80px;
    /* 400% */
    letter-spacing: 0.5px;
    background-color: white;
}


.feature2,
.feature1 {
    position: relative;
    /* display: inline-block; */
    /* text-align: center; */
}

.feature2 svg,
.feature1 svg {
    position: absolute;
    top: 15px;
    left: 15px;
    transition: opacity 0.3s ease-in-out;
    width: 89px;
    /* Ensure the size is consistent */
    height: 87px;
    /* Ensure the size is consistent */
}

/* Default SVG visibility */
.feature2 .default-svg,
.feature1 .default-svg {
    opacity: 1;
}

/* Hovered SVG visibility */
.feature2 .hovered-svg,
.feature1 .hovered-svg {
    opacity: 0;
}

/* On hover, make the default SVG disappear and the hovered SVG appear */
.feature2:hover .default-svg,
.feature1:hover .default-svg {
    opacity: 0;
}

.feature2:hover .hovered-svg,
.feature1:hover .hovered-svg {
    opacity: 1;
}

.feature1:hover,
.feature2:hover {
    outline: 1px solid var(--Color, #5956FC);
    border-radius: 12px;
}



/* Existing large screen media query */
@media (max-width: 1400px) {
    .star img {
        display: none;
    }
    nav {
        justify-content: center;
        max-width: 100%;
        padding: 0 20px;
    }
    nav .logo {
        flex-shrink: 1;
    }
    
    /* Font size adjustments for larger screens */
    .highlight-orange,
    .highlight-violet {
        font-size: 3rem;
    }

    #contact_us form textarea {
        max-width: 100%;
    }
    .feature1 {
        max-width: 350px;
        padding: 25px;
    }
    
    .feature2 {
        max-width: 300px;
        padding: 25px;
    }
    #video_container video {
        max-width: 450px;
    }
    
    #video_container img {
        max-width: 500px;
    }
    
    #get_started {
        width: 700px;
        padding: 25px;
    }
    
    #get_started h1 {
        font-size: 24px;
    }
    
    /* Circle elements */
    #get_started .orange_circle,
    #get_started .blue_circle,
    #orange_circle,
    #blue_circle {
        width: 250px;
        height: 200px;
    }
    

    #contact_us form div {
        flex-direction: column;
        gap: 25px;
    }
    /* Contact form */
    #contact_us form {
        width: 500px;
    }
    
    /* Questions section */
    #questions {
        max-width: 500px;
    }
    
    /* Plan layout - 2 column grid instead of flex row */
    #plans {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Footer adjustments */
    #footer_content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    footer {
        max-width: 700px;
        margin: auto;
    }
}

@media (max-width: 768px) {

    #video_container video {
        max-width: 250px;
    }


    .nav_links,
    .auth-buttons .btn-secondary {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-try {
        padding: 3px 4px 3px 4px;
        font-size: 0.7rem;
        width: fit-content;
    }

    .announcement {
        padding: 8px;
        gap: 5px;
    }


    .announcement_text {
        font-size: 0.8rem;
    }

    #features_top,
    #features_bottom {
        display: grid;
    }

    .feature1,
    .feature2 {
        max-width: 300px;
        padding: 20px;
        display: grid;
    }

    .feature1 h2, .feature2 h2{
        margin-top: 50px;
    }

    #pricing_header div {
        font-size: 0.8rem;
    }

    #questions {
        max-width: 300px;
    }

    #questions>div {
        padding: 20px;
    }

    #questions h2,
    #questions p {
        font-size: 1rem;
    }

}


@media (max-width: 768px) {

    #video_container img {
        max-width: 300px;
    }

    .highlight-orange,
    .highlight-violet {
        font-size: 2rem;
    }


    #get_started {
        width: 500px;
        gap: 16px;
        padding: 15px;
    }

    #get_started h1 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 0;
        line-height: normal;
    }


    #get_started a {
        display: flex;
        height: 52px;
        padding: 13px 42px;
        gap: 11px;
        font-size: 1rem;
        /* 125% */
    }

    #contact_us form {
        width: 300px;
    }


    #plans {
        flex-direction: column;
    }

    #get_started .orange_circle {
        border-radius: 200px;
        width: 200px;
        height: 150px;

    }

    #get_started .blue_circle {
        border-radius: 200px;
        width: 200px;
        height: 150px;
    }

    #orange_circle {
        border-radius: 200px;
        width: 200px;
        height: 150px;

    }

    #blue_circle {
        border-radius: 200px;
        width: 200px;
        height: 150px;
    }

    #footer_content {
        padding: 0px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    section h3 {
        font-size: 1rem;
        padding: 0 20px;
    }

    footer {
        max-width: 300px;
        margin: auto;
    }

    #footer_content>div:nth-of-type(1) {
        align-items: center;
    }

    #footer_content>div:nth-of-type(1) p {
        text-align: center;
    }

    #footer_content>div:nth-of-type(3) {
        align-items: center;
    }

    #footer_content>div:nth-of-type(3) p {
        text-align: center;
    }

    #footer_content>div:nth-of-type(4) {
        align-items: center;
    }
}


