* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto";
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

:root {
    /* color */
    --color-green: #00a950;
    --color-lightblue: #f0f0fa;
    --color-blue: #007aff;
    --color-black: #222429;
    --color-white: #ffffff;
    --color-gray: #9b9faa;
    --color-orange: #ffa000;
    --color-lightgray: #f4f4f5;
    --color-darkblue: #020817;
    --Headings: #272d3c;
    --Paragraph: #444c61;
    /* fonts */
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-xsmall: 14px;
    --font-size-h1: 60px;
    --font-size-h2: 34px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;

    /* Border Radius */
    --border-radius-large: 12px;
    --border-radius-default: 8px;

    /* font weight */
    --fontweight-light: 300;
    --fontweight-regular: 500;
    --fontweight-semibold: 600;
    --fontweight-bold: 700;
    --fontweight-black: 900;

    /* border */
    --border-default: 1.8px;
    --border-color: #b4b6bc;
    --border-type: solid;

    --section-space: 80px;
}

body {
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: 1.2;
}

h2 {
    font-size: var(--font-size-h2);
    color: var(--Headings);
}

h3 {
    font-size: var(--font-size-h3);
    color: var(--Headings);
}

h4 {
    font-size: var(--font-size-h4);
    color: var(--Headings);
}

h5 {
    font-size: var(--font-size-h5);
    color: var(--Headings);
}

p {
    font-size: var(--font-size-default);
    line-height: 1.7;
    color: var(--Paragraph) !important;
}

.container {
    width: 85vw;
    margin: var(--section-space) auto;
    max-width: 1280px;
}
.heading {
    text-align: center;
    font-size: 40px;
}
.primary__btn {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    max-height: 36px;
    border-radius: 4px;
    height: fit-content;
    transition: 0.3s ease;
    cursor: pointer;
}

#paraphrase__btn {
    padding: 8px 16px;
}

.section__header {
    text-align: center;
}

.section__header > * {
    margin: 10px 0;
}

.section__header > p:first-child {
    color: var(--color-gray);
    margin: 10px auto;
}

.section__header > p {
    width: 100%;
    /* max-width: 900px; */
    margin: 30px auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.para-logo-word {
    font-family: Montserrat-Bold, Montserrat;
}

.logo-text {
    font-family: Montserrat-Bold, Montserrat;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    font-family: Montserrat-Bold, Montserrat;
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
}

.frasis-logo-word {
    font-weight: 400 !important;
    font-family: Montserrat-Regular, Montserrat;
}

.hero__section {
    background-color: #020817;
    /* background-image: url("../images/hero-min.svg"); */
    background-size: cover;
    width: 100%;
    min-height: 100%;
    height: fit-content;
    padding-bottom: 40px;
    color: white;
    margin-top: 0px !important;
}

/* ========================================
            Navbar section
=========================================== */

/* nav links */
nav .nav__logo,
nav .nav__links {
    flex: 1;
}

.nav__logo {
    letter-spacing: 1px;
}

nav .nav__links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

nav .nav__links a {
    margin-top: 3px;
    padding-bottom: 3px;
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
    letter-spacing: 1.1px;
    font-size: 16px;
    font-weight: 400;
}

nav .nav__links a:hover {
    border-bottom: 1.8px solid var(--color-white);
}

/* nav menu */
nav .nav__menu {
    display: none;
}

nav .nav__menu img {
    max-width: 15px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(60%) saturate(6908%)
        hue-rotate(197deg) brightness(135%) contrast(104%);
}

.display_none {
    display: none;
}

/* ========================================
            Hero Section
=========================================== */

.hero {
    margin: 0px auto;
    margin-top: -10px !important;
}

.hero > * {
    margin-bottom: 10px !important;
}

.hero p,
.hero h1 {
    text-align: center;
    margin: auto;
}

.hero p {
    max-width: 1090px;
}

.hero h1 {
    max-width: 550px;
    font-weight: var(--fontweight-bold);
    font-size: 40px;
    line-height: 50px;
    margin: 24px auto 10px auto !important;
}

/* ========================================
            Paraphraser Section
=========================================== */

.paraphrase__section {
    width: 100%;
    position: relative;
    min-height: 450px;
    background-color: var(--color-lightblue);
    border-radius: 20px;
    margin-top: 32px;
    color: black;
    padding: 16px;
    display: flex;
    gap: 1px;
    flex-direction: column;
    /* box-shadow: rgba(255, 255, 255, 0.3) 0px 8px 24px; */
    /* box-shadow: 10px 10px 10px 10px gray; */
}

.tool-input-ouput-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.tool-input-ouput-container > div {
    flex: 1;
}

.paraphrase__section > div {
    flex: 1;
}

/* .paraphrase div common */
.paraphrase__topbar {
    display: flex;
    width: 100%;
    height: 38px;
    padding: 0 16px;
    /* background: rgb(255, 255, 255); */
    border-radius: 10px 10px 0px 0px;
    /* flex-wrap: wrap; */
}

.paraphrase__textarea {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.synonyms-container::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

.synonyms-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Color of the scrollbar track */
}

.synonyms-container::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Color of the scrollbar thumb */
}

.synonyms-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Color of the scrollbar thumb on hover */
}

/* Adjusting the position of the bottom scrollbar */
.synonyms-container::-webkit-scrollbar-corner {
    background-color: transparent;
    /* Hide the bottom scrollbar corner */
}

.top-tab-btn {
    border: solid 1px #dadae4;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.prem_image {
    height: 15px;
}

.start_btn {
    justify-content: end !important;
}

.output_era {
    justify-content: end !important;
}

/* ranger */
.tool__topbar__ranger {
    display: flex;
    gap: 20px;
    width: 100%;
}

.tool__topbar__range > p,
.tool__topbar__range > p span {
    font-size: 16px;
}

.synonyms-container {
    z-index: 10;
    display: none;
    position: absolute;
    background-color: white;
    border: 4px solid transparent;
    box-shadow: 0px 0px 16px 0px #0000001a;
    border-radius: 10px;
    max-height: 142px;
    overflow-y: scroll;
    padding: 10px;
    gap: 10px;
    z-index: 9999;
    box-sizing: border-box;
}

.tool_ranger {
    width: 100%;
    position: relative;
}

.tool_ranger .range {
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

.tool_ranger .range::-ms-tooltip {
    display: none;
}

.tool_ranger .track {
    width: 100%;
    height: 4px;
    background: #9b9faa;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 100px;
}

.tool_ranger .track-inner {
    width: 0;
    height: 100%;
    background: var(--color-blue);
    border-radius: 100px;
}

.tool_ranger .thumb {
    width: 18px;
    height: 18px;
    background: #dbe1ff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    pointer-events: none;
    border: 4px solid var(--color-blue) !important;
}

.bullets__div {
    display: flex;
    align-items: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}

.white-heading > font > font {
    color: var(--Headings) !important;
}

.bullets__div label span {
    padding: 0px 10px;
    margin-top: 2px;
}

.bullets__div.active {
    visibility: visible;
    opacity: 1;
}

.output-area,
.input_area,
.paraphrase__textarea textarea {
    width: 100%;
    height: 360px;
    background-color: var(--color-white);
    resize: none;
    padding: 16px;
    font-size: 16px;
    overflow-y: auto;
    border: 4px solid transparent;
    border-radius: 10px 10px 0px 0px;
}
.text-align-center{
    text-align: center !important;
} 

/* .output-area{
    height: 393px !important;
} */
/* 
.paraphrase__textarea textarea.file_dropping {
    background-color: ;
} */

.output-area li {
    margin-left: 20px !important;
}

.upload__img__icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(64%) saturate(6367%)
        hue-rotate(200deg) brightness(102%) contrast(103%);
    animation: drop_effect 2s cubic-bezier(0.36, 0.6, 0.15, 1.27) infinite;
}
 #faq {
       text-align: center;
        h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 40px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
            text-align: left;
        }

        .accordion__item.active {
            box-shadow: -8px 8px 0px 0px #f4f4f5;
        }

        .accordion__item {
            border: 1px solid #e2e2e2;
            border-radius: 16px;
            overflow: hidden;
            max-width: 768px;
            margin: auto;
            padding: 24px;
            display: grid;
        }

        .accordion__header {
            cursor: pointer;
            position: relative;
            font-size: 20px;
            font-weight: 600;
            line-height: 30px;
            padding-bottom: 0px;
            transition: 0.5s;
            color: #272d3c;
        }

        .accordion__header::after {
            content: "";
            background: url(../images/angle-down.svg) no-repeat center;
            width: 20px;
            height: 20px;
            transition: 0.4s;
            display: inline-block;
            position: absolute;
            right: 20px;
            top: 5px;
            z-index: 1;
            transform: rotateX(180deg);
        }

        .accordion__header.active {
            padding-bottom: 16px;
        }

        .accordion__header.active::after {
            transform: rotateX(0deg);
        }

        .accordion__item .accordion__content {
            max-height: 0;
            transition: 0.5s;
            overflow: hidden;
            font-size: 18px;
            font-weight: 400;
            line-height: 30px;
        }
    }
    .py-0{
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

@keyframes drop_effect {
    0% {
        transform: scale(1) translateY(-10px);
    }

    25% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1) translateY(-10px);
    }

    75% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1) translateY(-10px);
    }
}

.upload__file__section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.upload__file__section .label_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.upload__file__section * {
    color: #9b9faa;
    font-size: var(--font-size-default);
    border: none;
    outline: none;
    background-color: transparent;
}

.upload_image_icon {
    height: 60px !important;
    width: 70px !important;
}

.container_btns_container {
    border-radius: 4px;
    display: flex;
    border: 1px solid #b4b6bc;
    font-size: 14px;
    max-width: 315px;
    margin-top: 68px;
}

.upload__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px;
    height: 32px;
}

.border-div {
    height: 32px;
    width: 1px;
    background: #b4b6bc;
}

.upload__btn img {
    width: 18px;
    height: 18px;
}

.upload__file__section label {
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.upload__file__section label:hover {
    color: var(--color-blue);
    /* filter: brightness(0.9); */
}

.ouput_btn_container {
    background: white;
    min-height: 67px;
    border-radius: 0px 0px 10px 10px;
}

.output__btn {
    display: flex;
    /* visibility: hidden; */
    justify-content: space-between;
    align-items: center;
    /* display: none; */
    gap: 20px;
    /* padding: 16px; */
    display: none;
}

.output__btn button {
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    background-color: transparent;
    position: relative;
    z-index: 5;
    height: 20px;
}

.output__btn button > span {
    position: absolute;
    top: 50%;
    left: -26%;
    transform: translateX(-50%);
    transition: 0.2s ease;
    background-color: #717789;
    padding: 5px;
    visibility: hidden;
    z-index: -1;
    color: white;
    border-radius: var(--border-radius-default);
    font-size: var(--font-size-xsmall);
    display: block;
    opacity: 0;
    display: none;
}

.output__btn .download__options {
    left: -204% !important;
}

.output__btn button:hover > span {
    opacity: 1;
    display: block;
}

.output__btn button > span:nth-child(1) {
    top: -168%;
    visibility: visible;
}

.output__btn button > span:nth-child(2) {
    top: -190%;
    visibility: visible;
}

.download_text.active img:hover {
    top: -80%;
}

#max_word_limit {
    display: none;
}

.download_text.active > span:nth-child(1) {
    display: none !important;
}

.download_text.active > span:nth-child(2) {
    display: flex !important;
}

.download_text > span:nth-child(2) {
    display: none !important;
}

.download__options {
    display: none !important;
    padding: 3px !important;
    border-radius: none !important;
}

.download__options.active {
    display: flex !important;
    flex-direction: column;
}

.download__options > span {
    background-color: white !important;
    /* border-radius: var(--border-radius-default); */
    padding: 5px 8px;
    color: var(--color-darkblue);
    border-left: 1px solid #b4b6bc;
    border-bottom: 1px solid #b4b6bc;
}
.download__options > span:hover {
    color: #258dfc !important;
}

.output__btn button > img:hover {
    transform: translateY(-1px);
}

.paraphrase__textarea {
    position: relative;
}

.output-area::-webkit-scrollbar,
.input_area::-webkit-scrollbar,
.paraphrase__textarea textarea::-webkit-scrollbar {
    width: 6px;
    z-index: 10;
}

/* Track */
.output-area::-webkit-scrollbar-track,
.input_area::-webkit-scrollbar-track,
.paraphrase__textarea textarea::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.output-area::-webkit-scrollbar-thumb,
.input_area::-webkit-scrollbar-thumb,
.paraphrase__textarea textarea::-webkit-scrollbar-thumb {
    background: #258dfc;
    border-radius: 20px;
}
.make-it-flex {
    display: none;
}

/* Handle on hover */
.output-area::-webkit-scrollbar-thumb:hover,
.input_area::-webkit-scrollbar-thumb:hover,
.paraphrase__textarea textarea::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.display-none {
    display: none !important;
}

/* .paraphrase__topbar */
.paraphrase__topbar {
    /* border-bottom: 1px solid #E2E2E2; */
}

.paraphrase__topbar > div {
    display: flex;
    align-items: flex-end;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.more-button-wrapper {
    position: relative;
}

.more-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
}

.more-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 4px;
    box-shadow: 0px 2px 12px 0px #0000001f;
    z-index: 10;
    border-radius: 10px;

    button {
        justify-content: start;
    }
}

.more-button-wrapper:has(button.active) > button {
    border-bottom: solid 1px var(--color-blue);
    color: var(--color-blue);
}

.more-button-wrapper:has(button.active) > button svg {
    stroke: #007aff;
}

.more-button-wrapper:hover .more-dropdown {
    display: flex;
}

.paraphrase__topbar > div button {
    border-radius: 0 !important;
    border-color: transparent;
}

/* .paraphrase left */
.paraphrase__left .paraphrase__topbar {
    gap: 20px;
    display: flex;
    justify-content: space-between;
}

.paraphrase__left .paraphrase__topbar > div:nth-child(2) {
    min-width: 280px !important;
    width: 340px !important;
}

.paraphrase__left .paraphrase__topbar div:nth-child(2) p {
    font-size: var(--font-size-small);
}

.text__area__counter {
    /* display: none; */
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    justify-content: space-between !important;
    width: 100%;
    padding: 16px 0;
    background-color: #fff;
    border-radius: 0px 0px 10px 10px;
}

.text__area__counter p {
    flex: 1;
    font-size: 12px;
}

.text__area__counter p:nth-child(1) {
    text-align: left !important;
    font-size: 14px;
}

.text__area__counter p:nth-child(2) {
    text-align: right !important;
    font-size: 14px;
}

.output__counter {
    font-size: 14px !important;
    border-radius: var(--border-radius-default);
    width: 100%;
    text-align: right !important;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: white;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 12px;
    padding: 0 16px;
    max-height: 36px;
    justify-content: space-between;
    align-items: center;
}

.primary_tool_btns {
    display: flex;
}

.paraphrase__topbar button {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    color: #444c61;
    cursor: pointer;
    transition: 0.2s ease;
    border-bottom: solid 1px transparent;
    text-transform: capitalize;
}

.paraphrase__topbar button span {
    display: flex;
    line-height: 20px;
}

.paraphrase__topbar button.active {
    border-bottom: solid 1px var(--color-blue);
    color: var(--color-blue);
    border-radius: 4px 4px 0 0 !important;
}

.paraphrase__topbar button:hover {
    background-color: #e9e9f5;
    border-radius: 4px !important;
}

.paraphrase__topbar button.active:hover {
    border-radius: 4px 4px 0 0 !important;
    stroke: #007aff;
}

.paraphrase__topbar button.active svg {
    stroke: #007aff;
}

.paraphrase__bottom__bar {
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-height: 36px;
    gap: 12px;
    width: 100%;
}

.paraphrase__bottom__bar button {
    padding: 8px 14px;
}

.paraphrase__checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: 10px;
}

.paraphrase__checkbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;

    font-size: var(--font-size-small) !important;
}

.paraphrase__checkbox label input[type="checkbox"] {
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    padding: 5px;
}

/* .paraphrase right */
.paraphrase__right {
    position: relative;
}

.paraphrase__right .paraphrase__topbar {
    justify-content: space-between;
    color: #9b9faa;
}

.paraphrase__topbar__margin {
    margin-top: 5px;
    margin-bottom: 10px;
}

.paraphrase__topbar {
    align-items: center;
}

.paraphrase__right .paraphrase__topbar > div {
    display: flex;
    align-items: center;
}

.paraphrase__right .paraphrase__topbar > div p {
    font-size: var(--font-size-small);
    color: var(--color-gray) !important;
}

.paraphrase__right .paraphrase__topbar div > div {
    width: 10px;
    height: 10px;
    background-color: var(--color-blue);
    border-radius: 100%;
}

.paraphrase__right .paraphrase__topbar > div:nth-child(2) div {
    width: 36px;
    height: 4px;
    background-color: red;
    border-radius: 0;
}

.paraphrase__right .paraphrase__topbar > div:nth-child(3) div {
    background-color: orange !important;
}

.tool_footer_container {
    padding: 16px;
}

.loading__gif,
.mobile_loading__gif {
    position: absolute;
    top: 43%;
    left: 52%;
    transform: translate(-52%, -48%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
}

.loading__gif img,
.mobile_loading__gif img {
    width: 100%;
    max-width: 80px;
}

/* ========================================
            Paraphraser Section
=========================================== */

.about {
    margin: var(--section-space) auto;
}

.about__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.about__cards > div {
    /* flex: 1; */
    height: auto;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    justify-content: flex-start;
    color: var(--color-gray);
    border-radius: var(--border-radius-default);
    /* cursor: pointer; */
    transition: 0.2s ease;
    padding: 10px 8px;
    border: 1px solid transparent;
    padding-bottom: 20px;
    padding-top: 15px;
    border: solid 1px #dbdbdb;
}
.card_header {
    height: 90px !important;
    margin-top: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__cards > div > h4 {
    font-weight: 600;
    transition: 0.3s ease-in-out;
    /* margin-top: 40px !important; */
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 35px;
}

.h4 {
    font-size: var(--font-size-h4);
    color: var(--Headings);
}

.about__cards > div:hover {
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
    box-shadow: -5px 6px 1px 0px var(--color-lightgray);
    border-color: var(--color-lightgray);
}

.about__cards > div:hover img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(54%) saturate(6302%)
        hue-rotate(203deg) brightness(108%) contrast(102%);
}

.about__cards > div:hover h4 {
    color: var(--color-blue);
    transform: scale(1.01);
    transform: translateY(-1px);
}

/* ========================================
            Result Section
=========================================== */

.result {
    display: flex;
    /* min-height: 350px; */
    height: fit-content;
    justify-content: center;
    width: 80%;
    margin: 50px auto !important;
}

.result > div > img {
    width: 100%;
}

.result__detail {
    flex: 3;
    padding: 20px 40px;
    border: 1px solid var(--color-lightgray);
    box-shadow: -10px 10px 0.5px 0px var(--color-lightgray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.result__detail .orange__txt {
    color: var(--color-orange);
}

.result__detail .blue__txt {
    color: var(--color-blue);
}

.result__detail p:nth-child(3) {
    margin-top: 20px;
}

.result div:first-child,
.result div:last-child {
    flex: 1;
}

.result div:first-child {
    margin-top: 30px;
    align-self: flex-start;
    margin-right: 60px;
}

.result div:last-child {
    margin-bottom: 30px;
    align-self: flex-end;
    margin-left: 50px;
}

/* result cards */
.result__card {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}

.result__card > div {
    max-width: 420px;
}

.result__card > div > * {
    margin: 8px 0;
}

.result__card > div h2 {
    color: #b4b6bc;
    font-weight: 900 !important;
}

.result__card > div h5 {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result__card > div h5 div {
    width: 10px;
    height: 10px;
    background-color: var(--color-blue);
    border-radius: 100%;
}

.result__card > div:nth-child(2) h5 div {
    background-color: red;
    width: 40px;
    height: 5px;
    border-radius: 0px;
}

.result__card > div:nth-child(3) h5 div {
    background-color: var(--color-orange);
}

.result__card > div p {
    margin: auto;
    width: 80%;
    /* color: var(--color-gray); */
}

/* ========================================
            Download Section
=========================================== */
.download > div > div {
    display: flex;
    gap: 50px;
    max-width: fit-content;
    margin: auto !important;
}

/* ========================================
            Why Section
=========================================== */
.why__cards {
    margin: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.why__cards > div {
    display: flex;
    align-items: flex-start;
}

.why__cards > div h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.why__cards > div p {
    color: var(--color-gray);
}

.why__cards > div img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    margin-top: 5px;
}

.download-icons {
    height: 100px;
    width: 85px;
}

.how-to-icons {
    height: 60px;
    width: 55px;
}

/* ========================================
            Blogs Section
=========================================== */

.blog__cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 50px 0px !important;
}

.blog__cards > a {
    flex: 1;
    /* min-width: 320px; */
    max-width: 400px;
    margin: 5px 0;
    border: 1px solid var(--color-lightgray);
    padding: 10px !important;
    border-radius: var(--border-radius-default);
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.blog__cards > a > * {
    margin: 10px 0;
}

.blog__cards > a > div:nth-child(2) {
    display: flex;
    justify-content: space-between;
    margin: 10px auto !important;
    color: var(--color-gray);
}

.blog__cards > a > div > img {
    width: 100%;
    /* object-fit: cover; */
    height: 200px;
    border-radius: var(--border-radius-default);
}

.blog__cards > a > h5 {
    color: black;
}

.blog__cards > a > div:last-child p {
    color: gray;
}

.blog__short__detail {
    font-size: var(--font-size-small);
    color: gray;
}

.blog__short__detail p {
    color: gray;
}

.blog__cards > a button {
    /* width: 40px; */
    /* height: 40px; */
    padding: 5px 15px;
    display: grid;
    place-items: center;
    grid-template-columns: auto auto;
    /* Adjust as needed */
    gap: 5px;
    /* Adjust the gap as needed */
}

.blog__cards > a div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog__cards > a div:last-child p {
    background-color: var(--color-lightgray);
    height: 100%;
    padding: 2px 10px;
    border-radius: 3px;
}

.single-blog:hover {
    box-shadow: -8.034px 8.034px 0px 0px #f4f4f5;
    top: -10px;
}

.single_blog_para font font {
    color: white;
}

.terms__condition > div,
.privacy__policy > div {
    font-size: var(--font-size-default);
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* ========================================
            Radio Button Section
=========================================== */
.css-checkbox {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    border-radius: 6px;
}

.css-checkbox:checked + label::after {
    border-radius: 4px;
}

#inputPreview {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.css-checkbox + label {
    position: relative;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 20px;
    color: rgb(0, 0, 0);
}

.css-checkbox + label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    width: 20px;
    height: 20px;
    border-width: 1.5px;
    border-style: solid;
    border-color: var(--color-gray);
    border-radius: 2px;
    box-shadow: none;
    border-radius: 2px;
    overflow: hidden;
}

.css-checkbox:checked + label::after {
    content: " ";
    background-image: url("../images/tick-icon.svg");
    color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%)
        hue-rotate(345deg) brightness(102%) contrast(101%);
    background-repeat: no-repeat;
    background-size: 17px 17px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    padding: 1px;
    margin-top: -1.5px;
    text-align: center;
    background-color: var(--color-blue);
    font-size: 10px;
    height: 22px;
    width: 22px;
}

/* ========================================
            Media Query Section
=========================================== */
.blog__hero {
    margin-top: 10px;
}

.blog__hero > p,
.blog__hero h1 {
    text-align: center;
    margin: auto;
}

.blog__hero p {
    margin-top: 10px;
    max-width: 600px;
}

.blog__hero h1 {
    max-width: 550px;
    color: #ddf5ff;
    font-weight: var(--fontweight-bold);
}

.blog__hero > div {
    margin-top: 50px;
    display: flex;
    gap: 30px;
}

.blog__hero img {
    width: 100%;
}

.blog__hero > div > div {
    flex: 1;
    gap: 20px;
}

/* blog hero vertical card */
.blog__hero__v__cards h3 {
    color: white;
}

.blog__hero__v__cards img {
    width: 100%;
    height: 350px;
    /* object-fit: cover; */
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog__hero__v__cards div:last-child {
    display: flex;
    justify-content: space-between;
}

.blog__hero__v__cards div:last-child p {
    color: #9b9faa;
}

/* blog hero horizontal cards */
.blog__hero__h__cards {
    display: flex;
    flex-direction: column;
}

.blog__hero__h__cards > a {
    display: flex;
    gap: 20px;
}

.blog__hero__h__cards > a > div:nth-child(1) {
    flex: 1;
}

.blog__hero__h__cards > a > div:nth-child(2) {
    flex: 1.5;
}

.blog__hero__h__cards > a > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0px;
}

.blog__hero__h__cards > a > div:nth-child(2) h5 {
    font-size: 18px;
}

.blog__hero__h__cards > a > div:nth-child(2) p {
    font-size: var(--font-size-small);
    color: #9b9faa;
}

.blog__hero__h__cards h5 {
    color: white;
}

.blog__hero__h__cards > a > div:nth-child(2) > div {
    display: flex;
    justify-content: space-between;
}

.blog__hero__h__cards img {
    max-width: 250px;
    height: 170px;
    /* object-fit: cover; */
    object-position: center;
    border-radius: var(--border-radius-large);
}

.blogs__list > div {
    margin-top: 10px !important;
}

.blogs__list__div > p:nth-child(1) {
    font-size: var(--font-size-small);
}

.blogs__list__div > p:nth-child(3) {
    font-size: 20px !important;
}

.blogs__list__div > p,
.blogs__list__div > h2 {
    text-align: center;
}

.single__blog {
    background-size: 100% 450px !important;
    background-position: top top !important;
    background-repeat: no-repeat;
    height: fit-content;
}

.single__blog__div h1 {
    color: #020817 !important;
    text-align: center;
    font-weight: var(--fontweight-bold);
}

.single-blog-info {
    color: #9b9faa !important;
}

.single__blog__div {
    width: 90%;
    max-width: 900px;
    margin: inherit auto;
}

.single__blog__div *:not(h2) {
    margin: 10px 0px;
    color: black !important;
}

.single__blog__div > img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-large);
}

.single__blog__div > div:nth-child(2) {
    display: flex;
    justify-content: space-between;
    margin: 0px !important;
}

.single__blog__div > div:nth-child(2) p {
    color: #9b9faa;
}

.sinle__blog__detail p {
    font-weight: 300;
    color: #3a4258;
}

.single__blog .blogs__list__div > * {
    color: black;
}

.single__blog__div table tbody td {
    padding: 5px;
}

/* ========================================
            Contact Section
=========================================== */
.short__nav {
    max-height: fit-content !important;
    height: 70px !important;
    min-height: fit-content;
    padding-bottom: 0px !important;
}

.contact__response__msg {
    color: #009900;
    padding: 10px;
    border-radius: var(--border-radious);
    background-color: #e5ffe5;
}

.contact__us__section {
    text-align: center;
}

.contact__us__section > * {
    color: #3a4258 !important;
}

.contact__us__section > p:nth-child(3) {
    font-size: 22px;
    max-width: 550px;
    margin: auto;
}

.contact__us__form {
    height: fit-content !important;
}

.contact__us__form > * {
    width: 100%;
    max-width: 600px;
    margin: 10px 0px;
    margin: auto !important;
    /* height: 80px; */
}

.contact__us__form > div {
    min-height: 70px;
    margin: 20px auto !important;
    display: flex;
    align-items: center;
    background-color: #f4f4f5;
    border-radius: var(--border-radius-large);
    transition: 0.3s;
}

.contact__us__form > div:hover > img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(50%) saturate(5367%)
        hue-rotate(200deg) brightness(102%) contrast(105%);
}

.contact__textarea {
    align-items: flex-start !important;
}

.contact__textarea img {
    margin-top: 15px;
}

.contact__us__form > div > input {
    width: 90%;
    height: 70px;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px;
    font-size: var(--font-size-default);
}

.contact__us__form > div > input::placeholder,
.contact__us__form > div > textarea::placeholder {
    color: #9b9faa;
}

.contact__us__form > div > textarea {
    width: 90%;
    outline: none;
    border: none;
    background-color: transparent;
    resize: none;
    padding: 15px;
    font-size: var(--font-size-default);
}

.contact__us__form > div > img {
    margin-left: 25px;
    margin-right: 10px;
    width: 25px;
}

.contact__us__form button {
    width: fit-content;
    padding: 10px 30px;
}

.feedback__div {
    background: #ffffff;
    box-shadow: 0px 0px 45px 0px #1e2d6e26;
    padding: 12px;
    border-radius: 12px;
    position: absolute;
    bottom: 59px;
    right: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}

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

.feed-back-title {
    font-size: 16px !important;
    font-weight: 500;
    color: #081131;
}

.feedback_img {
    width: 48px;
    height: 40px;
    filter: grayscale(100%);
    cursor: pointer;
    transition: filter 0.3s ease;
}

.feedback_img.active {
    filter: none;
}

.feedback__textarea-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.feedback__textarea-container.active {
    max-height: 260px;
    opacity: 1;
}

.feedback__textarea {
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 10px !important;
    border: 1px !important;
    background: #ffffff !important;
    border: 1px solid #dbdbdb !important;
    outline: none !important;
    resize: none !important;
    height: auto !important;
    width: auto !important;
}

.feedback__btn {
    padding: 6px 24px 6px 24px;
    gap: 10px;
    border-radius: 8px;
    background: #007aff;
    outline: none;
    border: none;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #ffffff;
}

.feedback__btn:hover {
    cursor: pointer;
}

#close_feedback:hover {
    cursor: pointer;
}

.feedback_submited_container {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 10px;
    gap: 10px;
    border-radius: 10px;
    background: #ffffff;
    position: absolute;
    padding: 12px;
    box-shadow: 0px 0px 45px 0px #1e2d6e26;
    bottom: 63px;
    right: 146px;
    display: none;
}

@media (max-width: 500px) {
    .feedback__div {
        right: 0px;
    }
}

.bullets__div label span {
    padding: 0px;
    margin-top: 0px;
}

.paraphrase__bottom__bar button {
    padding: 0px 3px;
}

/* .output__btn button>span:nth-child(2) {
    top: -158% !important
} */

.output__btn .download__options {
    left: 50% !important;
}

@media only screen and (max-width: 1122px) {
    .more-button-wrapper > button {
        /* display: none; */
    }
    .more-dropdown {
        position: relative;
        border: unset;
        padding: unset;
        box-shadow: unset;
        z-index: unset;
    }
}

@media only screen and (max-width: 768px) {
    .paraphrase__topbar {
        display: none;
        position: absolute;
        z-index: 1;
        background: white;
        padding: 10px;
        right: 0px;
        top: 68px;
        border-radius: 10px;
        border: solid 1px #ede1e1;
        width: 96%;
        right: 9px;
        height: auto;
        min-height: 60px;
        align-items: center;
        gap: 10px !important;
        justify-content: flex-start !important;
    }
    .mobil-mode-dropdown {
        display: flex !important;
        max-height: 40px;
        background-color: #fff;
        border: none;
    }
    .paraphrase__topbar div {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .paraphrase__checkbox label {
        font-size: 14px !important;
        width: fit-content !important;
        margin: 2px !important;
        gap: 5px !important;
    }

    .paraphrase__checkbox input {
        background: orange;
    }

    .paraphrase__right .paraphrase__topbar {
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .download > div > div {
        gap: 10px;
    }

    .why__cards {
        grid-template-columns: 1fr;
    }

    .result {
        flex-direction: column;
        align-items: center !important;
        gap: 20px;
        margin: 0px auto !important;
    }

    .result__detail {
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .section__header p {
        font-size: var(--font-size-default) !important;
    }
    .container {
        width: 96% !important;
    }

    nav .nav__links,
    nav .nav__menu {
        flex: 1;
    }

    .mobile_loading__gif {
        height: 100% !important;
    }

    #paraphrase__btn {
        padding: 8px 15px;
    }

    nav .nav__links {
        /* display: none; */
        max-width: 90%;
        width: 90%;
        position: absolute;
        top: 60px;
        background-color: white;
        color: #020817 !important;
        flex-direction: column !important;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--border-radius-default);
        padding: 10px;
        margin: auto !important;
        margin-top: 20px !important;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
            rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        transition: 0.3s ease;
        display: none;
    }

    .tool-input-ouput-container {
        flex-direction: column;
    }

    .nav__links a {
        width: 100%;
        padding: 5px 10px !important;
        border-radius: var(--border-radius-default);
    }

    .nav__links a:not(.nav__btn) {
        color: #020817 !important;
    }

    .nav__links a:hover {
        background-color: #020817;
        color: #fff !important;
    }

    nav .nav__menu {
        display: flex;
        justify-content: flex-end;
        width: fit-content !important;
    }

    nav .nav__menu img {
        transition: 0.3s ease;
        cursor: pointer;
    }

    nav .nav__menu img:hover {
        transform: scale(1.5);
    }

    .paraphrase__section {
        flex-direction: column;
    }

    .d-none {
        display: none !important;
        height: 0px !important;
        padding: 0px !important;
        visibility: none;
        opacity: 0;
    }

    .paraphrase__bottom__bar {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .paraphrase__bottom__bar button {
        /* margin: auto !important; */
    }

    .paraphrase__checkbox {
        gap: 15px !important;
        justify-content: center !important;
        width: 100%;
    }

    .paraphrase__checkbox label {
        font-size: 14px !important;
        width: fit-content !important;
        margin: 2px !important;
        gap: 5px !important;
    }

    .paraphrase__checkbox input {
        background: orange;
    }

    .paraphrase__right {
        display: flex;
        flex-direction: column;
    }

    .paraphrase__right .paraphrase__topbar {
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .download > div > div {
        gap: 10px;
    }

    .why__cards {
        grid-template-columns: 1fr;
    }

    .result {
        flex-direction: column;
        align-items: center !important;
        gap: 20px;
        margin: 0px auto !important;
    }

    .result__detail {
        padding: 10px;
    }

    .paraphrase__topbar {
        right: 10px;
        width: 357px;
        /* left: 83px; */
        top: 61px;
    }

    .mobil-mode-dropdown {
        display: flex;
        border: solid 1px rgb(221, 221, 221);
        border-radius: 10px;
        padding: 8px;
        height: 40px;
        gap: 5px;
        justify-content: space-between;
        width: 357px;
        background-color: #fff !important;
        border: none !important;
    }
    .make-it-flex {
        display: flex;
        justify-content: space-between;
        gap: 5px;
        align-items: center;
        width: fit-content;
        margin-bottom: 5px;
        width: 100%;
    }

    .make-it-flex p {
        padding: 7px 0px;
        margin: 0px;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #9b9faa;
        margin-left: 5px;
    }

    .paraphrase__topbar div {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 7px;
        align-items: start;
    }
}

@media only screen and (max-width: 450px) {
    .container {
        width: 98% !important;
    }

    .feedback_submited_container > div > p {
        font-size: 12px !important;
    }

    .about__cards > div {
        width: 80vw !important;
        padding: 10px;
        /* min-width: 320px; */
    }

    .hero h1 {
        font-size: 36px;
    }

    .why__cards > div {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
        gap: 10px;
    }

    .tool-input-ouput-container {
        flex-direction: column;
    }

    .why__cards > div > div > img {
        width: 60px !important;
        height: auto;
    }
    .paraphrase__topbar {
        right: 10px;
        min-width: 200px;
        width: 300px;
        /* left: 83px; */
        top: 53px;
    }
}
.applink {
    border: 1px solid #dbdbdb;
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
    font-weight: bold;
    gap: 8px;
    color: black;
}

.applink:hover {
    cursor: pointer;
    box-shadow: -5px 5px 4px 0px #f4f4f5;
}

.applinks__cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-flow: wrap;
}

.applink img {
    height: 26px;
    width: 26px;
}

.more-icon {
    height: 12px;
    width: 15px;
}

.applinks p {
    color: var(--color-gray);
}

.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

.output__btn div {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.output__btn div::before {
    content: attr(data-tooltip);
    position: absolute;
    background: rgb(47 46 46 / 80%);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    bottom: 116%;
    left: 29%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.output__btn div:hover::before {
    opacity: 1;
    visibility: visible;
}
.download-container.active::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Show download options */
.download__options {
    display: none;
    position: absolute !important;
    background: gray;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 5px;
    bottom: 120%;
    left: -251%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.download_text:hover + .download__options,
.download__options:hover {
    display: block;
}

.more-dropdown {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.more-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    margin: 2px 0;
}

.more-dropdown button:hover {
    background: #f5f5f5;
}

.section__header ol {
    margin-left: 50px !important;
}

.section__header ol li {
    margin-bottom: 30px !important;
}
